Skip to content

Commit

Permalink
Build results of db96016 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
hknutzen committed Dec 10, 2014
1 parent 6dbb683 commit d735441
Show file tree
Hide file tree
Showing 20 changed files with 1,040 additions and 783 deletions.
23 changes: 23 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
3.060 2014-12-10 15:17:42+01:00 Europe/Berlin

- Added support for setting log severity.
Logging is changed by a combination of attributes at rules and devices.
Define one or more lines "log:<tag> = <severity>" at devices,
where logging should be enabled or changed.
- <tag> is some valid identifier.
- <severity> is one of
alerts|critical|debugging|disable|emergencies|
errors|informational|notifications|warnings
Define attribute "log = <tag1>, ...;" at each rule that needs
changed logging. A rule with logging for <tag1> is logged at each device,
where a matching "log:<tag1>" is defined.
Severity names correspond to well known UNIX log severities.
'disable' disables logging at devices of type ASA and PIX.
- Added new router type "managed = routing_only".
This will generate only static routes and no ACLs.
A device with "routing_only" doesn't split a security zone.
Rules with only a routes_only device in between are ignored with
warning "Unenforceable rule".
Hence, for traffic inside a security zone no static routes are generated.
These have to be added manually in file "raw/<device>".

3.059 2014-12-04 15:55:12+01:00 Europe/Berlin

- New syntax: Element of attribute 'watchers' of owner A is allowed
Expand Down
6 changes: 4 additions & 2 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ t/bridged.t
t/crosslink.t
t/crypto.t
t/cut-netspoc.t
t/cut-netspoc.t~
t/disabled.t
t/disabled.t~
t/general-permit.t
t/global-opt.t
t/host-range.t
t/iptables.t
t/local-filter.t
t/local-opt.t
t/log.t
t/log.t~
t/loopback.t
t/managed-host.t
t/nat.t
Expand All @@ -83,6 +83,8 @@ t/private.t
t/protect-interfaces.t
t/rename.t
t/route.t
t/routing_only.t
t/routing_only.t~
t/secondary.t
t/stateless.t
t/unenforceable.t
Expand Down
2 changes: 1 addition & 1 deletion META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ requires:
strict: '0'
utf8: '0'
warnings: '0'
version: '3.059'
version: '3.060'
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ my %WriteMakefileArgs = (
"Test::More" => 0,
"lib" => 0
},
"VERSION" => "3.059",
"VERSION" => "3.060",
"test" => {
"TESTS" => "t/*.t"
}
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


This archive contains the distribution Netspoc,
version 3.059:
version 3.060:

Generates rules for many firewalls from a central ruleset.

Expand Down
2 changes: 1 addition & 1 deletion bin/cut-netspoc
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ use Pod::Usage;
use Netspoc;
use locale;

our $VERSION = '3.059'; # VERSION: inserted by DZP::OurPkgVersion
our $VERSION = '3.060'; # VERSION: inserted by DZP::OurPkgVersion

####################################################################
# Argument processing
Expand Down
2 changes: 1 addition & 1 deletion bin/netspoc
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,6 @@ use strict;
use warnings;
use Netspoc;

our $VERSION = '3.059'; # VERSION: inserted by DZP::OurPkgVersion
our $VERSION = '3.060'; # VERSION: inserted by DZP::OurPkgVersion

Netspoc::compile(\@ARGV);
2 changes: 1 addition & 1 deletion bin/print-group
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ use Netspoc;
use Getopt::Long;
use Pod::Usage;

our $VERSION = '3.059'; # VERSION: inserted by DZP::OurPkgVersion
our $VERSION = '3.060'; # VERSION: inserted by DZP::OurPkgVersion

####################################################################
# Argument processing
Expand Down
2 changes: 1 addition & 1 deletion bin/print-service
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ use Netspoc;
use Getopt::Long;
use Pod::Usage;

our $VERSION = '3.059'; # VERSION: inserted by DZP::OurPkgVersion
our $VERSION = '3.060'; # VERSION: inserted by DZP::OurPkgVersion

####################################################################
# Argument processing
Expand Down
2 changes: 1 addition & 1 deletion bin/rename-netspoc
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ use open qw(:std :utf8);
use utf8;
use Encode;

our $VERSION = '3.059'; # VERSION: inserted by DZP::OurPkgVersion
our $VERSION = '3.060'; # VERSION: inserted by DZP::OurPkgVersion
my $filename_encode = 'UTF-8';

my $ignore_files = '^(raw|config|CVS|RCS|\.#.*|.*~)$';
Expand Down
2 changes: 1 addition & 1 deletion bin/watchers-to-json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use utf8;
use Encode;
use File::Path qw(make_path);
use JSON;
our $VERSION = '3.059'; # VERSION: inserted by DZP::OurPkgVersion
our $VERSION = '3.060'; # VERSION: inserted by DZP::OurPkgVersion
my $filename_encode = 'UTF-8';

my $ignore_files = '^(raw|config|JSON|CVS|RCS|\.#.*|.*~)$';
Expand Down
Loading

0 comments on commit d735441

Please sign in to comment.