From 2c85c952bf0896a82e052ed26ba26f2805bdcfb9 Mon Sep 17 00:00:00 2001 From: Vadim Kurland Date: Tue, 25 Jan 2011 11:25:20 -0800 Subject: [PATCH] see #1986 Cisco ASA remarks should be truncated to 100 characters or less; truncated remark lines --- doc/ChangeLog | 8 +++++ src/cisco_lib/ACL.cpp | 17 +++++++-- src/cisco_lib/ACL.h | 3 +- test/pix/cluster1-1_pix1.fw.orig | 4 +-- test/pix/cluster1-1_pix2.fw.orig | 4 +-- test/pix/cluster1_pix1.fw.orig | 4 +-- test/pix/cluster1_pix2.fw.orig | 4 +-- test/pix/firewall.fw.orig | 4 +-- test/pix/firewall1.fw.orig | 4 +-- test/pix/firewall10.fw.orig | 4 +-- test/pix/firewall11.fw.orig | 4 +-- test/pix/firewall12.fw.orig | 4 +-- test/pix/firewall13.fw.orig | 4 +-- test/pix/firewall14.fw.orig | 4 +-- test/pix/firewall2.fw.orig | 4 +-- test/pix/firewall20.fw.orig | 4 +-- test/pix/firewall21-1.fw.orig | 4 +-- test/pix/firewall21.fw.orig | 4 +-- test/pix/firewall22.fw.orig | 4 +-- test/pix/firewall3.fw.orig | 4 +-- test/pix/firewall33.fw.orig | 4 +-- test/pix/firewall34.fw.orig | 61 ++------------------------------ test/pix/firewall4.fw.orig | 4 +-- test/pix/firewall50.fw.orig | 4 +-- test/pix/firewall6.fw.orig | 4 +-- test/pix/firewall8.fw.orig | 4 +-- test/pix/firewall80.fw.orig | 4 +-- test/pix/firewall81.fw.orig | 4 +-- test/pix/firewall82.fw.orig | 4 +-- test/pix/firewall83.fw.orig | 4 +-- test/pix/firewall9.fw.orig | 4 +-- test/pix/firewall90.fw.orig | 4 +-- test/pix/firewall91.fw.orig | 4 +-- test/pix/firewall92.fw.orig | 4 +-- test/pix/firewall93.fw.orig | 4 +-- test/pix/firewall94.fw.orig | 4 +-- test/pix/fwsm1.fw.orig | 4 +-- test/pix/fwsm2.fw.orig | 4 +-- test/pix/pix515.fw.orig | 4 +-- test/pix/real.fw.orig | 4 +-- 40 files changed, 99 insertions(+), 134 deletions(-) diff --git a/doc/ChangeLog b/doc/ChangeLog index 283bd2f2d..46cba92cc 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,11 @@ +2011-01-25 vadim + + * ACL.cpp (trimLine): fixes #1986 "Cisco ASA remarks should be + truncated to 100 characters or less". Trimming all lines used for + access list remarks to <100 characters. Remarks can only be less + than 101 characters on PIX/ASA and less than 100 characters on + IOS. + 2011-01-24 Vadim Kurland * PolicyCompiler.cpp (addMgmtRule): fixes #1966 "IOSACL: diff --git a/src/cisco_lib/ACL.cpp b/src/cisco_lib/ACL.cpp index fcb0b67bf..ff2685358 100644 --- a/src/cisco_lib/ACL.cpp +++ b/src/cisco_lib/ACL.cpp @@ -39,6 +39,15 @@ string ciscoACL::addLine(const std::string &s) return printLastLine(); } +/* + * "remark" lines should be less than 101 on PIX/ASA and less than 100 on IOS + */ +string ciscoACL::trimLine(const string &s) +{ + if (s.length() < 100) return s; + return s.substr(0, 100); +} + string ciscoACL::quoteLine(const string &s) { if (quote_remarks && s.find(' ') != string::npos) @@ -56,7 +65,7 @@ string ciscoACL::addRemark(const std::string &rl, const std::string &comment) string output; if (_last_rule_label != rl) { - acl.push_back(" remark " + quoteLine(rl)); + acl.push_back(" remark " + quoteLine(trimLine(rl))); output += printLastLine(); nlines++; @@ -67,12 +76,14 @@ string ciscoACL::addRemark(const std::string &rl, const std::string &comment) c1 = 0; while ( (n = comment.find("\n", c1)) != string::npos ) { - acl.push_back(" remark " + quoteLine(comment.substr(c1, n-c1))); + acl.push_back(" remark " + quoteLine( + trimLine(comment.substr(c1, n-c1)))); output += printLastLine(); nlines++; c1 = n + 1; } - acl.push_back(" remark " + quoteLine(comment.substr(c1))); + acl.push_back(" remark " + quoteLine( + trimLine(comment.substr(c1)))); output += printLastLine(); nlines++; } diff --git a/src/cisco_lib/ACL.h b/src/cisco_lib/ACL.h index ad4a6f4bf..cf2a858bd 100644 --- a/src/cisco_lib/ACL.h +++ b/src/cisco_lib/ACL.h @@ -47,7 +47,8 @@ namespace fwcompiler { std::string printLine(const std::string &s); std::string quoteLine(const std::string &s); - + std::string trimLine(const std::string &s); + public: ciscoACL() { _ip_acl = false; diff --git a/test/pix/cluster1-1_pix1.fw.orig b/test/pix/cluster1-1_pix1.fw.orig index 878e72524..1c71eb320 100755 --- a/test/pix/cluster1-1_pix1.fw.orig +++ b/test/pix/cluster1-1_pix1.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:09 2011 PST by vadim +! Generated Tue Jan 25 11:22:49 2011 PST by vadim ! ! Compiled for pix 7.0 ! Outbound ACLs: supported diff --git a/test/pix/cluster1-1_pix2.fw.orig b/test/pix/cluster1-1_pix2.fw.orig index 1c8c8efdc..b48b0f459 100755 --- a/test/pix/cluster1-1_pix2.fw.orig +++ b/test/pix/cluster1-1_pix2.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:10 2011 PST by vadim +! Generated Tue Jan 25 11:22:49 2011 PST by vadim ! ! Compiled for pix 7.0 ! Outbound ACLs: supported diff --git a/test/pix/cluster1_pix1.fw.orig b/test/pix/cluster1_pix1.fw.orig index 454b3dbda..ae70fa7ce 100755 --- a/test/pix/cluster1_pix1.fw.orig +++ b/test/pix/cluster1_pix1.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:09 2011 PST by vadim +! Generated Tue Jan 25 11:22:48 2011 PST by vadim ! ! Compiled for pix 7.0 ! Outbound ACLs: supported diff --git a/test/pix/cluster1_pix2.fw.orig b/test/pix/cluster1_pix2.fw.orig index 87ab77fa8..d00055834 100755 --- a/test/pix/cluster1_pix2.fw.orig +++ b/test/pix/cluster1_pix2.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:10 2011 PST by vadim +! Generated Tue Jan 25 11:22:49 2011 PST by vadim ! ! Compiled for pix 7.0 ! Outbound ACLs: supported diff --git a/test/pix/firewall.fw.orig b/test/pix/firewall.fw.orig index ea87cb271..b0ab6b620 100755 --- a/test/pix/firewall.fw.orig +++ b/test/pix/firewall.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:39:52 2011 PST by vadim +! Generated Tue Jan 25 11:22:32 2011 PST by vadim ! ! Compiled for pix 6.2 ! Outbound ACLs: not supported diff --git a/test/pix/firewall1.fw.orig b/test/pix/firewall1.fw.orig index 9011ad07a..48ad0d3e4 100755 --- a/test/pix/firewall1.fw.orig +++ b/test/pix/firewall1.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:39:52 2011 PST by vadim +! Generated Tue Jan 25 11:22:32 2011 PST by vadim ! ! Compiled for pix 6.1 ! Outbound ACLs: not supported diff --git a/test/pix/firewall10.fw.orig b/test/pix/firewall10.fw.orig index caa388224..157431310 100755 --- a/test/pix/firewall10.fw.orig +++ b/test/pix/firewall10.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:39:52 2011 PST by vadim +! Generated Tue Jan 25 11:22:32 2011 PST by vadim ! ! Compiled for pix 6.3 ! Outbound ACLs: not supported diff --git a/test/pix/firewall11.fw.orig b/test/pix/firewall11.fw.orig index ae55052c4..8345a02e2 100755 --- a/test/pix/firewall11.fw.orig +++ b/test/pix/firewall11.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:39:52 2011 PST by vadim +! Generated Tue Jan 25 11:22:32 2011 PST by vadim ! ! Compiled for pix 6.2 ! Outbound ACLs: not supported diff --git a/test/pix/firewall12.fw.orig b/test/pix/firewall12.fw.orig index 43b0fa7ac..a3c52f20a 100755 --- a/test/pix/firewall12.fw.orig +++ b/test/pix/firewall12.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:39:54 2011 PST by vadim +! Generated Tue Jan 25 11:22:34 2011 PST by vadim ! ! Compiled for pix 6.3 ! Outbound ACLs: not supported diff --git a/test/pix/firewall13.fw.orig b/test/pix/firewall13.fw.orig index e63931dfd..15b09d3dc 100755 --- a/test/pix/firewall13.fw.orig +++ b/test/pix/firewall13.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:39:54 2011 PST by vadim +! Generated Tue Jan 25 11:22:34 2011 PST by vadim ! ! Compiled for pix 6.3 ! Outbound ACLs: not supported diff --git a/test/pix/firewall14.fw.orig b/test/pix/firewall14.fw.orig index 01504fd9d..deb808daf 100755 --- a/test/pix/firewall14.fw.orig +++ b/test/pix/firewall14.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:39:54 2011 PST by vadim +! Generated Tue Jan 25 11:22:34 2011 PST by vadim ! ! Compiled for pix 6.3 ! Outbound ACLs: not supported diff --git a/test/pix/firewall2.fw.orig b/test/pix/firewall2.fw.orig index 6da2e6b52..e2ba7add9 100755 --- a/test/pix/firewall2.fw.orig +++ b/test/pix/firewall2.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:39:55 2011 PST by vadim +! Generated Tue Jan 25 11:22:34 2011 PST by vadim ! ! Compiled for pix 6.3 ! Outbound ACLs: not supported diff --git a/test/pix/firewall20.fw.orig b/test/pix/firewall20.fw.orig index 2791bf6af..0642bb8c3 100755 --- a/test/pix/firewall20.fw.orig +++ b/test/pix/firewall20.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:39:56 2011 PST by vadim +! Generated Tue Jan 25 11:22:36 2011 PST by vadim ! ! Compiled for pix 6.3 ! Outbound ACLs: not supported diff --git a/test/pix/firewall21-1.fw.orig b/test/pix/firewall21-1.fw.orig index c8a201fab..e46d65795 100755 --- a/test/pix/firewall21-1.fw.orig +++ b/test/pix/firewall21-1.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:39:57 2011 PST by vadim +! Generated Tue Jan 25 11:22:36 2011 PST by vadim ! ! Compiled for pix 6.3 ! Outbound ACLs: not supported diff --git a/test/pix/firewall21.fw.orig b/test/pix/firewall21.fw.orig index af05a8efd..a3dc41a19 100755 --- a/test/pix/firewall21.fw.orig +++ b/test/pix/firewall21.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:39:56 2011 PST by vadim +! Generated Tue Jan 25 11:22:36 2011 PST by vadim ! ! Compiled for pix 7.0 ! Outbound ACLs: supported diff --git a/test/pix/firewall22.fw.orig b/test/pix/firewall22.fw.orig index aa531d101..dac02b849 100755 --- a/test/pix/firewall22.fw.orig +++ b/test/pix/firewall22.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:39:57 2011 PST by vadim +! Generated Tue Jan 25 11:22:36 2011 PST by vadim ! ! Compiled for pix 7.0 ! Outbound ACLs: supported diff --git a/test/pix/firewall3.fw.orig b/test/pix/firewall3.fw.orig index ac7dd545d..eed259085 100755 --- a/test/pix/firewall3.fw.orig +++ b/test/pix/firewall3.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:39:58 2011 PST by vadim +! Generated Tue Jan 25 11:22:38 2011 PST by vadim ! ! Compiled for pix 6.2 ! Outbound ACLs: not supported diff --git a/test/pix/firewall33.fw.orig b/test/pix/firewall33.fw.orig index ce1f2549c..8c97fa263 100755 --- a/test/pix/firewall33.fw.orig +++ b/test/pix/firewall33.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:39:59 2011 PST by vadim +! Generated Tue Jan 25 11:22:38 2011 PST by vadim ! ! Compiled for pix 6.3 ! Outbound ACLs: not supported diff --git a/test/pix/firewall34.fw.orig b/test/pix/firewall34.fw.orig index 8fcb53b9c..eaf1fd615 100755 --- a/test/pix/firewall34.fw.orig +++ b/test/pix/firewall34.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:41:05 2011 PST by vadim +! Generated Tue Jan 25 11:24:50 2011 PST by vadim ! ! Compiled for pix 6.3 ! Outbound ACLs: not supported @@ -74,61 +74,6 @@ object-group network id16988X10208.dst.net.0 exit object-group network id4390C25825682.dst.net.0 - network-object 58.33.181.83 255.255.255.255 - network-object 58.53.82.190 255.255.255.255 - network-object 58.231.13.78 255.255.255.255 - network-object host 61.150.47.112 - network-object 61.184.14.102 255.255.255.255 - network-object 64.106.85.186 255.255.255.255 - network-object 70.228.60.100 255.255.255.255 - network-object 80.51.236.6 255.255.255.255 - network-object 80.243.72.149 255.255.255.255 - network-object 80.249.77.34 255.255.255.255 - network-object 81.2.36.254 255.255.255.255 - network-object 81.196.74.125 255.255.255.255 - network-object 82.77.37.174 255.255.255.255 - network-object 82.117.221.205 255.255.255.255 - network-object 82.143.196.17 255.255.255.255 - network-object 84.90.8.198 255.255.255.255 - network-object 151.8.224.178 255.255.255.255 - network-object 168.156.76.20 255.255.255.255 - network-object 193.207.126.36 255.255.255.255 - network-object 195.136.186.35 255.255.255.255 - network-object 196.15.136.15 255.255.255.255 - network-object 201.10.180.138 255.255.255.255 - network-object 201.17.93.16 255.255.255.255 - network-object 201.36.156.121 255.255.255.255 - network-object 202.96.112.93 255.255.255.255 - network-object 202.103.25.253 255.255.255.255 - network-object 203.162.3.209 255.255.255.255 - network-object 203.209.124.144 255.255.255.255 - network-object 210.106.193.237 255.255.255.255 - network-object 210.222.114.102 255.255.255.255 - network-object 211.144.143.143 255.255.255.255 - network-object 211.172.218.237 255.255.255.255 - network-object 211.250.16.132 255.255.255.255 - network-object 212.21.241.31 255.255.255.255 - network-object 212.100.212.100 255.255.255.255 - network-object 218.18.72.252 255.255.255.255 - network-object 218.39.114.122 255.255.255.255 - network-object 218.55.115.43 255.255.255.255 - network-object 218.104.138.146 255.255.255.255 - network-object 219.132.104.160 255.255.255.255 - network-object 220.71.17.86 255.255.255.255 - network-object 220.81.50.105 255.255.255.255 - network-object 220.91.99.46 255.255.255.255 - network-object 221.14.249.242 255.255.255.255 - network-object 221.166.177.135 255.255.255.255 - network-object 221.198.33.38 255.255.255.255 - network-object 221.202.160.233 255.255.255.255 - network-object 221.205.54.125 255.255.255.255 - network-object 221.217.44.248 255.255.255.255 - network-object 222.100.212.223 255.255.255.255 - network-object 222.121.118.144 255.255.255.255 - network-object 222.174.113.2 255.255.255.255 -exit - -object-group network id4388CFF8674.src.net.0 network-object 58.33.181.83 255.255.255.255 network-object 58.53.82.190 255.255.255.255 network-object 58.231.13.78 255.255.255.255 @@ -214,7 +159,7 @@ access-list outside_acl_in deny tcp any object-group id4390C25825682.dst.net.0 access-list inside_acl_in deny tcp any object-group id4390C25825682.dst.net.0 eq 25 ! ! Rule 5 (global) -access-list outside_acl_in deny ip object-group id4388CFF8674.src.net.0 any log 6 interval 300 +access-list outside_acl_in deny ip object-group id4390C25825682.dst.net.0 any log 6 interval 300 ! ! Rule 6 (global) access-list outside_acl_in deny ip object-group id4390C25825682.dst.net.0 any log 6 interval 300 diff --git a/test/pix/firewall4.fw.orig b/test/pix/firewall4.fw.orig index ba834aa8c..ad10563aa 100755 --- a/test/pix/firewall4.fw.orig +++ b/test/pix/firewall4.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:39:59 2011 PST by vadim +! Generated Tue Jan 25 11:22:38 2011 PST by vadim ! ! Compiled for pix 6.2 ! Outbound ACLs: not supported diff --git a/test/pix/firewall50.fw.orig b/test/pix/firewall50.fw.orig index 86b911c58..4db41e344 100755 --- a/test/pix/firewall50.fw.orig +++ b/test/pix/firewall50.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:00 2011 PST by vadim +! Generated Tue Jan 25 11:22:40 2011 PST by vadim ! ! Compiled for pix 7.0 ! Outbound ACLs: supported diff --git a/test/pix/firewall6.fw.orig b/test/pix/firewall6.fw.orig index f73ab9162..4006877d9 100755 --- a/test/pix/firewall6.fw.orig +++ b/test/pix/firewall6.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:01 2011 PST by vadim +! Generated Tue Jan 25 11:22:40 2011 PST by vadim ! ! Compiled for pix 6.2 ! Outbound ACLs: not supported diff --git a/test/pix/firewall8.fw.orig b/test/pix/firewall8.fw.orig index e562dd1dd..7df66ae77 100755 --- a/test/pix/firewall8.fw.orig +++ b/test/pix/firewall8.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:01 2011 PST by vadim +! Generated Tue Jan 25 11:22:40 2011 PST by vadim ! ! Compiled for pix 6.2 ! Outbound ACLs: not supported diff --git a/test/pix/firewall80.fw.orig b/test/pix/firewall80.fw.orig index b42923d78..e23413e69 100755 --- a/test/pix/firewall80.fw.orig +++ b/test/pix/firewall80.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:02 2011 PST by vadim +! Generated Tue Jan 25 11:22:41 2011 PST by vadim ! ! Compiled for pix 8.2 ! Outbound ACLs: supported diff --git a/test/pix/firewall81.fw.orig b/test/pix/firewall81.fw.orig index 1b7e27e21..5bc642cb8 100755 --- a/test/pix/firewall81.fw.orig +++ b/test/pix/firewall81.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:02 2011 PST by vadim +! Generated Tue Jan 25 11:22:42 2011 PST by vadim ! ! Compiled for pix 8.3 ! Outbound ACLs: supported diff --git a/test/pix/firewall82.fw.orig b/test/pix/firewall82.fw.orig index a570b48fa..8a8d5c95d 100755 --- a/test/pix/firewall82.fw.orig +++ b/test/pix/firewall82.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:02 2011 PST by vadim +! Generated Tue Jan 25 11:22:42 2011 PST by vadim ! ! Compiled for pix 8.3 ! Outbound ACLs: supported diff --git a/test/pix/firewall83.fw.orig b/test/pix/firewall83.fw.orig index c17fdbdbb..f453af081 100755 --- a/test/pix/firewall83.fw.orig +++ b/test/pix/firewall83.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:03 2011 PST by vadim +! Generated Tue Jan 25 11:22:42 2011 PST by vadim ! ! Compiled for pix 8.3 ! Outbound ACLs: supported diff --git a/test/pix/firewall9.fw.orig b/test/pix/firewall9.fw.orig index 5dbc363bb..b2ce856df 100755 --- a/test/pix/firewall9.fw.orig +++ b/test/pix/firewall9.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:04 2011 PST by vadim +! Generated Tue Jan 25 11:22:43 2011 PST by vadim ! ! Compiled for pix 6.3 ! Outbound ACLs: not supported diff --git a/test/pix/firewall90.fw.orig b/test/pix/firewall90.fw.orig index 25a6b1c16..8e8bb3438 100755 --- a/test/pix/firewall90.fw.orig +++ b/test/pix/firewall90.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:05 2011 PST by vadim +! Generated Tue Jan 25 11:22:43 2011 PST by vadim ! ! Compiled for pix 8.3 ! Outbound ACLs: supported diff --git a/test/pix/firewall91.fw.orig b/test/pix/firewall91.fw.orig index eaf3666ac..4f1b9d78b 100755 --- a/test/pix/firewall91.fw.orig +++ b/test/pix/firewall91.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:05 2011 PST by vadim +! Generated Tue Jan 25 11:22:44 2011 PST by vadim ! ! Compiled for pix 8.3 ! Outbound ACLs: supported diff --git a/test/pix/firewall92.fw.orig b/test/pix/firewall92.fw.orig index 94b22ed81..c2845663b 100755 --- a/test/pix/firewall92.fw.orig +++ b/test/pix/firewall92.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:05 2011 PST by vadim +! Generated Tue Jan 25 11:22:45 2011 PST by vadim ! ! Compiled for pix 8.3 ! Outbound ACLs: supported diff --git a/test/pix/firewall93.fw.orig b/test/pix/firewall93.fw.orig index 102a74db5..4052725f1 100755 --- a/test/pix/firewall93.fw.orig +++ b/test/pix/firewall93.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:06 2011 PST by vadim +! Generated Tue Jan 25 11:22:45 2011 PST by vadim ! ! Compiled for pix 8.3 ! Outbound ACLs: supported diff --git a/test/pix/firewall94.fw.orig b/test/pix/firewall94.fw.orig index 826865436..faadc4750 100755 --- a/test/pix/firewall94.fw.orig +++ b/test/pix/firewall94.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:07 2011 PST by vadim +! Generated Tue Jan 25 11:22:44 2011 PST by vadim ! ! Compiled for pix 8.3 ! Outbound ACLs: supported diff --git a/test/pix/fwsm1.fw.orig b/test/pix/fwsm1.fw.orig index 77ea8aa09..d084a15dd 100755 --- a/test/pix/fwsm1.fw.orig +++ b/test/pix/fwsm1.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:07 2011 PST by vadim +! Generated Tue Jan 25 11:22:47 2011 PST by vadim ! ! Compiled for fwsm 2.3 ! Outbound ACLs: supported diff --git a/test/pix/fwsm2.fw.orig b/test/pix/fwsm2.fw.orig index 7760f57af..229ede448 100755 --- a/test/pix/fwsm2.fw.orig +++ b/test/pix/fwsm2.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:07 2011 PST by vadim +! Generated Tue Jan 25 11:22:47 2011 PST by vadim ! ! Compiled for fwsm 4.x ! Outbound ACLs: supported diff --git a/test/pix/pix515.fw.orig b/test/pix/pix515.fw.orig index 1568ec978..497e86a95 100755 --- a/test/pix/pix515.fw.orig +++ b/test/pix/pix515.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:09 2011 PST by vadim +! Generated Tue Jan 25 11:22:47 2011 PST by vadim ! ! Compiled for pix 7.0 ! Outbound ACLs: supported diff --git a/test/pix/real.fw.orig b/test/pix/real.fw.orig index 646b66319..779667701 100755 --- a/test/pix/real.fw.orig +++ b/test/pix/real.fw.orig @@ -1,9 +1,9 @@ ! ! This is automatically generated file. DO NOT MODIFY ! ! -! Firewall Builder fwb_pix v4.2.0.3445 +! Firewall Builder fwb_pix v4.2.0.3446 ! -! Generated Mon Jan 24 16:40:09 2011 PST by vadim +! Generated Tue Jan 25 11:22:47 2011 PST by vadim ! ! Compiled for pix 6.3 ! Outbound ACLs: not supported