mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-22 03:07:20 +01:00
see #2312 During nat import extraneous address objects are created
This commit is contained in:
parent
55da233d22
commit
e3383349b0
@ -265,6 +265,7 @@ void PIXImporter::buildSNATRule()
|
||||
|
||||
if ( ! nat_a.empty())
|
||||
{
|
||||
// makeSrcObj() uses these variables
|
||||
src_a = nat_a;
|
||||
src_nm = nat_nm;
|
||||
|
||||
@ -318,7 +319,7 @@ void PIXImporter::buildSNATRule()
|
||||
sig.setAddressRangeStart(pool.start.c_str());
|
||||
sig.setAddressRangeEnd(pool.end.c_str());
|
||||
}
|
||||
addr = address_maker->createObject(sig);
|
||||
addr = commitObject(address_maker->createObject(sig));
|
||||
}
|
||||
|
||||
RuleElement* tsrc = rule->getTSrc();
|
||||
|
||||
@ -59,15 +59,15 @@ FWObject* AddressObjectMaker::createObject(ObjectSignature &sig)
|
||||
// Now I should build new signature because actual object type has
|
||||
// only been determined in createAddress()
|
||||
|
||||
ObjectSignature new_sig(error_tracker);
|
||||
|
||||
if ( ! sig.object_name.isEmpty())
|
||||
{
|
||||
obj->setName(sig.object_name.toUtf8().constData());
|
||||
ObjectSignature new_sig(error_tracker);
|
||||
obj->dispatch(&new_sig, (void*)(NULL));
|
||||
registerNamedObject(new_sig, obj);
|
||||
} else
|
||||
{
|
||||
ObjectSignature new_sig(error_tracker);
|
||||
obj->dispatch(&new_sig, (void*)(NULL));
|
||||
registerAnonymousObject(new_sig, obj);
|
||||
}
|
||||
|
||||
@ -538,7 +538,7 @@ void PIXCfgLexer::mNEWLINE(bool _createToken) {
|
||||
|
||||
}
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2420 "pix.g"
|
||||
#line 2430 "pix.g"
|
||||
newline();
|
||||
#line 544 "PIXCfgLexer.cpp"
|
||||
}
|
||||
@ -662,7 +662,7 @@ void PIXCfgLexer::mWhitespace(bool _createToken) {
|
||||
}
|
||||
}
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2415 "pix.g"
|
||||
#line 2425 "pix.g"
|
||||
_ttype = ANTLR_USE_NAMESPACE(antlr)Token::SKIP;
|
||||
#line 668 "PIXCfgLexer.cpp"
|
||||
}
|
||||
@ -813,7 +813,7 @@ void PIXCfgLexer::mNUMBER_ADDRESS_OR_WORD(bool _createToken) {
|
||||
match("oup");
|
||||
}
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2472 "pix.g"
|
||||
#line 2482 "pix.g"
|
||||
_ttype = OBJECT_GROUP;
|
||||
#line 819 "PIXCfgLexer.cpp"
|
||||
}
|
||||
@ -821,7 +821,7 @@ void PIXCfgLexer::mNUMBER_ADDRESS_OR_WORD(bool _createToken) {
|
||||
else {
|
||||
match("");
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2474 "pix.g"
|
||||
#line 2484 "pix.g"
|
||||
_ttype = OBJECT;
|
||||
#line 827 "PIXCfgLexer.cpp"
|
||||
}
|
||||
@ -975,7 +975,7 @@ void PIXCfgLexer::mNUMBER_ADDRESS_OR_WORD(bool _createToken) {
|
||||
} // ( ... )+
|
||||
}
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2465 "pix.g"
|
||||
#line 2475 "pix.g"
|
||||
_ttype = IPV6;
|
||||
#line 981 "PIXCfgLexer.cpp"
|
||||
}
|
||||
@ -1122,7 +1122,7 @@ void PIXCfgLexer::mNUMBER_ADDRESS_OR_WORD(bool _createToken) {
|
||||
} // ( ... )+
|
||||
}
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2453 "pix.g"
|
||||
#line 2463 "pix.g"
|
||||
_ttype = IPV4;
|
||||
#line 1128 "PIXCfgLexer.cpp"
|
||||
}
|
||||
@ -1205,7 +1205,7 @@ void PIXCfgLexer::mNUMBER_ADDRESS_OR_WORD(bool _createToken) {
|
||||
} // ( ... )+
|
||||
}
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2456 "pix.g"
|
||||
#line 2466 "pix.g"
|
||||
_ttype = NUMBER;
|
||||
#line 1211 "PIXCfgLexer.cpp"
|
||||
}
|
||||
@ -1226,7 +1226,7 @@ void PIXCfgLexer::mNUMBER_ADDRESS_OR_WORD(bool _createToken) {
|
||||
_loop333:;
|
||||
} // ( ... )+
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2458 "pix.g"
|
||||
#line 2468 "pix.g"
|
||||
_ttype = INT_CONST;
|
||||
#line 1232 "PIXCfgLexer.cpp"
|
||||
}
|
||||
@ -1488,7 +1488,7 @@ void PIXCfgLexer::mNUMBER_ADDRESS_OR_WORD(bool _createToken) {
|
||||
_loop353:;
|
||||
} // ( ... )*
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2483 "pix.g"
|
||||
#line 2493 "pix.g"
|
||||
_ttype = WORD;
|
||||
#line 1494 "PIXCfgLexer.cpp"
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -306,6 +306,9 @@ named_object_description : DESCRIPTION
|
||||
;
|
||||
|
||||
host_addr : HOST single_addr
|
||||
{
|
||||
importer->commitNamedAddressObject();
|
||||
}
|
||||
;
|
||||
|
||||
single_addr : (h:IPV4 | v6:IPV6)
|
||||
@ -315,8 +318,7 @@ single_addr : (h:IPV4 | v6:IPV6)
|
||||
{
|
||||
importer->tmp_a = h->getText();
|
||||
importer->tmp_nm = "255.255.255.255";
|
||||
importer->commitNamedAddressObject();
|
||||
*dbg << h->getText() << "/255.255.255.255";
|
||||
*dbg << importer->tmp_a << " ";
|
||||
}
|
||||
if (v6)
|
||||
{
|
||||
@ -2022,17 +2024,25 @@ global_top_level_command :
|
||||
|
||||
// WORD Enter IP address or a range of IP addresses <start_ip>[-<end_ip>]
|
||||
// interface Specifies PAT using the IP address at the interface
|
||||
(INTRFACE | single_addr)
|
||||
{
|
||||
importer->tmp_global_pool.start = LT(0)->getText();
|
||||
importer->tmp_global_pool.end = LT(0)->getText();
|
||||
}
|
||||
(
|
||||
INTRFACE
|
||||
{
|
||||
importer->tmp_global_pool.start = LT(0)->getText();
|
||||
importer->tmp_global_pool.end = LT(0)->getText();
|
||||
}
|
||||
|
|
||||
single_addr
|
||||
{
|
||||
importer->tmp_global_pool.start = importer->tmp_a;
|
||||
importer->tmp_global_pool.end = importer->tmp_a;
|
||||
}
|
||||
)
|
||||
|
||||
(
|
||||
MINUS
|
||||
single_addr
|
||||
{
|
||||
importer->tmp_global_pool.end = LT(0)->getText();
|
||||
importer->tmp_global_pool.end = importer->tmp_a;
|
||||
}
|
||||
)?
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE FWObjectDatabase SYSTEM "fwbuilder.dtd">
|
||||
<FWObjectDatabase xmlns="http://www.fwbuilder.org/1.0/" version="18" lastModified="1302055128" id="root">
|
||||
<FWObjectDatabase xmlns="http://www.fwbuilder.org/1.0/" version="18" lastModified="1302056980" id="root">
|
||||
<Library id="syslib000" color="#d4f8ff" name="Standard" comment="Standard objects" ro="True">
|
||||
<AnyNetwork id="sysid0" name="Any" comment="Any Network" ro="False" address="0.0.0.0" netmask="0.0.0.0"/>
|
||||
<AnyIPService id="sysid1" protocol_num="0" name="Any" comment="Any IP Service" ro="False"/>
|
||||
@ -460,7 +460,7 @@
|
||||
<ObjectRef ref="id6"/>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="id25" name="outside.id77971X5929.tsrc.net.1" comment="Created during import of line 206" ro="False">
|
||||
<ObjectRef ref="id48"/>
|
||||
<ObjectRef ref="id52"/>
|
||||
<ObjectRef ref="id7"/>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="id28" name="outside.id77971X5929.osrc.net.0" comment="Created during import of line 209" ro="False">
|
||||
@ -472,7 +472,7 @@
|
||||
<ObjectRef ref="id6"/>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="id34" name="outside.id77971X5929.tsrc.net.0" comment="Created during import of line 215" ro="False">
|
||||
<ObjectRef ref="id48"/>
|
||||
<ObjectRef ref="id52"/>
|
||||
<ObjectRef ref="id7"/>
|
||||
</ObjectGroup>
|
||||
</ObjectGroup>
|
||||
@ -484,359 +484,363 @@
|
||||
<Network id="id42" name="internal_subnet_4" comment="Created during import of line 37" ro="False" address="192.168.1.0" netmask="255.255.255.192"/>
|
||||
<Network id="id43" name="Internal_net" comment="Created during import of line 40" ro="False" address="192.168.1.0" netmask="255.255.255.0"/>
|
||||
<Network id="id44" name="my-inside-net" comment="Created during import of line 61" ro="False" address="192.168.2.0" netmask="255.255.255.0"/>
|
||||
<Network id="id45" name="internal_subnet_5" comment="Created during import of line 85" ro="False" address="10.10.1.0" netmask="255.255.255.0"/>
|
||||
<Network id="id46" name="internal_subnet_6" comment="Created during import of line 90" ro="False" address="10.10.2.0" netmask="255.255.255.0"/>
|
||||
<Network id="id45" name="ipv6-host-object-1" comment="Example of IPv6 host object Created during import of line 69" ro="False" address="0.0.0.0" netmask="0.0.0.0"/>
|
||||
<Network id="id46" name="ipv6-host-object-3" comment="Example of IPv6 host object Created during import of line 75" ro="False" address="0.0.0.0" netmask="0.0.0.0"/>
|
||||
<Network id="id47" name="ipv6-host-object-3" comment="Example of IPv6 host object Created during import of line 78" ro="False" address="0.0.0.0" netmask="0.0.0.0"/>
|
||||
<Network id="id48" name="internal_subnet_5" comment="Created during import of line 85" ro="False" address="10.10.1.0" netmask="255.255.255.0"/>
|
||||
<Network id="id49" name="internal_subnet_6" comment="Created during import of line 90" ro="False" address="10.10.2.0" netmask="255.255.255.0"/>
|
||||
<Network id="id50" name="ipv6-host-object-2" comment="Test IPv6 host Created during import of line 94" ro="False" address="0.0.0.0" netmask="0.0.0.0"/>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="id47" name="Address Ranges" comment="" ro="False">
|
||||
<AddressRange id="id48" name="outside_range-1" comment="Created during import of line 42" ro="False" start_address="22.22.22.30" end_address="22.22.22.40"/>
|
||||
<AddressRange id="id49" name="range_1" comment="Created during import of line 44" ro="False" start_address="10.1.1.1" end_address="10.1.1.100"/>
|
||||
<AddressRange id="id50" name="my-range-obj" comment="Created during import of line 59" ro="False" start_address="10.2.2.1" end_address="10.2.2.10"/>
|
||||
<ObjectGroup id="id51" name="Address Ranges" comment="" ro="False">
|
||||
<AddressRange id="id52" name="outside_range-1" comment="Created during import of line 42" ro="False" start_address="22.22.22.30" end_address="22.22.22.40"/>
|
||||
<AddressRange id="id53" name="range_1" comment="Created during import of line 44" ro="False" start_address="10.1.1.1" end_address="10.1.1.100"/>
|
||||
<AddressRange id="id54" name="my-range-obj" comment="Created during import of line 59" ro="False" start_address="10.2.2.1" end_address="10.2.2.10"/>
|
||||
</ObjectGroup>
|
||||
</ObjectGroup>
|
||||
<ServiceGroup id="id51" name="Services" comment="" ro="False">
|
||||
<ServiceGroup id="id52" name="Groups" comment="" ro="False">
|
||||
<ServiceGroup id="id53" name="tcp src neq 88" comment="Created during import of line 126" ro="False">
|
||||
<ServiceRef ref="id248"/>
|
||||
<ServiceRef ref="id249"/>
|
||||
<ServiceGroup id="id55" name="Services" comment="" ro="False">
|
||||
<ServiceGroup id="id56" name="Groups" comment="" ro="False">
|
||||
<ServiceGroup id="id57" name="tcp src neq 88" comment="Created during import of line 126" ro="False">
|
||||
<ServiceRef ref="id252"/>
|
||||
<ServiceRef ref="id253"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id56" name="tcp dst neq 88" comment="Created during import of line 137" ro="False">
|
||||
<ServiceRef ref="id254"/>
|
||||
<ServiceRef ref="id255"/>
|
||||
<ServiceGroup id="id60" name="tcp dst neq 88" comment="Created during import of line 137" ro="False">
|
||||
<ServiceRef ref="id258"/>
|
||||
<ServiceRef ref="id259"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id59" name="tcp src neq 88 / dst 1024" comment="Created during import of line 149" ro="False">
|
||||
<ServiceRef ref="id260"/>
|
||||
<ServiceRef ref="id261"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id62" name="udp src neq 88" comment="Created during import of line 161" ro="False">
|
||||
<ServiceRef ref="id296"/>
|
||||
<ServiceRef ref="id297"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id65" name="udp dst neq 88" comment="Created during import of line 172" ro="False">
|
||||
<ServiceRef ref="id302"/>
|
||||
<ServiceRef ref="id303"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id68" name="outside.id77971X5929.osrv.1" comment="Created during import of line 219" ro="False">
|
||||
<ServiceRef ref="id240"/>
|
||||
<ServiceRef ref="id244"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id71" name="sg1" comment="Created during import of line 223" ro="False">
|
||||
<ServiceRef ref="id233"/>
|
||||
<ServiceRef ref="id234"/>
|
||||
<ServiceRef ref="id235"/>
|
||||
<ServiceRef ref="id236"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id76" name="sg2" comment="Created during import of line 228" ro="False">
|
||||
<ServiceRef ref="id223"/>
|
||||
<ServiceRef ref="id224"/>
|
||||
<ServiceRef ref="id225"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id80" name="sg3" comment="Created during import of line 232" ro="False">
|
||||
<ServiceRef ref="id263"/>
|
||||
<ServiceGroup id="id63" name="tcp src neq 88 / dst 1024" comment="Created during import of line 149" ro="False">
|
||||
<ServiceRef ref="id264"/>
|
||||
<ServiceRef ref="id86"/>
|
||||
<ServiceRef ref="id267"/>
|
||||
<ServiceRef ref="id268"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id86" name="tcp src 1024 / dst neq www" comment="Created during import of line 235" ro="False">
|
||||
<ServiceRef ref="id265"/>
|
||||
<ServiceRef ref="id266"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id89" name="sg4" comment="Created during import of line 238" ro="False">
|
||||
<ServiceRef ref="id269"/>
|
||||
<ServiceRef ref="id270"/>
|
||||
<ServiceRef ref="id271"/>
|
||||
<ServiceRef ref="id94"/>
|
||||
<ServiceGroup id="id66" name="udp src neq 88" comment="Created during import of line 161" ro="False">
|
||||
<ServiceRef ref="id300"/>
|
||||
<ServiceRef ref="id301"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id94" name="tcp src neq www" comment="Created during import of line 242" ro="False">
|
||||
<ServiceRef ref="id272"/>
|
||||
<ServiceRef ref="id273"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id97" name="sg5" comment="Created during import of line 243" ro="False">
|
||||
<ServiceRef ref="id305"/>
|
||||
<ServiceGroup id="id69" name="udp dst neq 88" comment="Created during import of line 172" ro="False">
|
||||
<ServiceRef ref="id306"/>
|
||||
<ServiceRef ref="id307"/>
|
||||
<ServiceRef ref="id308"/>
|
||||
<ServiceRef ref="id299"/>
|
||||
<ServiceRef ref="id300"/>
|
||||
<ServiceRef ref="id71"/>
|
||||
<ServiceRef ref="id76"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id106" name="combo-group-1" comment="Created during import of line 254" ro="False">
|
||||
<ServiceRef ref="id110"/>
|
||||
<ServiceRef ref="id113"/>
|
||||
<ServiceRef ref="id116"/>
|
||||
<ServiceGroup id="id72" name="outside.id77971X5929.osrv.1" comment="Created during import of line 219" ro="False">
|
||||
<ServiceRef ref="id244"/>
|
||||
<ServiceRef ref="id248"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id110" name="tcp-udp 0:0 / 10000:10000" comment="Created during import of line 255" ro="False">
|
||||
<ServiceGroup id="id75" name="sg1" comment="Created during import of line 223" ro="False">
|
||||
<ServiceRef ref="id237"/>
|
||||
<ServiceRef ref="id238"/>
|
||||
<ServiceRef ref="id239"/>
|
||||
<ServiceRef ref="id240"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id80" name="sg2" comment="Created during import of line 228" ro="False">
|
||||
<ServiceRef ref="id227"/>
|
||||
<ServiceRef ref="id228"/>
|
||||
<ServiceRef ref="id229"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id84" name="sg3" comment="Created during import of line 232" ro="False">
|
||||
<ServiceRef ref="id267"/>
|
||||
<ServiceRef ref="id268"/>
|
||||
<ServiceRef ref="id90"/>
|
||||
<ServiceRef ref="id271"/>
|
||||
<ServiceRef ref="id272"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id90" name="tcp src 1024 / dst neq www" comment="Created during import of line 235" ro="False">
|
||||
<ServiceRef ref="id269"/>
|
||||
<ServiceRef ref="id270"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id93" name="sg4" comment="Created during import of line 238" ro="False">
|
||||
<ServiceRef ref="id273"/>
|
||||
<ServiceRef ref="id274"/>
|
||||
<ServiceRef ref="id309"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id113" name="tcp-udp 0:0 / 0:1023" comment="Created during import of line 256" ro="False">
|
||||
<ServiceRef ref="id275"/>
|
||||
<ServiceRef ref="id310"/>
|
||||
<ServiceRef ref="id98"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id116" name="tcp-udp 0:0 / 1025:65535" comment="Created during import of line 257" ro="False">
|
||||
<ServiceGroup id="id98" name="tcp src neq www" comment="Created during import of line 242" ro="False">
|
||||
<ServiceRef ref="id276"/>
|
||||
<ServiceRef ref="id311"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id119" name="neq-group-2" comment="Created during import of line 258" ro="False">
|
||||
<ServiceRef ref="id134"/>
|
||||
<ServiceRef ref="id137"/>
|
||||
<ServiceRef ref="id140"/>
|
||||
<ServiceRef ref="id149"/>
|
||||
<ServiceRef ref="id158"/>
|
||||
<ServiceRef ref="id167"/>
|
||||
<ServiceRef ref="id170"/>
|
||||
<ServiceRef ref="id173"/>
|
||||
<ServiceRef ref="id176"/>
|
||||
<ServiceRef ref="id179"/>
|
||||
<ServiceRef ref="id182"/>
|
||||
<ServiceRef ref="id185"/>
|
||||
<ServiceRef ref="id188"/>
|
||||
<ServiceRef ref="id191"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id134" name="tcp dst neq www" comment="Created during import of line 259" ro="False">
|
||||
<ServiceRef ref="id277"/>
|
||||
<ServiceRef ref="id278"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id137" name="tcp dst neq 81" comment="Created during import of line 260" ro="False">
|
||||
<ServiceRef ref="id279"/>
|
||||
<ServiceRef ref="id280"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id140" name="tcp dst neq 82" comment="Created during import of line 261" ro="False">
|
||||
<ServiceRef ref="id281"/>
|
||||
<ServiceRef ref="id282"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id143" name="tcp dst neq 82" comment="Created during import of line 262" ro="False">
|
||||
<ServiceRef ref="id281"/>
|
||||
<ServiceRef ref="id282"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id146" name="udp dst neq 82" comment="Created during import of line 262" ro="False">
|
||||
<ServiceGroup id="id101" name="sg5" comment="Created during import of line 243" ro="False">
|
||||
<ServiceRef ref="id309"/>
|
||||
<ServiceRef ref="id310"/>
|
||||
<ServiceRef ref="id311"/>
|
||||
<ServiceRef ref="id312"/>
|
||||
<ServiceRef ref="id303"/>
|
||||
<ServiceRef ref="id304"/>
|
||||
<ServiceRef ref="id75"/>
|
||||
<ServiceRef ref="id80"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id110" name="combo-group-1" comment="Created during import of line 254" ro="False">
|
||||
<ServiceRef ref="id114"/>
|
||||
<ServiceRef ref="id117"/>
|
||||
<ServiceRef ref="id120"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id114" name="tcp-udp 0:0 / 10000:10000" comment="Created during import of line 255" ro="False">
|
||||
<ServiceRef ref="id278"/>
|
||||
<ServiceRef ref="id313"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id149" name="tcp-udp dst neq 82" comment="Created during import of line 262" ro="False">
|
||||
<ServiceRef ref="id143"/>
|
||||
<ServiceRef ref="id146"/>
|
||||
<ServiceGroup id="id117" name="tcp-udp 0:0 / 0:1023" comment="Created during import of line 256" ro="False">
|
||||
<ServiceRef ref="id279"/>
|
||||
<ServiceRef ref="id314"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id152" name="tcp dst neq 83" comment="Created during import of line 263" ro="False">
|
||||
<ServiceGroup id="id120" name="tcp-udp 0:0 / 1025:65535" comment="Created during import of line 257" ro="False">
|
||||
<ServiceRef ref="id280"/>
|
||||
<ServiceRef ref="id315"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id123" name="neq-group-2" comment="Created during import of line 258" ro="False">
|
||||
<ServiceRef ref="id138"/>
|
||||
<ServiceRef ref="id141"/>
|
||||
<ServiceRef ref="id144"/>
|
||||
<ServiceRef ref="id153"/>
|
||||
<ServiceRef ref="id162"/>
|
||||
<ServiceRef ref="id171"/>
|
||||
<ServiceRef ref="id174"/>
|
||||
<ServiceRef ref="id177"/>
|
||||
<ServiceRef ref="id180"/>
|
||||
<ServiceRef ref="id183"/>
|
||||
<ServiceRef ref="id186"/>
|
||||
<ServiceRef ref="id189"/>
|
||||
<ServiceRef ref="id192"/>
|
||||
<ServiceRef ref="id195"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id138" name="tcp dst neq www" comment="Created during import of line 259" ro="False">
|
||||
<ServiceRef ref="id281"/>
|
||||
<ServiceRef ref="id282"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id141" name="tcp dst neq 81" comment="Created during import of line 260" ro="False">
|
||||
<ServiceRef ref="id283"/>
|
||||
<ServiceRef ref="id284"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id155" name="udp dst neq 83" comment="Created during import of line 263" ro="False">
|
||||
<ServiceRef ref="id314"/>
|
||||
<ServiceRef ref="id315"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id158" name="tcp-udp dst neq 83" comment="Created during import of line 263" ro="False">
|
||||
<ServiceRef ref="id152"/>
|
||||
<ServiceRef ref="id155"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id161" name="tcp dst neq 84" comment="Created during import of line 264" ro="False">
|
||||
<ServiceGroup id="id144" name="tcp dst neq 82" comment="Created during import of line 261" ro="False">
|
||||
<ServiceRef ref="id285"/>
|
||||
<ServiceRef ref="id286"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id164" name="udp dst neq 84" comment="Created during import of line 264" ro="False">
|
||||
<ServiceGroup id="id147" name="tcp dst neq 82" comment="Created during import of line 262" ro="False">
|
||||
<ServiceRef ref="id285"/>
|
||||
<ServiceRef ref="id286"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id150" name="udp dst neq 82" comment="Created during import of line 262" ro="False">
|
||||
<ServiceRef ref="id316"/>
|
||||
<ServiceRef ref="id317"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id167" name="tcp-udp dst neq 84" comment="Created during import of line 264" ro="False">
|
||||
<ServiceRef ref="id161"/>
|
||||
<ServiceRef ref="id164"/>
|
||||
<ServiceGroup id="id153" name="tcp-udp dst neq 82" comment="Created during import of line 262" ro="False">
|
||||
<ServiceRef ref="id147"/>
|
||||
<ServiceRef ref="id150"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id170" name="udp dst neq 85" comment="Created during import of line 265" ro="False">
|
||||
<ServiceRef ref="id318"/>
|
||||
<ServiceRef ref="id319"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id173" name="udp dst neq 86" comment="Created during import of line 266" ro="False">
|
||||
<ServiceRef ref="id320"/>
|
||||
<ServiceRef ref="id321"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id176" name="udp dst neq 87" comment="Created during import of line 267" ro="False">
|
||||
<ServiceRef ref="id322"/>
|
||||
<ServiceRef ref="id323"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id179" name="udp dst neq www" comment="Created during import of line 268" ro="False">
|
||||
<ServiceRef ref="id324"/>
|
||||
<ServiceRef ref="id325"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id182" name="udp dst neq nfs" comment="Created during import of line 269" ro="False">
|
||||
<ServiceRef ref="id326"/>
|
||||
<ServiceRef ref="id327"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id185" name="udp dst neq radius" comment="Created during import of line 270" ro="False">
|
||||
<ServiceRef ref="id328"/>
|
||||
<ServiceRef ref="id329"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id188" name="udp dst neq radius-acct" comment="Created during import of line 271" ro="False">
|
||||
<ServiceRef ref="id330"/>
|
||||
<ServiceRef ref="id331"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id191" name="tcp dst neq ident" comment="Created during import of line 272" ro="False">
|
||||
<ServiceGroup id="id156" name="tcp dst neq 83" comment="Created during import of line 263" ro="False">
|
||||
<ServiceRef ref="id287"/>
|
||||
<ServiceRef ref="id288"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id194" name="pg1" comment="Created during import of line 274" ro="False">
|
||||
<ServiceRef ref="id236"/>
|
||||
<ServiceRef ref="id237"/>
|
||||
<ServiceRef ref="id233"/>
|
||||
<ServiceRef ref="id234"/>
|
||||
<ServiceGroup id="id159" name="udp dst neq 83" comment="Created during import of line 263" ro="False">
|
||||
<ServiceRef ref="id318"/>
|
||||
<ServiceRef ref="id319"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id199" name="pg2" comment="Created during import of line 279" ro="False">
|
||||
<ServiceRef ref="id238"/>
|
||||
<ServiceRef ref="id229"/>
|
||||
<ServiceRef ref="id194"/>
|
||||
<ServiceGroup id="id162" name="tcp-udp dst neq 83" comment="Created during import of line 263" ro="False">
|
||||
<ServiceRef ref="id156"/>
|
||||
<ServiceRef ref="id159"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id203" name="ig1" comment="Created during import of line 284" ro="False">
|
||||
<ServiceRef ref="id223"/>
|
||||
<ServiceRef ref="id225"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id206" name="ig2" comment="Created during import of line 287" ro="False">
|
||||
<ServiceRef ref="id224"/>
|
||||
<ServiceRef ref="id226"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id209" name="ig3" comment="Created during import of line 290" ro="False">
|
||||
<ServiceRef ref="id227"/>
|
||||
<ServiceRef ref="id203"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id212" name="id5102X14531.srv.tcp.0" comment="Created during import of line 296" ro="False">
|
||||
<ServiceGroup id="id165" name="tcp dst neq 84" comment="Created during import of line 264" ro="False">
|
||||
<ServiceRef ref="id289"/>
|
||||
<ServiceRef ref="id290"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id215" name="tcp-udp-1" comment="Created during import of line 301" ro="False">
|
||||
<ServiceRef ref="id217"/>
|
||||
<ServiceGroup id="id168" name="udp dst neq 84" comment="Created during import of line 264" ro="False">
|
||||
<ServiceRef ref="id320"/>
|
||||
<ServiceRef ref="id321"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id217" name="tcp-udp 0:0 / 10001:10001" comment="Created during import of line 302" ro="False">
|
||||
<ServiceRef ref="id291"/>
|
||||
<ServiceGroup id="id171" name="tcp-udp dst neq 84" comment="Created during import of line 264" ro="False">
|
||||
<ServiceRef ref="id165"/>
|
||||
<ServiceRef ref="id168"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id174" name="udp dst neq 85" comment="Created during import of line 265" ro="False">
|
||||
<ServiceRef ref="id322"/>
|
||||
<ServiceRef ref="id323"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id177" name="udp dst neq 86" comment="Created during import of line 266" ro="False">
|
||||
<ServiceRef ref="id324"/>
|
||||
<ServiceRef ref="id325"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id180" name="udp dst neq 87" comment="Created during import of line 267" ro="False">
|
||||
<ServiceRef ref="id326"/>
|
||||
<ServiceRef ref="id327"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id183" name="udp dst neq www" comment="Created during import of line 268" ro="False">
|
||||
<ServiceRef ref="id328"/>
|
||||
<ServiceRef ref="id329"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id186" name="udp dst neq nfs" comment="Created during import of line 269" ro="False">
|
||||
<ServiceRef ref="id330"/>
|
||||
<ServiceRef ref="id331"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id189" name="udp dst neq radius" comment="Created during import of line 270" ro="False">
|
||||
<ServiceRef ref="id332"/>
|
||||
<ServiceRef ref="id333"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id192" name="udp dst neq radius-acct" comment="Created during import of line 271" ro="False">
|
||||
<ServiceRef ref="id334"/>
|
||||
<ServiceRef ref="id335"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id195" name="tcp dst neq ident" comment="Created during import of line 272" ro="False">
|
||||
<ServiceRef ref="id291"/>
|
||||
<ServiceRef ref="id292"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id198" name="pg1" comment="Created during import of line 274" ro="False">
|
||||
<ServiceRef ref="id240"/>
|
||||
<ServiceRef ref="id241"/>
|
||||
<ServiceRef ref="id237"/>
|
||||
<ServiceRef ref="id238"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id203" name="pg2" comment="Created during import of line 279" ro="False">
|
||||
<ServiceRef ref="id242"/>
|
||||
<ServiceRef ref="id233"/>
|
||||
<ServiceRef ref="id198"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id207" name="ig1" comment="Created during import of line 284" ro="False">
|
||||
<ServiceRef ref="id227"/>
|
||||
<ServiceRef ref="id229"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id210" name="ig2" comment="Created during import of line 287" ro="False">
|
||||
<ServiceRef ref="id228"/>
|
||||
<ServiceRef ref="id230"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id213" name="ig3" comment="Created during import of line 290" ro="False">
|
||||
<ServiceRef ref="id231"/>
|
||||
<ServiceRef ref="id207"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id216" name="id5102X14531.srv.tcp.0" comment="Created during import of line 296" ro="False">
|
||||
<ServiceRef ref="id293"/>
|
||||
<ServiceRef ref="id294"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id219" name="tcp-udp-1" comment="Created during import of line 301" ro="False">
|
||||
<ServiceRef ref="id221"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id221" name="tcp-udp 0:0 / 10001:10001" comment="Created during import of line 302" ro="False">
|
||||
<ServiceRef ref="id295"/>
|
||||
<ServiceRef ref="id336"/>
|
||||
</ServiceGroup>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id220" name="ICMP" comment="" ro="False">
|
||||
<ICMPService id="id221" code="-1" type="8" name="icmp1" comment="Created during import of line 111" ro="False"/>
|
||||
<ICMPService id="id222" code="-1" type="3" name="icmp2" comment="Created during import of line 113" ro="False"/>
|
||||
<ICMPService id="id223" code="-1" type="8" name="icmp 8/-1" comment="Created during import of line 229" ro="False"/>
|
||||
<ICMPService id="id224" code="0" type="0" name="icmp 0/0" comment="Created during import of line 230" ro="False"/>
|
||||
<ICMPService id="id225" code="-1" type="111" name="icmp 111/-1" comment="Created during import of line 231" ro="False"/>
|
||||
<ICMPService id="id226" code="-1" type="112" name="icmp 112/-1" comment="Created during import of line 289" ro="False"/>
|
||||
<ICMPService id="id227" code="-1" type="18" name="icmp 18/-1" comment="Created during import of line 291" ro="False"/>
|
||||
<ServiceGroup id="id224" name="ICMP" comment="" ro="False">
|
||||
<ICMPService id="id225" code="-1" type="8" name="icmp1" comment="Created during import of line 111" ro="False"/>
|
||||
<ICMPService id="id226" code="-1" type="3" name="icmp2" comment="Created during import of line 113" ro="False"/>
|
||||
<ICMPService id="id227" code="-1" type="8" name="icmp 8/-1" comment="Created during import of line 229" ro="False"/>
|
||||
<ICMPService id="id228" code="0" type="0" name="icmp 0/0" comment="Created during import of line 230" ro="False"/>
|
||||
<ICMPService id="id229" code="-1" type="111" name="icmp 111/-1" comment="Created during import of line 231" ro="False"/>
|
||||
<ICMPService id="id230" code="-1" type="112" name="icmp 112/-1" comment="Created during import of line 289" ro="False"/>
|
||||
<ICMPService id="id231" code="-1" type="18" name="icmp 18/-1" comment="Created during import of line 291" ro="False"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id228" name="IP" comment="" ro="False">
|
||||
<IPService id="id229" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="111" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip5" comment="Created during import of line 115" ro="False"/>
|
||||
<IPService id="id230" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="0" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip1" comment="Created during import of line 178" ro="False"/>
|
||||
<IPService id="id231" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="88" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip2" comment="Created during import of line 180" ro="False"/>
|
||||
<IPService id="id232" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="0" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip3" comment="Warning: Unknown service name some_weird_protocol Created during import of line 186" ro="False"/>
|
||||
<IPService id="id233" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="0" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip" comment="Created during import of line 224" ro="False"/>
|
||||
<IPService id="id234" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="88" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip-88" comment="Created during import of line 225" ro="False"/>
|
||||
<IPService id="id235" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="47" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip-47" comment="Created during import of line 226" ro="False"/>
|
||||
<IPService id="id236" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="111" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip-111" comment="Created during import of line 227" ro="False"/>
|
||||
<IPService id="id237" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="51" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip-51" comment="Created during import of line 276" ro="False"/>
|
||||
<IPService id="id238" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="112" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip-112" comment="Created during import of line 280" ro="False"/>
|
||||
<ServiceGroup id="id232" name="IP" comment="" ro="False">
|
||||
<IPService id="id233" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="111" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip5" comment="Created during import of line 115" ro="False"/>
|
||||
<IPService id="id234" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="0" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip1" comment="Created during import of line 178" ro="False"/>
|
||||
<IPService id="id235" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="88" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip2" comment="Created during import of line 180" ro="False"/>
|
||||
<IPService id="id236" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="0" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip3" comment="Warning: Unknown service name some_weird_protocol Created during import of line 186" ro="False"/>
|
||||
<IPService id="id237" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="0" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip" comment="Created during import of line 224" ro="False"/>
|
||||
<IPService id="id238" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="88" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip-88" comment="Created during import of line 225" ro="False"/>
|
||||
<IPService id="id239" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="47" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip-47" comment="Created during import of line 226" ro="False"/>
|
||||
<IPService id="id240" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="111" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip-111" comment="Created during import of line 227" ro="False"/>
|
||||
<IPService id="id241" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="51" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip-51" comment="Created during import of line 276" ro="False"/>
|
||||
<IPService id="id242" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="112" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip-112" comment="Created during import of line 280" ro="False"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id239" name="TCP" comment="" ro="False">
|
||||
<TCPService id="id240" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="smtp" comment="Created during import of line 100" ro="False" src_range_start="0" src_range_end="0" dst_range_start="25" dst_range_end="25"/>
|
||||
<TCPService id="id241" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="http" comment="Created during import of line 102" ro="False" src_range_start="0" src_range_end="0" dst_range_start="80" dst_range_end="80"/>
|
||||
<TCPService id="id242" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="ssh" comment="Created during import of line 104" ro="False" src_range_start="0" src_range_end="0" dst_range_start="22" dst_range_end="22"/>
|
||||
<TCPService id="id243" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="squid" comment="Created during import of line 106" ro="False" src_range_start="0" src_range_end="0" dst_range_start="3128" dst_range_end="3128"/>
|
||||
<TCPService id="id244" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="smtps" comment="Created during import of line 108" ro="False" src_range_start="0" src_range_end="0" dst_range_start="465" dst_range_end="465"/>
|
||||
<TCPService id="id245" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-1" comment="object description tcp src 1 Created during import of line 120" ro="False" src_range_start="0" src_range_end="1023" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id246" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-2" comment="Created during import of line 122" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id247" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-3" comment="Created during import of line 124" ro="False" src_range_start="80" src_range_end="80" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id248" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-4" comment="Created during import of line 126" ro="False" src_range_start="0" src_range_end="87" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id249" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-4" comment="Created during import of line 126" ro="False" src_range_start="89" src_range_end="65535" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id250" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-5" comment="Created during import of line 128" ro="False" src_range_start="1000" src_range_end="1010" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id251" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-dst-1" comment="Created during import of line 131" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="1023"/>
|
||||
<TCPService id="id252" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-dst-2" comment="Created during import of line 133" ro="False" src_range_start="0" src_range_end="0" dst_range_start="1025" dst_range_end="65535"/>
|
||||
<TCPService id="id253" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-dst-3" comment="Created during import of line 135" ro="False" src_range_start="0" src_range_end="0" dst_range_start="80" dst_range_end="80"/>
|
||||
<TCPService id="id254" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-dst-4" comment="Created during import of line 137" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="87"/>
|
||||
<TCPService id="id255" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-dst-4" comment="Created during import of line 137" ro="False" src_range_start="0" src_range_end="0" dst_range_start="89" dst_range_end="65535"/>
|
||||
<TCPService id="id256" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-dst-5" comment="Created during import of line 139" ro="False" src_range_start="0" src_range_end="0" dst_range_start="1001" dst_range_end="1011"/>
|
||||
<TCPService id="id257" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-dst-1" comment="Created during import of line 143" ro="False" src_range_start="0" src_range_end="1023" dst_range_start="80" dst_range_end="80"/>
|
||||
<TCPService id="id258" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-dst-2" comment="Created during import of line 145" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="2222" dst_range_end="2222"/>
|
||||
<TCPService id="id259" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-dst-3" comment="Created during import of line 147" ro="False" src_range_start="80" src_range_end="80" dst_range_start="1025" dst_range_end="65535"/>
|
||||
<TCPService id="id260" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-dst-4" comment="Created during import of line 149" ro="False" src_range_start="0" src_range_end="87" dst_range_start="1025" dst_range_end="65535"/>
|
||||
<TCPService id="id261" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-dst-4" comment="Created during import of line 149" ro="False" src_range_start="89" src_range_end="65535" dst_range_start="1025" dst_range_end="65535"/>
|
||||
<TCPService id="id262" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-dst-5" comment="Created during import of line 151" ro="False" src_range_start="1002" src_range_end="1012" dst_range_start="1025" dst_range_end="65535"/>
|
||||
<TCPService id="id263" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 1025:65535 / 80:80" comment="Created during import of line 233" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="80" dst_range_end="80"/>
|
||||
<TCPService id="id264" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 1025:65535 / 10000:10010" comment="Created during import of line 234" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="10000" dst_range_end="10010"/>
|
||||
<TCPService id="id265" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 1025:65535 / 0:79" comment="Created during import of line 235" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="0" dst_range_end="79"/>
|
||||
<TCPService id="id266" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 1025:65535 / 81:65535" comment="Created during import of line 235" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="81" dst_range_end="65535"/>
|
||||
<TCPService id="id267" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 1025:65535 / 0:1023" comment="Created during import of line 236" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="0" dst_range_end="1023"/>
|
||||
<TCPService id="id268" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 22:22" comment="Created during import of line 237" ro="False" src_range_start="0" src_range_end="0" dst_range_start="22" dst_range_end="22"/>
|
||||
<TCPService id="id269" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 1025:65535 / 0:0" comment="Created during import of line 239" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id270" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:1023 / 0:0" comment="Created during import of line 240" ro="False" src_range_start="0" src_range_end="1023" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id271" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 80:80 / 0:0" comment="Created during import of line 241" ro="False" src_range_start="80" src_range_end="80" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id272" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:79 / 0:0" comment="Created during import of line 242" ro="False" src_range_start="0" src_range_end="79" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id273" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 81:65535 / 0:0" comment="Created during import of line 242" ro="False" src_range_start="81" src_range_end="65535" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id274" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 10000:10000" comment="Created during import of line 255" ro="False" src_range_start="0" src_range_end="0" dst_range_start="10000" dst_range_end="10000"/>
|
||||
<TCPService id="id275" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 0:1023" comment="Created during import of line 256" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="1023"/>
|
||||
<TCPService id="id276" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 1025:65535" comment="Created during import of line 257" ro="False" src_range_start="0" src_range_end="0" dst_range_start="1025" dst_range_end="65535"/>
|
||||
<TCPService id="id277" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 0:79" comment="Created during import of line 259" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="79"/>
|
||||
<TCPService id="id278" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 81:65535" comment="Created during import of line 259" ro="False" src_range_start="0" src_range_end="0" dst_range_start="81" dst_range_end="65535"/>
|
||||
<TCPService id="id279" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 0:80" comment="Created during import of line 260" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="80"/>
|
||||
<TCPService id="id280" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 82:65535" comment="Created during import of line 260" ro="False" src_range_start="0" src_range_end="0" dst_range_start="82" dst_range_end="65535"/>
|
||||
<TCPService id="id281" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 0:81" comment="Created during import of line 261" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="81"/>
|
||||
<TCPService id="id282" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 83:65535" comment="Created during import of line 261" ro="False" src_range_start="0" src_range_end="0" dst_range_start="83" dst_range_end="65535"/>
|
||||
<TCPService id="id283" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 0:82" comment="Created during import of line 263" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="82"/>
|
||||
<TCPService id="id284" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 84:65535" comment="Created during import of line 263" ro="False" src_range_start="0" src_range_end="0" dst_range_start="84" dst_range_end="65535"/>
|
||||
<TCPService id="id285" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 0:83" comment="Created during import of line 264" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="83"/>
|
||||
<TCPService id="id286" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 85:65535" comment="Created during import of line 264" ro="False" src_range_start="0" src_range_end="0" dst_range_start="85" dst_range_end="65535"/>
|
||||
<TCPService id="id287" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 0:112" comment="Created during import of line 272" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="112"/>
|
||||
<TCPService id="id288" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 114:65535" comment="Created during import of line 272" ro="False" src_range_start="0" src_range_end="0" dst_range_start="114" dst_range_end="65535"/>
|
||||
<TCPService id="id289" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 80:80" comment="Created during import of line 297" ro="False" src_range_start="0" src_range_end="0" dst_range_start="80" dst_range_end="80"/>
|
||||
<TCPService id="id290" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 443:443" comment="Created during import of line 298" ro="False" src_range_start="0" src_range_end="0" dst_range_start="443" dst_range_end="443"/>
|
||||
<TCPService id="id291" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 10001:10001" comment="Created during import of line 302" ro="False" src_range_start="0" src_range_end="0" dst_range_start="10001" dst_range_end="10001"/>
|
||||
<ServiceGroup id="id243" name="TCP" comment="" ro="False">
|
||||
<TCPService id="id244" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="smtp" comment="Created during import of line 100" ro="False" src_range_start="0" src_range_end="0" dst_range_start="25" dst_range_end="25"/>
|
||||
<TCPService id="id245" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="http" comment="Created during import of line 102" ro="False" src_range_start="0" src_range_end="0" dst_range_start="80" dst_range_end="80"/>
|
||||
<TCPService id="id246" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="ssh" comment="Created during import of line 104" ro="False" src_range_start="0" src_range_end="0" dst_range_start="22" dst_range_end="22"/>
|
||||
<TCPService id="id247" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="squid" comment="Created during import of line 106" ro="False" src_range_start="0" src_range_end="0" dst_range_start="3128" dst_range_end="3128"/>
|
||||
<TCPService id="id248" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="smtps" comment="Created during import of line 108" ro="False" src_range_start="0" src_range_end="0" dst_range_start="465" dst_range_end="465"/>
|
||||
<TCPService id="id249" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-1" comment="object description tcp src 1 Created during import of line 120" ro="False" src_range_start="0" src_range_end="1023" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id250" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-2" comment="Created during import of line 122" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id251" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-3" comment="Created during import of line 124" ro="False" src_range_start="80" src_range_end="80" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id252" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-4" comment="Created during import of line 126" ro="False" src_range_start="0" src_range_end="87" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id253" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-4" comment="Created during import of line 126" ro="False" src_range_start="89" src_range_end="65535" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id254" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-5" comment="Created during import of line 128" ro="False" src_range_start="1000" src_range_end="1010" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id255" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-dst-1" comment="Created during import of line 131" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="1023"/>
|
||||
<TCPService id="id256" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-dst-2" comment="Created during import of line 133" ro="False" src_range_start="0" src_range_end="0" dst_range_start="1025" dst_range_end="65535"/>
|
||||
<TCPService id="id257" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-dst-3" comment="Created during import of line 135" ro="False" src_range_start="0" src_range_end="0" dst_range_start="80" dst_range_end="80"/>
|
||||
<TCPService id="id258" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-dst-4" comment="Created during import of line 137" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="87"/>
|
||||
<TCPService id="id259" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-dst-4" comment="Created during import of line 137" ro="False" src_range_start="0" src_range_end="0" dst_range_start="89" dst_range_end="65535"/>
|
||||
<TCPService id="id260" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-dst-5" comment="Created during import of line 139" ro="False" src_range_start="0" src_range_end="0" dst_range_start="1001" dst_range_end="1011"/>
|
||||
<TCPService id="id261" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-dst-1" comment="Created during import of line 143" ro="False" src_range_start="0" src_range_end="1023" dst_range_start="80" dst_range_end="80"/>
|
||||
<TCPService id="id262" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-dst-2" comment="Created during import of line 145" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="2222" dst_range_end="2222"/>
|
||||
<TCPService id="id263" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-dst-3" comment="Created during import of line 147" ro="False" src_range_start="80" src_range_end="80" dst_range_start="1025" dst_range_end="65535"/>
|
||||
<TCPService id="id264" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-dst-4" comment="Created during import of line 149" ro="False" src_range_start="0" src_range_end="87" dst_range_start="1025" dst_range_end="65535"/>
|
||||
<TCPService id="id265" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-dst-4" comment="Created during import of line 149" ro="False" src_range_start="89" src_range_end="65535" dst_range_start="1025" dst_range_end="65535"/>
|
||||
<TCPService id="id266" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp-src-dst-5" comment="Created during import of line 151" ro="False" src_range_start="1002" src_range_end="1012" dst_range_start="1025" dst_range_end="65535"/>
|
||||
<TCPService id="id267" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 1025:65535 / 80:80" comment="Created during import of line 233" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="80" dst_range_end="80"/>
|
||||
<TCPService id="id268" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 1025:65535 / 10000:10010" comment="Created during import of line 234" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="10000" dst_range_end="10010"/>
|
||||
<TCPService id="id269" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 1025:65535 / 0:79" comment="Created during import of line 235" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="0" dst_range_end="79"/>
|
||||
<TCPService id="id270" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 1025:65535 / 81:65535" comment="Created during import of line 235" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="81" dst_range_end="65535"/>
|
||||
<TCPService id="id271" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 1025:65535 / 0:1023" comment="Created during import of line 236" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="0" dst_range_end="1023"/>
|
||||
<TCPService id="id272" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 22:22" comment="Created during import of line 237" ro="False" src_range_start="0" src_range_end="0" dst_range_start="22" dst_range_end="22"/>
|
||||
<TCPService id="id273" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 1025:65535 / 0:0" comment="Created during import of line 239" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id274" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:1023 / 0:0" comment="Created during import of line 240" ro="False" src_range_start="0" src_range_end="1023" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id275" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 80:80 / 0:0" comment="Created during import of line 241" ro="False" src_range_start="80" src_range_end="80" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id276" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:79 / 0:0" comment="Created during import of line 242" ro="False" src_range_start="0" src_range_end="79" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id277" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 81:65535 / 0:0" comment="Created during import of line 242" ro="False" src_range_start="81" src_range_end="65535" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id278" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 10000:10000" comment="Created during import of line 255" ro="False" src_range_start="0" src_range_end="0" dst_range_start="10000" dst_range_end="10000"/>
|
||||
<TCPService id="id279" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 0:1023" comment="Created during import of line 256" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="1023"/>
|
||||
<TCPService id="id280" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 1025:65535" comment="Created during import of line 257" ro="False" src_range_start="0" src_range_end="0" dst_range_start="1025" dst_range_end="65535"/>
|
||||
<TCPService id="id281" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 0:79" comment="Created during import of line 259" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="79"/>
|
||||
<TCPService id="id282" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 81:65535" comment="Created during import of line 259" ro="False" src_range_start="0" src_range_end="0" dst_range_start="81" dst_range_end="65535"/>
|
||||
<TCPService id="id283" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 0:80" comment="Created during import of line 260" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="80"/>
|
||||
<TCPService id="id284" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 82:65535" comment="Created during import of line 260" ro="False" src_range_start="0" src_range_end="0" dst_range_start="82" dst_range_end="65535"/>
|
||||
<TCPService id="id285" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 0:81" comment="Created during import of line 261" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="81"/>
|
||||
<TCPService id="id286" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 83:65535" comment="Created during import of line 261" ro="False" src_range_start="0" src_range_end="0" dst_range_start="83" dst_range_end="65535"/>
|
||||
<TCPService id="id287" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 0:82" comment="Created during import of line 263" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="82"/>
|
||||
<TCPService id="id288" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 84:65535" comment="Created during import of line 263" ro="False" src_range_start="0" src_range_end="0" dst_range_start="84" dst_range_end="65535"/>
|
||||
<TCPService id="id289" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 0:83" comment="Created during import of line 264" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="83"/>
|
||||
<TCPService id="id290" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 85:65535" comment="Created during import of line 264" ro="False" src_range_start="0" src_range_end="0" dst_range_start="85" dst_range_end="65535"/>
|
||||
<TCPService id="id291" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 0:112" comment="Created during import of line 272" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="112"/>
|
||||
<TCPService id="id292" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 114:65535" comment="Created during import of line 272" ro="False" src_range_start="0" src_range_end="0" dst_range_start="114" dst_range_end="65535"/>
|
||||
<TCPService id="id293" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 80:80" comment="Created during import of line 297" ro="False" src_range_start="0" src_range_end="0" dst_range_start="80" dst_range_end="80"/>
|
||||
<TCPService id="id294" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 443:443" comment="Created during import of line 298" ro="False" src_range_start="0" src_range_end="0" dst_range_start="443" dst_range_end="443"/>
|
||||
<TCPService id="id295" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 10001:10001" comment="Created during import of line 302" ro="False" src_range_start="0" src_range_end="0" dst_range_start="10001" dst_range_end="10001"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id292" name="UDP" comment="" ro="False">
|
||||
<UDPService id="id293" name="udp-src-1" comment="Created during import of line 155" ro="False" src_range_start="0" src_range_end="1023" dst_range_start="0" dst_range_end="0"/>
|
||||
<UDPService id="id294" name="udp-src-2" comment="Created during import of line 157" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="0" dst_range_end="0"/>
|
||||
<UDPService id="id295" name="udp-src-3" comment="Created during import of line 159" ro="False" src_range_start="80" src_range_end="80" dst_range_start="0" dst_range_end="0"/>
|
||||
<UDPService id="id296" name="udp-src-4" comment="Created during import of line 161" ro="False" src_range_start="0" src_range_end="87" dst_range_start="0" dst_range_end="0"/>
|
||||
<UDPService id="id297" name="udp-src-4" comment="Created during import of line 161" ro="False" src_range_start="89" src_range_end="65535" dst_range_start="0" dst_range_end="0"/>
|
||||
<UDPService id="id298" name="udp-src-5" comment="Created during import of line 163" ro="False" src_range_start="1000" src_range_end="1010" dst_range_start="0" dst_range_end="0"/>
|
||||
<UDPService id="id299" name="udp-dst-1" comment="Created during import of line 166" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="1023"/>
|
||||
<UDPService id="id300" name="udp-dst-2" comment="Created during import of line 168" ro="False" src_range_start="0" src_range_end="0" dst_range_start="1025" dst_range_end="65535"/>
|
||||
<UDPService id="id301" name="udp-dst-3" comment="Created during import of line 170" ro="False" src_range_start="0" src_range_end="0" dst_range_start="80" dst_range_end="80"/>
|
||||
<UDPService id="id302" name="udp-dst-4" comment="Created during import of line 172" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="87"/>
|
||||
<UDPService id="id303" name="udp-dst-4" comment="Created during import of line 172" ro="False" src_range_start="0" src_range_end="0" dst_range_start="89" dst_range_end="65535"/>
|
||||
<UDPService id="id304" name="udp-dst-5" comment="Created during import of line 174" ro="False" src_range_start="0" src_range_end="0" dst_range_start="1001" dst_range_end="1011"/>
|
||||
<UDPService id="id305" name="udp 1025:65535 / 0:0" comment="Created during import of line 244" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="0" dst_range_end="0"/>
|
||||
<UDPService id="id306" name="udp 1025:65535 / 80:80" comment="Created during import of line 245" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="80" dst_range_end="80"/>
|
||||
<UDPService id="id307" name="udp 0:0 / 53:53" comment="Created during import of line 246" ro="False" src_range_start="0" src_range_end="0" dst_range_start="53" dst_range_end="53"/>
|
||||
<UDPService id="id308" name="udp 0:0 / 5353:5353" comment="Created during import of line 247" ro="False" src_range_start="0" src_range_end="0" dst_range_start="5353" dst_range_end="5353"/>
|
||||
<UDPService id="id309" name="udp 0:0 / 10000:10000" comment="Created during import of line 255" ro="False" src_range_start="0" src_range_end="0" dst_range_start="10000" dst_range_end="10000"/>
|
||||
<UDPService id="id310" name="udp 0:0 / 0:1023" comment="Created during import of line 256" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="1023"/>
|
||||
<UDPService id="id311" name="udp 0:0 / 1025:65535" comment="Created during import of line 257" ro="False" src_range_start="0" src_range_end="0" dst_range_start="1025" dst_range_end="65535"/>
|
||||
<UDPService id="id312" name="udp 0:0 / 0:81" comment="Created during import of line 262" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="81"/>
|
||||
<UDPService id="id313" name="udp 0:0 / 83:65535" comment="Created during import of line 262" ro="False" src_range_start="0" src_range_end="0" dst_range_start="83" dst_range_end="65535"/>
|
||||
<UDPService id="id314" name="udp 0:0 / 0:82" comment="Created during import of line 263" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="82"/>
|
||||
<UDPService id="id315" name="udp 0:0 / 84:65535" comment="Created during import of line 263" ro="False" src_range_start="0" src_range_end="0" dst_range_start="84" dst_range_end="65535"/>
|
||||
<UDPService id="id316" name="udp 0:0 / 0:83" comment="Created during import of line 264" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="83"/>
|
||||
<UDPService id="id317" name="udp 0:0 / 85:65535" comment="Created during import of line 264" ro="False" src_range_start="0" src_range_end="0" dst_range_start="85" dst_range_end="65535"/>
|
||||
<UDPService id="id318" name="udp 0:0 / 0:84" comment="Created during import of line 265" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="84"/>
|
||||
<UDPService id="id319" name="udp 0:0 / 86:65535" comment="Created during import of line 265" ro="False" src_range_start="0" src_range_end="0" dst_range_start="86" dst_range_end="65535"/>
|
||||
<UDPService id="id320" name="udp 0:0 / 0:85" comment="Created during import of line 266" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="85"/>
|
||||
<UDPService id="id321" name="udp 0:0 / 87:65535" comment="Created during import of line 266" ro="False" src_range_start="0" src_range_end="0" dst_range_start="87" dst_range_end="65535"/>
|
||||
<UDPService id="id322" name="udp 0:0 / 0:86" comment="Created during import of line 267" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="86"/>
|
||||
<UDPService id="id323" name="udp 0:0 / 88:65535" comment="Created during import of line 267" ro="False" src_range_start="0" src_range_end="0" dst_range_start="88" dst_range_end="65535"/>
|
||||
<UDPService id="id324" name="udp 0:0 / 0:79" comment="Created during import of line 268" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="79"/>
|
||||
<UDPService id="id325" name="udp 0:0 / 81:65535" comment="Created during import of line 268" ro="False" src_range_start="0" src_range_end="0" dst_range_start="81" dst_range_end="65535"/>
|
||||
<UDPService id="id326" name="udp 0:0 / 0:2048" comment="Created during import of line 269" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="2048"/>
|
||||
<UDPService id="id327" name="udp 0:0 / 2050:65535" comment="Created during import of line 269" ro="False" src_range_start="0" src_range_end="0" dst_range_start="2050" dst_range_end="65535"/>
|
||||
<UDPService id="id328" name="udp 0:0 / 0:1644" comment="Created during import of line 270" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="1644"/>
|
||||
<UDPService id="id329" name="udp 0:0 / 1646:65535" comment="Created during import of line 270" ro="False" src_range_start="0" src_range_end="0" dst_range_start="1646" dst_range_end="65535"/>
|
||||
<UDPService id="id330" name="udp 0:0 / 0:1645" comment="Created during import of line 271" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="1645"/>
|
||||
<UDPService id="id331" name="udp 0:0 / 1647:65535" comment="Created during import of line 271" ro="False" src_range_start="0" src_range_end="0" dst_range_start="1647" dst_range_end="65535"/>
|
||||
<UDPService id="id332" name="udp 0:0 / 10001:10001" comment="Created during import of line 302" ro="False" src_range_start="0" src_range_end="0" dst_range_start="10001" dst_range_end="10001"/>
|
||||
<ServiceGroup id="id296" name="UDP" comment="" ro="False">
|
||||
<UDPService id="id297" name="udp-src-1" comment="Created during import of line 155" ro="False" src_range_start="0" src_range_end="1023" dst_range_start="0" dst_range_end="0"/>
|
||||
<UDPService id="id298" name="udp-src-2" comment="Created during import of line 157" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="0" dst_range_end="0"/>
|
||||
<UDPService id="id299" name="udp-src-3" comment="Created during import of line 159" ro="False" src_range_start="80" src_range_end="80" dst_range_start="0" dst_range_end="0"/>
|
||||
<UDPService id="id300" name="udp-src-4" comment="Created during import of line 161" ro="False" src_range_start="0" src_range_end="87" dst_range_start="0" dst_range_end="0"/>
|
||||
<UDPService id="id301" name="udp-src-4" comment="Created during import of line 161" ro="False" src_range_start="89" src_range_end="65535" dst_range_start="0" dst_range_end="0"/>
|
||||
<UDPService id="id302" name="udp-src-5" comment="Created during import of line 163" ro="False" src_range_start="1000" src_range_end="1010" dst_range_start="0" dst_range_end="0"/>
|
||||
<UDPService id="id303" name="udp-dst-1" comment="Created during import of line 166" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="1023"/>
|
||||
<UDPService id="id304" name="udp-dst-2" comment="Created during import of line 168" ro="False" src_range_start="0" src_range_end="0" dst_range_start="1025" dst_range_end="65535"/>
|
||||
<UDPService id="id305" name="udp-dst-3" comment="Created during import of line 170" ro="False" src_range_start="0" src_range_end="0" dst_range_start="80" dst_range_end="80"/>
|
||||
<UDPService id="id306" name="udp-dst-4" comment="Created during import of line 172" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="87"/>
|
||||
<UDPService id="id307" name="udp-dst-4" comment="Created during import of line 172" ro="False" src_range_start="0" src_range_end="0" dst_range_start="89" dst_range_end="65535"/>
|
||||
<UDPService id="id308" name="udp-dst-5" comment="Created during import of line 174" ro="False" src_range_start="0" src_range_end="0" dst_range_start="1001" dst_range_end="1011"/>
|
||||
<UDPService id="id309" name="udp 1025:65535 / 0:0" comment="Created during import of line 244" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="0" dst_range_end="0"/>
|
||||
<UDPService id="id310" name="udp 1025:65535 / 80:80" comment="Created during import of line 245" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="80" dst_range_end="80"/>
|
||||
<UDPService id="id311" name="udp 0:0 / 53:53" comment="Created during import of line 246" ro="False" src_range_start="0" src_range_end="0" dst_range_start="53" dst_range_end="53"/>
|
||||
<UDPService id="id312" name="udp 0:0 / 5353:5353" comment="Created during import of line 247" ro="False" src_range_start="0" src_range_end="0" dst_range_start="5353" dst_range_end="5353"/>
|
||||
<UDPService id="id313" name="udp 0:0 / 10000:10000" comment="Created during import of line 255" ro="False" src_range_start="0" src_range_end="0" dst_range_start="10000" dst_range_end="10000"/>
|
||||
<UDPService id="id314" name="udp 0:0 / 0:1023" comment="Created during import of line 256" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="1023"/>
|
||||
<UDPService id="id315" name="udp 0:0 / 1025:65535" comment="Created during import of line 257" ro="False" src_range_start="0" src_range_end="0" dst_range_start="1025" dst_range_end="65535"/>
|
||||
<UDPService id="id316" name="udp 0:0 / 0:81" comment="Created during import of line 262" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="81"/>
|
||||
<UDPService id="id317" name="udp 0:0 / 83:65535" comment="Created during import of line 262" ro="False" src_range_start="0" src_range_end="0" dst_range_start="83" dst_range_end="65535"/>
|
||||
<UDPService id="id318" name="udp 0:0 / 0:82" comment="Created during import of line 263" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="82"/>
|
||||
<UDPService id="id319" name="udp 0:0 / 84:65535" comment="Created during import of line 263" ro="False" src_range_start="0" src_range_end="0" dst_range_start="84" dst_range_end="65535"/>
|
||||
<UDPService id="id320" name="udp 0:0 / 0:83" comment="Created during import of line 264" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="83"/>
|
||||
<UDPService id="id321" name="udp 0:0 / 85:65535" comment="Created during import of line 264" ro="False" src_range_start="0" src_range_end="0" dst_range_start="85" dst_range_end="65535"/>
|
||||
<UDPService id="id322" name="udp 0:0 / 0:84" comment="Created during import of line 265" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="84"/>
|
||||
<UDPService id="id323" name="udp 0:0 / 86:65535" comment="Created during import of line 265" ro="False" src_range_start="0" src_range_end="0" dst_range_start="86" dst_range_end="65535"/>
|
||||
<UDPService id="id324" name="udp 0:0 / 0:85" comment="Created during import of line 266" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="85"/>
|
||||
<UDPService id="id325" name="udp 0:0 / 87:65535" comment="Created during import of line 266" ro="False" src_range_start="0" src_range_end="0" dst_range_start="87" dst_range_end="65535"/>
|
||||
<UDPService id="id326" name="udp 0:0 / 0:86" comment="Created during import of line 267" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="86"/>
|
||||
<UDPService id="id327" name="udp 0:0 / 88:65535" comment="Created during import of line 267" ro="False" src_range_start="0" src_range_end="0" dst_range_start="88" dst_range_end="65535"/>
|
||||
<UDPService id="id328" name="udp 0:0 / 0:79" comment="Created during import of line 268" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="79"/>
|
||||
<UDPService id="id329" name="udp 0:0 / 81:65535" comment="Created during import of line 268" ro="False" src_range_start="0" src_range_end="0" dst_range_start="81" dst_range_end="65535"/>
|
||||
<UDPService id="id330" name="udp 0:0 / 0:2048" comment="Created during import of line 269" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="2048"/>
|
||||
<UDPService id="id331" name="udp 0:0 / 2050:65535" comment="Created during import of line 269" ro="False" src_range_start="0" src_range_end="0" dst_range_start="2050" dst_range_end="65535"/>
|
||||
<UDPService id="id332" name="udp 0:0 / 0:1644" comment="Created during import of line 270" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="1644"/>
|
||||
<UDPService id="id333" name="udp 0:0 / 1646:65535" comment="Created during import of line 270" ro="False" src_range_start="0" src_range_end="0" dst_range_start="1646" dst_range_end="65535"/>
|
||||
<UDPService id="id334" name="udp 0:0 / 0:1645" comment="Created during import of line 271" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="1645"/>
|
||||
<UDPService id="id335" name="udp 0:0 / 1647:65535" comment="Created during import of line 271" ro="False" src_range_start="0" src_range_end="0" dst_range_start="1647" dst_range_end="65535"/>
|
||||
<UDPService id="id336" name="udp 0:0 / 10001:10001" comment="Created during import of line 302" ro="False" src_range_start="0" src_range_end="0" dst_range_start="10001" dst_range_end="10001"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id333" name="Users" comment="" ro="False"/>
|
||||
<ServiceGroup id="id334" name="Custom" comment="" ro="False"/>
|
||||
<ServiceGroup id="id335" name="TagServices" comment="" ro="False"/>
|
||||
<ServiceGroup id="id337" name="Users" comment="" ro="False"/>
|
||||
<ServiceGroup id="id338" name="Custom" comment="" ro="False"/>
|
||||
<ServiceGroup id="id339" name="TagServices" comment="" ro="False"/>
|
||||
</ServiceGroup>
|
||||
<ObjectGroup id="id336" name="Firewalls" comment="" ro="False">
|
||||
<Firewall id="id337" host_OS="pix_os" lastCompiled="0" lastInstalled="0" lastModified="0" platform="pix" version="8.3" name="asa5505" comment="Created during import of line 5" ro="False">
|
||||
<NAT id="id353" name="NAT" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<ObjectGroup id="id340" name="Firewalls" comment="" ro="False">
|
||||
<Firewall id="id341" host_OS="pix_os" lastCompiled="0" lastInstalled="0" lastModified="0" platform="pix" version="8.3" name="asa5505" comment="Created during import of line 5" ro="False">
|
||||
<NAT id="id357" name="NAT" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<RuleSetOptions/>
|
||||
</NAT>
|
||||
<Policy id="id339" name="Policy" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<PolicyRule id="id341" disabled="False" group="" log="False" position="0" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 304">
|
||||
<Policy id="id343" name="Policy" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<PolicyRule id="id345" disabled="False" group="" log="False" position="0" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 304">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -844,10 +848,10 @@
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id233"/>
|
||||
<ServiceRef ref="id237"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id357"/>
|
||||
<ObjectRef ref="id361"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -858,17 +862,17 @@
|
||||
</PolicyRule>
|
||||
<RuleSetOptions/>
|
||||
</Policy>
|
||||
<Routing id="id355" name="Routing" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<Routing id="id359" name="Routing" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<RuleSetOptions/>
|
||||
</Routing>
|
||||
<Interface id="id357" dedicated_failover="False" dyn="True" label="inside" security_level="100" unnum="False" unprotected="False" name="Vlan1" comment="inside interface " ro="False">
|
||||
<Interface id="id361" dedicated_failover="False" dyn="True" label="inside" security_level="100" unnum="False" unprotected="False" name="Vlan1" comment="inside interface " ro="False">
|
||||
<InterfaceOptions/>
|
||||
</Interface>
|
||||
<Interface id="id359" dedicated_failover="False" dyn="False" label="outside" security_level="0" unnum="False" unprotected="False" name="Vlan2" comment="outside interface " ro="False">
|
||||
<IPv4 id="id360" name="asa5505:Vlan2:ip" comment="Created during import of line 16" ro="False" address="192.168.2.1" netmask="255.255.255.0"/>
|
||||
<Interface id="id363" dedicated_failover="False" dyn="False" label="outside" security_level="0" unnum="False" unprotected="False" name="Vlan2" comment="outside interface " ro="False">
|
||||
<IPv4 id="id364" name="asa5505:Vlan2:ip" comment="Created during import of line 16" ro="False" address="192.168.2.1" netmask="255.255.255.0"/>
|
||||
<InterfaceOptions/>
|
||||
</Interface>
|
||||
<Interface id="id362" dedicated_failover="False" dyn="False" security_level="0" unnum="True" unprotected="False" name="Ethernet0/0" comment="Switch port 0 / 0 " ro="False">
|
||||
<Interface id="id366" dedicated_failover="False" dyn="False" security_level="0" unnum="True" unprotected="False" name="Ethernet0/0" comment="Switch port 0 / 0 " ro="False">
|
||||
<InterfaceOptions/>
|
||||
</Interface>
|
||||
<FirewallOptions>
|
||||
@ -889,7 +893,7 @@
|
||||
</FirewallOptions>
|
||||
</Firewall>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="id364" name="Clusters" comment="" ro="False"/>
|
||||
<IntervalGroup id="id365" name="Time" comment="" ro="False"/>
|
||||
<ObjectGroup id="id368" name="Clusters" comment="" ro="False"/>
|
||||
<IntervalGroup id="id369" name="Time" comment="" ro="False"/>
|
||||
</Library>
|
||||
</FWObjectDatabase>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE FWObjectDatabase SYSTEM "fwbuilder.dtd">
|
||||
<FWObjectDatabase xmlns="http://www.fwbuilder.org/1.0/" version="18" lastModified="1302055569" id="root">
|
||||
<FWObjectDatabase xmlns="http://www.fwbuilder.org/1.0/" version="18" lastModified="1302056910" id="root">
|
||||
<Library id="syslib000" color="#d4f8ff" name="Standard" comment="Standard objects" ro="True">
|
||||
<AnyNetwork id="sysid0" name="Any" comment="Any Network" ro="False" address="0.0.0.0" netmask="0.0.0.0"/>
|
||||
<AnyIPService id="sysid1" protocol_num="0" name="Any" comment="Any IP Service" ro="False"/>
|
||||
@ -441,99 +441,144 @@
|
||||
<IPv4 id="id9" name="h-10.0.0.253" comment="Created during import of line 80" ro="False" address="10.0.0.253" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id10" name="h-10.0.0.254" comment="Created during import of line 81" ro="False" address="10.0.0.254" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id11" name="h-10.1.1.43" comment="Created during import of line 106" ro="False" address="10.1.1.43" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id12" name="h-192.0.2.10" comment="Created during import of line 136" ro="False" address="192.0.2.10" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id13" name="h-192.0.2.11" comment="Created during import of line 137" ro="False" address="192.0.2.11" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id14" name="h-192.0.2.15" comment="Created during import of line 137" ro="False" address="192.0.2.15" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id15" name="h-192.0.2.128" comment="Created during import of line 138" ro="False" address="192.0.2.128" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id16" name="h-10.0.0.128" comment="Created during import of line 139" ro="False" address="10.0.0.128" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id17" name="h-10.1.1.1" comment="Created during import of line 141" ro="False" address="10.1.1.1" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id18" name="h-255.255.255.255" comment="Created during import of line 141" ro="False" address="255.255.255.255" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id19" name="h-10.1.1.32" comment="Created during import of line 142" ro="False" address="10.1.1.32" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id20" name="h-255.255.255.240" comment="Created during import of line 142" ro="False" address="255.255.255.240" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id21" name="h-10.0.0.16" comment="Created during import of line 145" ro="False" address="10.0.0.16" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id22" name="h-10.1.1.16" comment="Created during import of line 145" ro="False" address="10.1.1.16" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id23" name="h-10.0.0.100" comment="Created during import of line 146" ro="False" address="10.0.0.100" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id24" name="h-10.1.1.100" comment="Created during import of line 146" ro="False" address="10.1.1.100" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id25" name="h-10.1.1.111" comment="Created during import of line 147" ro="False" address="10.1.1.111" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id26" name="h-10.5.80.16" comment="Created during import of line 148" ro="False" address="10.5.80.16" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id27" name="h-10.5.80.200" comment="Created during import of line 149" ro="False" address="10.5.80.200" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id28" name="h-10.10.1.200" comment="Created during import of line 149" ro="False" address="10.10.1.200" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id29" name="h-192.0.2.100" comment="Created during import of line 202" ro="False" address="192.0.2.100" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id12" name="h-10.1.1.1" comment="Created during import of line 141" ro="False" address="10.1.1.1" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id13" name="h-192.0.2.10" comment="Created during import of line 141" ro="False" address="192.0.2.10" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id14" name="h-10.1.1.16" comment="Created during import of line 145" ro="False" address="10.1.1.16" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id15" name="h-10.0.0.100" comment="Created during import of line 146" ro="False" address="10.0.0.100" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id16" name="h-10.1.1.100" comment="Created during import of line 146" ro="False" address="10.1.1.100" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id17" name="h-10.1.1.111" comment="Created during import of line 147" ro="False" address="10.1.1.111" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id18" name="h-10.5.80.200" comment="Created during import of line 149" ro="False" address="10.5.80.200" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id19" name="h-10.10.1.200" comment="Created during import of line 149" ro="False" address="10.10.1.200" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id20" name="h-192.0.2.100" comment="Created during import of line 202" ro="False" address="192.0.2.100" netmask="255.255.255.255"/>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="id30" name="DNS Names" comment="" ro="False"/>
|
||||
<ObjectGroup id="id31" name="Address Tables" comment="" ro="False"/>
|
||||
<ObjectGroup id="id32" name="Groups" comment="" ro="False">
|
||||
<ObjectGroup id="id33" name="outside.id12051X6282.src.net.0" comment="Created during import of line 71" ro="False">
|
||||
<ObjectGroup id="id21" name="DNS Names" comment="" ro="False"/>
|
||||
<ObjectGroup id="id22" name="Address Tables" comment="" ro="False"/>
|
||||
<ObjectGroup id="id23" name="Groups" comment="" ro="False">
|
||||
<ObjectGroup id="id24" name="outside.id12051X6282.src.net.0" comment="Created during import of line 71" ro="False">
|
||||
<ObjectRef ref="id3"/>
|
||||
<ObjectRef ref="id4"/>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="id36" name="outside.id12051X6282.src.net.1" comment="Created during import of line 74" ro="False">
|
||||
<ObjectGroup id="id27" name="outside.id12051X6282.src.net.1" comment="Created during import of line 74" ro="False">
|
||||
<ObjectRef ref="id5"/>
|
||||
<ObjectRef ref="id6"/>
|
||||
<ObjectRef ref="id7"/>
|
||||
<ObjectRef ref="id8"/>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="id41" name="outside.id12051X6282.src.net.2" comment="Created during import of line 79" ro="False">
|
||||
<ObjectGroup id="id32" name="outside.id12051X6282.src.net.2" comment="Created during import of line 79" ro="False">
|
||||
<ObjectRef ref="id9"/>
|
||||
<ObjectRef ref="id10"/>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="id44" name="network-zone-inside" comment="Created during import of line 83" ro="False">
|
||||
<ObjectRef ref="id50"/>
|
||||
<ObjectGroup id="id35" name="network-zone-inside" comment="Created during import of line 83" ro="False">
|
||||
<ObjectRef ref="id41"/>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="id46" name="network-zone-dmz20" comment="Created during import of line 85" ro="False">
|
||||
<ObjectRef ref="id51"/>
|
||||
<ObjectGroup id="id37" name="network-zone-dmz20" comment="Created during import of line 85" ro="False">
|
||||
<ObjectRef ref="id42"/>
|
||||
</ObjectGroup>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="id48" name="Hosts" comment="" ro="False"/>
|
||||
<ObjectGroup id="id49" name="Networks" comment="" ro="False">
|
||||
<Network id="id50" name="net-10.1.1.0/255.255.255.0" comment="Created during import of line 84" ro="False" address="10.1.1.0" netmask="255.255.255.0"/>
|
||||
<Network id="id51" name="net-10.0.0.0/255.255.255.0" comment="Created during import of line 86" ro="False" address="10.0.0.0" netmask="255.255.255.0"/>
|
||||
<Network id="id52" name="net-192.0.2.128/255.255.255.240" comment="" ro="False" address="192.0.2.128" netmask="255.255.255.240"/>
|
||||
<Network id="id53" name="net-10.0.0.128/255.255.255.240" comment="" ro="False" address="10.0.0.128" netmask="255.255.255.240"/>
|
||||
<Network id="id54" name="net-10.1.1.32/255.255.255.240" comment="Created during import of line 142" ro="False" address="10.1.1.32" netmask="255.255.255.240"/>
|
||||
<Network id="id55" name="net-10.0.0.16/255.255.255.240" comment="Created during import of line 145" ro="False" address="10.0.0.16" netmask="255.255.255.240"/>
|
||||
<Network id="id56" name="net-10.5.80.16/255.255.255.240" comment="Created during import of line 148" ro="False" address="10.5.80.16" netmask="255.255.255.240"/>
|
||||
<Network id="id57" name="net-10.1.2.0/255.255.255.0" comment="Created during import of line 201" ro="False" address="10.1.2.0" netmask="255.255.255.0"/>
|
||||
<ObjectGroup id="id39" name="Hosts" comment="" ro="False"/>
|
||||
<ObjectGroup id="id40" name="Networks" comment="" ro="False">
|
||||
<Network id="id41" name="net-10.1.1.0/255.255.255.0" comment="Created during import of line 84" ro="False" address="10.1.1.0" netmask="255.255.255.0"/>
|
||||
<Network id="id42" name="net-10.0.0.0/255.255.255.0" comment="Created during import of line 86" ro="False" address="10.0.0.0" netmask="255.255.255.0"/>
|
||||
<Network id="id43" name="net-192.0.2.128/255.255.255.240" comment="Created during import of line 141" ro="False" address="192.0.2.128" netmask="255.255.255.240"/>
|
||||
<Network id="id44" name="net-10.0.0.128/255.255.255.240" comment="Created during import of line 141" ro="False" address="10.0.0.128" netmask="255.255.255.240"/>
|
||||
<Network id="id45" name="net-10.1.1.32/255.255.255.240" comment="Created during import of line 142" ro="False" address="10.1.1.32" netmask="255.255.255.240"/>
|
||||
<Network id="id46" name="net-10.0.0.16/255.255.255.240" comment="Created during import of line 145" ro="False" address="10.0.0.16" netmask="255.255.255.240"/>
|
||||
<Network id="id47" name="net-10.5.80.16/255.255.255.240" comment="Created during import of line 148" ro="False" address="10.5.80.16" netmask="255.255.255.240"/>
|
||||
<Network id="id48" name="net-10.1.2.0/255.255.255.0" comment="Created during import of line 201" ro="False" address="10.1.2.0" netmask="255.255.255.0"/>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="id58" name="Address Ranges" comment="" ro="False">
|
||||
<AddressRange id="id59" name="range-192.0.2.11-192.0.2.15" comment="" ro="False" start_address="192.0.2.11" end_address="192.0.2.15"/>
|
||||
<ObjectGroup id="id49" name="Address Ranges" comment="" ro="False">
|
||||
<AddressRange id="id50" name="range-192.0.2.11-192.0.2.15" comment="Created during import of line 141" ro="False" start_address="192.0.2.11" end_address="192.0.2.15"/>
|
||||
</ObjectGroup>
|
||||
</ObjectGroup>
|
||||
<ServiceGroup id="id60" name="Services" comment="" ro="False">
|
||||
<ServiceGroup id="id61" name="Groups" comment="" ro="False"/>
|
||||
<ServiceGroup id="id62" name="ICMP" comment="" ro="False"/>
|
||||
<ServiceGroup id="id63" name="IP" comment="" ro="False">
|
||||
<IPService id="id64" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="0" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip" comment="Created during import of line 89" ro="False"/>
|
||||
<ServiceGroup id="id51" name="Services" comment="" ro="False">
|
||||
<ServiceGroup id="id52" name="Groups" comment="" ro="False"/>
|
||||
<ServiceGroup id="id53" name="ICMP" comment="" ro="False"/>
|
||||
<ServiceGroup id="id54" name="IP" comment="" ro="False">
|
||||
<IPService id="id55" any_opt="False" dscp="" fragm="False" lsrr="False" protocol_num="0" rr="False" rtralt="False" rtralt_value="False" short_fragm="False" ssrr="False" tos="" ts="False" name="ip" comment="Created during import of line 89" ro="False"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id65" name="TCP" comment="" ro="False">
|
||||
<TCPService id="id66" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 80:80 / 0:0" comment="Created during import of line 106" ro="False" src_range_start="80" src_range_end="80" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id67" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 80:80" comment="Created during import of line 148" ro="False" src_range_start="0" src_range_end="0" dst_range_start="80" dst_range_end="80"/>
|
||||
<TCPService id="id68" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 8080:8080" comment="Created during import of line 148" ro="False" src_range_start="0" src_range_end="0" dst_range_start="8080" dst_range_end="8080"/>
|
||||
<TCPService id="id69" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 0:0" comment="Created during import of line 151" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id70" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 22:22" comment="Created during import of line 200" ro="False" src_range_start="0" src_range_end="0" dst_range_start="22" dst_range_end="22"/>
|
||||
<ServiceGroup id="id56" name="TCP" comment="" ro="False">
|
||||
<TCPService id="id57" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 80:80 / 0:0" comment="Created during import of line 106" ro="False" src_range_start="80" src_range_end="80" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id58" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 80:80" comment="Created during import of line 148" ro="False" src_range_start="0" src_range_end="0" dst_range_start="80" dst_range_end="80"/>
|
||||
<TCPService id="id59" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 8080:8080" comment="Created during import of line 148" ro="False" src_range_start="0" src_range_end="0" dst_range_start="8080" dst_range_end="8080"/>
|
||||
<TCPService id="id60" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 0:0" comment="Created during import of line 151" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="0"/>
|
||||
<TCPService id="id61" ack_flag="False" ack_flag_mask="False" established="False" fin_flag="False" fin_flag_mask="False" psh_flag="False" psh_flag_mask="False" rst_flag="False" rst_flag_mask="False" syn_flag="False" syn_flag_mask="False" urg_flag="False" urg_flag_mask="False" name="tcp 0:0 / 22:22" comment="Created during import of line 200" ro="False" src_range_start="0" src_range_end="0" dst_range_start="22" dst_range_end="22"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id71" name="UDP" comment="" ro="False">
|
||||
<UDPService id="id72" name="udp 0:0 / 53:53" comment="Created during import of line 93" ro="False" src_range_start="0" src_range_end="0" dst_range_start="53" dst_range_end="53"/>
|
||||
<ServiceGroup id="id62" name="UDP" comment="" ro="False">
|
||||
<UDPService id="id63" name="udp 0:0 / 53:53" comment="Created during import of line 93" ro="False" src_range_start="0" src_range_end="0" dst_range_start="53" dst_range_end="53"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id73" name="Users" comment="" ro="False"/>
|
||||
<ServiceGroup id="id74" name="Custom" comment="" ro="False"/>
|
||||
<ServiceGroup id="id75" name="TagServices" comment="" ro="False"/>
|
||||
<ServiceGroup id="id64" name="Users" comment="" ro="False"/>
|
||||
<ServiceGroup id="id65" name="Custom" comment="" ro="False"/>
|
||||
<ServiceGroup id="id66" name="TagServices" comment="" ro="False"/>
|
||||
</ServiceGroup>
|
||||
<ObjectGroup id="id76" name="Firewalls" comment="" ro="False">
|
||||
<Firewall id="id77" host_OS="pix_os" lastCompiled="0" lastInstalled="0" lastModified="0" platform="pix" version="7.0" name="pix1" comment="Created during import of line 6" ro="False">
|
||||
<NAT id="id285" name="NAT" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<NATRule id="id288" disabled="False" group="" position="0" action="Translate" comment="Created during import of line 134">
|
||||
<ObjectGroup id="id67" name="Firewalls" comment="" ro="False">
|
||||
<Firewall id="id68" host_OS="pix_os" lastCompiled="0" lastInstalled="0" lastModified="0" platform="pix" version="7.0" name="pix1" comment="Created during import of line 6" ro="False">
|
||||
<NAT id="id276" name="NAT" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<NATRule id="id279" disabled="False" group="" position="0" action="Translate" comment="Created during import of line 134">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="id41"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="id589"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</TDst>
|
||||
<TSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id589"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id297" disabled="False" group="" position="1" action="Translate" comment="Created during import of line 141">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="id12"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="id13"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</TDst>
|
||||
<TSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id589"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id315" disabled="False" group="" position="2" action="Translate" comment="Created during import of line 141">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="id12"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="id50"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
@ -542,43 +587,16 @@
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id589"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id306" disabled="False" group="" position="1" action="Translate" comment="Created during import of line 141">
|
||||
<NATRule id="id333" disabled="False" group="" position="3" action="Translate" comment="Created during import of line 141">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="id12"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</TDst>
|
||||
<TSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id324" disabled="False" group="" position="2" action="Translate" comment="Created during import of line 141">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
@ -587,7 +605,7 @@
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="id59"/>
|
||||
<ObjectRef ref="id43"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
@ -596,97 +614,16 @@
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id589"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id342" disabled="False" group="" position="3" action="Translate" comment="Created during import of line 141">
|
||||
<NATRule id="id351" disabled="False" group="" position="4" action="Translate" comment="Created during import of line 141">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="id52"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</TDst>
|
||||
<TSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id360" disabled="False" group="" position="4" action="Translate" comment="Created during import of line 141">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="id53"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</TDst>
|
||||
<TSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id601"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id378" disabled="False" group="" position="5" action="Translate" comment="Created during import of line 142">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="id54"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="id12"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</TDst>
|
||||
<TSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id396" disabled="False" group="" position="6" action="Translate" comment="Created during import of line 142">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="id54"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
@ -695,7 +632,7 @@
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="id59"/>
|
||||
<ObjectRef ref="id44"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
@ -704,16 +641,16 @@
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id592"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id414" disabled="False" group="" position="7" action="Translate" comment="Created during import of line 142">
|
||||
<NATRule id="id369" disabled="False" group="" position="5" action="Translate" comment="Created during import of line 142">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="id54"/>
|
||||
<ObjectRef ref="id45"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
@ -722,7 +659,7 @@
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="id52"/>
|
||||
<ObjectRef ref="id13"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
@ -731,16 +668,16 @@
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id589"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id432" disabled="False" group="" position="8" action="Translate" comment="Created during import of line 142">
|
||||
<NATRule id="id387" disabled="False" group="" position="6" action="Translate" comment="Created during import of line 142">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="id54"/>
|
||||
<ObjectRef ref="id45"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
@ -749,7 +686,7 @@
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="id53"/>
|
||||
<ObjectRef ref="id50"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
@ -758,19 +695,73 @@
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id601"/>
|
||||
<ObjectRef ref="id589"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id450" disabled="False" group="" position="9" action="Translate" comment="Created during import of line 145">
|
||||
<NATRule id="id405" disabled="False" group="" position="7" action="Translate" comment="Created during import of line 142">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="id45"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="id43"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</TDst>
|
||||
<TSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id589"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id423" disabled="False" group="" position="8" action="Translate" comment="Created during import of line 142">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="id45"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="id44"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</TDst>
|
||||
<TSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id592"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id441" disabled="False" group="" position="9" action="Translate" comment="Created during import of line 145">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="id55"/>
|
||||
<ObjectRef ref="id46"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
@ -779,25 +770,25 @@
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="id22"/>
|
||||
<ObjectRef ref="id14"/>
|
||||
</TDst>
|
||||
<TSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id601"/>
|
||||
<ObjectRef ref="id592"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id468" disabled="False" group="" position="10" action="Translate" comment="Created during import of line 146">
|
||||
<NATRule id="id459" disabled="False" group="" position="10" action="Translate" comment="Created during import of line 146">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="id23"/>
|
||||
<ObjectRef ref="id15"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
@ -806,25 +797,25 @@
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="id24"/>
|
||||
<ObjectRef ref="id16"/>
|
||||
</TDst>
|
||||
<TSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id601"/>
|
||||
<ObjectRef ref="id592"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id486" disabled="False" group="" position="11" action="Translate" comment="Created during import of line 147">
|
||||
<NATRule id="id477" disabled="False" group="" position="11" action="Translate" comment="Created during import of line 147">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="id601"/>
|
||||
<ObjectRef ref="id592"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
@ -833,82 +824,82 @@
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="id25"/>
|
||||
<ObjectRef ref="id17"/>
|
||||
</TDst>
|
||||
<TSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id601"/>
|
||||
<ObjectRef ref="id592"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id504" disabled="False" group="" position="12" action="Translate" comment="Created during import of line 148">
|
||||
<NATRule id="id495" disabled="False" group="" position="12" action="Translate" comment="Created during import of line 148">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="id56"/>
|
||||
<ObjectRef ref="id47"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="id67"/>
|
||||
<ServiceRef ref="id58"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="id22"/>
|
||||
<ObjectRef ref="id14"/>
|
||||
</TDst>
|
||||
<TSrv neg="False">
|
||||
<ServiceRef ref="id68"/>
|
||||
<ServiceRef ref="id59"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id589"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id522" disabled="False" group="" position="13" action="Translate" comment="Created during import of line 149">
|
||||
<NATRule id="id513" disabled="False" group="" position="13" action="Translate" comment="Created during import of line 149">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="id27"/>
|
||||
<ObjectRef ref="id18"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="id67"/>
|
||||
<ServiceRef ref="id58"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</TSrc>
|
||||
<TDst neg="False">
|
||||
<ObjectRef ref="id28"/>
|
||||
<ObjectRef ref="id19"/>
|
||||
</TDst>
|
||||
<TSrv neg="False">
|
||||
<ServiceRef ref="id68"/>
|
||||
<ServiceRef ref="id59"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id589"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id540" disabled="False" group="" position="14" action="Translate" comment="Created during import of line 151">
|
||||
<NATRule id="id531" disabled="False" group="" position="14" action="Translate" comment="Created during import of line 151">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id589"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="id67"/>
|
||||
<ServiceRef ref="id58"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
@ -917,25 +908,25 @@
|
||||
<ObjectRef ref="id11"/>
|
||||
</TDst>
|
||||
<TSrv neg="False">
|
||||
<ServiceRef ref="id69"/>
|
||||
<ServiceRef ref="id60"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id589"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id558" disabled="False" group="" position="15" action="Translate" comment="Created during import of line 152">
|
||||
<NATRule id="id549" disabled="False" group="" position="15" action="Translate" comment="Created during import of line 152">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id589"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="id67"/>
|
||||
<ServiceRef ref="id58"/>
|
||||
</OSrv>
|
||||
<TSrc neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
@ -944,22 +935,22 @@
|
||||
<ObjectRef ref="id11"/>
|
||||
</TDst>
|
||||
<TSrv neg="False">
|
||||
<ServiceRef ref="id69"/>
|
||||
<ServiceRef ref="id60"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id589"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<NATRule id="id576" disabled="False" group="" position="16" action="Translate" comment="Created during import of line 153">
|
||||
<NATRule id="id567" disabled="False" group="" position="16" action="Translate" comment="Created during import of line 153">
|
||||
<OSrc neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</OSrc>
|
||||
<ODst neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id589"/>
|
||||
</ODst>
|
||||
<OSrv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
@ -974,28 +965,28 @@
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</TSrv>
|
||||
<ItfInb neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id589"/>
|
||||
</ItfInb>
|
||||
<ItfOutb neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</ItfOutb>
|
||||
<NATRuleOptions/>
|
||||
</NATRule>
|
||||
<RuleSetOptions/>
|
||||
</NAT>
|
||||
<Policy id="id79" name="Policy" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<PolicyRule id="id81" disabled="False" group="" log="False" position="0" action="Accept" direction="Inbound" comment="Imported from ssh_commands_outside Created during import of line 202">
|
||||
<Policy id="id70" name="Policy" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<PolicyRule id="id72" disabled="False" group="" log="False" position="0" action="Accept" direction="Inbound" comment="Imported from ssh_commands_outside Created during import of line 202">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id29"/>
|
||||
<ObjectRef ref="id20"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="id77"/>
|
||||
<ObjectRef ref="id68"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id70"/>
|
||||
<ServiceRef ref="id61"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id589"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1004,225 +995,18 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id93" disabled="False" group="" log="False" position="1" action="Accept" direction="Inbound" comment="Imported from ssh_commands_inside Created during import of line 200">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id50"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="id77"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id70"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id105" disabled="False" group="" log="False" position="2" action="Accept" direction="Inbound" comment="Imported from ssh_commands_inside Created during import of line 201">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id57"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="id77"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id70"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id117" disabled="False" group="" log="True" position="3" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 98">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="id33"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id64"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="log_level">warning</Option>
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id129" disabled="False" group="" log="True" position="4" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 99">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="id36"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id64"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="log_level">warning</Option>
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id141" disabled="False" group="" log="True" position="5" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 100">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="id41"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id64"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="log_level">warning</Option>
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id153" disabled="False" group="" log="False" position="6" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 101">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id50"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id64"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id165" disabled="False" group="" log="True" position="7" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 102">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id64"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="log_level">warning</Option>
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id177" disabled="False" group="" log="True" position="8" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 93">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id33"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="id50"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id72"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="log_level">warning</Option>
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id189" disabled="False" group="" log="True" position="9" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 94">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id36"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="id50"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id72"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="log_level">warning</Option>
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id201" disabled="False" group="" log="True" position="10" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 95">
|
||||
<PolicyRule id="id84" disabled="False" group="" log="False" position="1" action="Accept" direction="Inbound" comment="Imported from ssh_commands_inside Created during import of line 200">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id41"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="id50"/>
|
||||
<ObjectRef ref="id68"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id72"/>
|
||||
<ServiceRef ref="id61"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="log_level">warning</Option>
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id213" disabled="False" group="" log="False" position="11" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 96">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id50"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id64"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1231,18 +1015,38 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id225" disabled="False" group="" log="True" position="12" action="Deny" direction="Outbound" comment="Imported from inside_out Created during import of line 97">
|
||||
<PolicyRule id="id96" disabled="False" group="" log="False" position="2" action="Accept" direction="Inbound" comment="Imported from ssh_commands_inside Created during import of line 201">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id48"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="id68"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id61"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id595"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id108" disabled="False" group="" log="True" position="3" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 98">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
<ObjectRef ref="id24"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id64"/>
|
||||
<ServiceRef ref="id55"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id604"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1252,18 +1056,18 @@
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id237" disabled="False" group="" log="True" position="13" action="Deny" direction="Inbound" comment="Imported from outside_in Created during import of line 89">
|
||||
<PolicyRule id="id120" disabled="False" group="" log="True" position="4" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 99">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id33"/>
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
<ObjectRef ref="id27"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id64"/>
|
||||
<ServiceRef ref="id55"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1273,18 +1077,18 @@
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id249" disabled="False" group="" log="True" position="14" action="Deny" direction="Inbound" comment="Imported from outside_in Created during import of line 90">
|
||||
<PolicyRule id="id132" disabled="False" group="" log="True" position="5" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 100">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id36"/>
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
<ObjectRef ref="id32"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id64"/>
|
||||
<ServiceRef ref="id55"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1294,7 +1098,7 @@
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id261" disabled="False" group="" log="True" position="15" action="Deny" direction="Inbound" comment="Imported from outside_in Created during import of line 91">
|
||||
<PolicyRule id="id144" disabled="False" group="" log="False" position="6" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 101">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id41"/>
|
||||
</Src>
|
||||
@ -1302,10 +1106,30 @@
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id64"/>
|
||||
<ServiceRef ref="id55"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id156" disabled="False" group="" log="True" position="7" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 102">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id55"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id595"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1315,18 +1139,185 @@
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id273" disabled="False" group="" log="True" position="16" action="Deny" direction="Inbound" comment="Imported from outside_in Created during import of line 92">
|
||||
<PolicyRule id="id168" disabled="False" group="" log="True" position="8" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 93">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id50"/>
|
||||
<ObjectRef ref="id24"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="id41"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id63"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id595"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="log_level">warning</Option>
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id180" disabled="False" group="" log="True" position="9" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 94">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id27"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="id41"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id63"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id595"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="log_level">warning</Option>
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id192" disabled="False" group="" log="True" position="10" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 95">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id32"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="id41"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id63"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id595"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="log_level">warning</Option>
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id204" disabled="False" group="" log="False" position="11" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 96">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id41"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id64"/>
|
||||
<ServiceRef ref="id55"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id598"/>
|
||||
<ObjectRef ref="id595"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id216" disabled="False" group="" log="True" position="12" action="Deny" direction="Outbound" comment="Imported from inside_out Created during import of line 97">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id55"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id595"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="log_level">warning</Option>
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id228" disabled="False" group="" log="True" position="13" action="Deny" direction="Inbound" comment="Imported from outside_in Created during import of line 89">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id24"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id55"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id589"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="log_level">warning</Option>
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id240" disabled="False" group="" log="True" position="14" action="Deny" direction="Inbound" comment="Imported from outside_in Created during import of line 90">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id27"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id55"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id589"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="log_level">warning</Option>
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id252" disabled="False" group="" log="True" position="15" action="Deny" direction="Inbound" comment="Imported from outside_in Created during import of line 91">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id32"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id55"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id589"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="log_level">warning</Option>
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id264" disabled="False" group="" log="True" position="16" action="Deny" direction="Inbound" comment="Imported from outside_in Created during import of line 92">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id41"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id55"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id589"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1338,28 +1329,28 @@
|
||||
</PolicyRule>
|
||||
<RuleSetOptions/>
|
||||
</Policy>
|
||||
<Routing id="id594" name="Routing" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<Routing id="id585" name="Routing" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<RuleSetOptions/>
|
||||
</Routing>
|
||||
<Interface id="id596" dedicated_failover="False" dyn="False" security_level="0" unnum="True" unprotected="False" name="Ethernet0" comment="Created during import of line 16" ro="False">
|
||||
<Interface id="id587" dedicated_failover="False" dyn="False" security_level="0" unnum="True" unprotected="False" name="Ethernet0" comment="Created during import of line 16" ro="False">
|
||||
<InterfaceOptions/>
|
||||
<Interface id="id598" dedicated_failover="False" dyn="False" label="outside" security_level="0" unnum="False" unprotected="False" name="Ethernet0.101" comment="Created during import of line 21" ro="False">
|
||||
<IPv4 id="id600" name="pix1:Ethernet0.101:ip" comment="Created during import of line 24" ro="False" address="192.0.2.253" netmask="255.255.255.0"/>
|
||||
<Interface id="id589" dedicated_failover="False" dyn="False" label="outside" security_level="0" unnum="False" unprotected="False" name="Ethernet0.101" comment="Created during import of line 21" ro="False">
|
||||
<IPv4 id="id591" name="pix1:Ethernet0.101:ip" comment="Created during import of line 24" ro="False" address="192.0.2.253" netmask="255.255.255.0"/>
|
||||
<InterfaceOptions>
|
||||
<Option name="type">8021q</Option>
|
||||
<Option name="vlan_id">101</Option>
|
||||
</InterfaceOptions>
|
||||
</Interface>
|
||||
<Interface id="id601" dedicated_failover="False" dyn="False" label="dmz20" security_level="20" unnum="False" unprotected="False" name="Ethernet0.102" comment="Created during import of line 27" ro="False">
|
||||
<IPv4 id="id603" name="pix1:Ethernet0.102:ip" comment="Created during import of line 30" ro="False" address="10.0.0.253" netmask="255.255.255.0"/>
|
||||
<Interface id="id592" dedicated_failover="False" dyn="False" label="dmz20" security_level="20" unnum="False" unprotected="False" name="Ethernet0.102" comment="Created during import of line 27" ro="False">
|
||||
<IPv4 id="id594" name="pix1:Ethernet0.102:ip" comment="Created during import of line 30" ro="False" address="10.0.0.253" netmask="255.255.255.0"/>
|
||||
<InterfaceOptions>
|
||||
<Option name="type">8021q</Option>
|
||||
<Option name="vlan_id">102</Option>
|
||||
</InterfaceOptions>
|
||||
</Interface>
|
||||
</Interface>
|
||||
<Interface id="id604" dedicated_failover="False" dyn="False" label="inside" security_level="100" unnum="False" unprotected="False" name="Ethernet1" comment="Created during import of line 33" ro="False">
|
||||
<IPv4 id="id605" name="pix1:Ethernet1:ip" comment="Created during import of line 37" ro="False" address="10.1.1.206" netmask="255.255.255.0"/>
|
||||
<Interface id="id595" dedicated_failover="False" dyn="False" label="inside" security_level="100" unnum="False" unprotected="False" name="Ethernet1" comment="Created during import of line 33" ro="False">
|
||||
<IPv4 id="id596" name="pix1:Ethernet1:ip" comment="Created during import of line 37" ro="False" address="10.1.1.206" netmask="255.255.255.0"/>
|
||||
<InterfaceOptions/>
|
||||
</Interface>
|
||||
<FirewallOptions>
|
||||
@ -1380,7 +1371,7 @@
|
||||
</FirewallOptions>
|
||||
</Firewall>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="id607" name="Clusters" comment="" ro="False"/>
|
||||
<IntervalGroup id="id608" name="Time" comment="" ro="False"/>
|
||||
<ObjectGroup id="id598" name="Clusters" comment="" ro="False"/>
|
||||
<IntervalGroup id="id599" name="Time" comment="" ro="False"/>
|
||||
</Library>
|
||||
</FWObjectDatabase>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user