mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-24 20:27:22 +01:00
see #2300 fix import of access list with both source and destination in-line port matches
This commit is contained in:
parent
46cf58e1ff
commit
83e1804872
@ -529,7 +529,7 @@ void PIXCfgLexer::mNEWLINE(bool _createToken) {
|
||||
|
||||
}
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2327 "pix.g"
|
||||
#line 2335 "pix.g"
|
||||
newline();
|
||||
#line 535 "PIXCfgLexer.cpp"
|
||||
}
|
||||
@ -653,7 +653,7 @@ void PIXCfgLexer::mWhitespace(bool _createToken) {
|
||||
}
|
||||
}
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2322 "pix.g"
|
||||
#line 2330 "pix.g"
|
||||
_ttype = ANTLR_USE_NAMESPACE(antlr)Token::SKIP;
|
||||
#line 659 "PIXCfgLexer.cpp"
|
||||
}
|
||||
@ -804,7 +804,7 @@ void PIXCfgLexer::mNUMBER_ADDRESS_OR_WORD(bool _createToken) {
|
||||
match("oup");
|
||||
}
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2379 "pix.g"
|
||||
#line 2387 "pix.g"
|
||||
_ttype = OBJECT_GROUP;
|
||||
#line 810 "PIXCfgLexer.cpp"
|
||||
}
|
||||
@ -812,7 +812,7 @@ void PIXCfgLexer::mNUMBER_ADDRESS_OR_WORD(bool _createToken) {
|
||||
else {
|
||||
match("");
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2381 "pix.g"
|
||||
#line 2389 "pix.g"
|
||||
_ttype = OBJECT;
|
||||
#line 818 "PIXCfgLexer.cpp"
|
||||
}
|
||||
@ -966,7 +966,7 @@ void PIXCfgLexer::mNUMBER_ADDRESS_OR_WORD(bool _createToken) {
|
||||
} // ( ... )+
|
||||
}
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2372 "pix.g"
|
||||
#line 2380 "pix.g"
|
||||
_ttype = IPV6;
|
||||
#line 972 "PIXCfgLexer.cpp"
|
||||
}
|
||||
@ -1113,7 +1113,7 @@ void PIXCfgLexer::mNUMBER_ADDRESS_OR_WORD(bool _createToken) {
|
||||
} // ( ... )+
|
||||
}
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2360 "pix.g"
|
||||
#line 2368 "pix.g"
|
||||
_ttype = IPV4;
|
||||
#line 1119 "PIXCfgLexer.cpp"
|
||||
}
|
||||
@ -1196,7 +1196,7 @@ void PIXCfgLexer::mNUMBER_ADDRESS_OR_WORD(bool _createToken) {
|
||||
} // ( ... )+
|
||||
}
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2363 "pix.g"
|
||||
#line 2371 "pix.g"
|
||||
_ttype = NUMBER;
|
||||
#line 1202 "PIXCfgLexer.cpp"
|
||||
}
|
||||
@ -1217,7 +1217,7 @@ void PIXCfgLexer::mNUMBER_ADDRESS_OR_WORD(bool _createToken) {
|
||||
_loop326:;
|
||||
} // ( ... )+
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2365 "pix.g"
|
||||
#line 2373 "pix.g"
|
||||
_ttype = INT_CONST;
|
||||
#line 1223 "PIXCfgLexer.cpp"
|
||||
}
|
||||
@ -1479,7 +1479,7 @@ void PIXCfgLexer::mNUMBER_ADDRESS_OR_WORD(bool _createToken) {
|
||||
_loop346:;
|
||||
} // ( ... )*
|
||||
if ( inputState->guessing==0 ) {
|
||||
#line 2390 "pix.g"
|
||||
#line 2398 "pix.g"
|
||||
_ttype = WORD;
|
||||
#line 1485 "PIXCfgLexer.cpp"
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -207,9 +207,9 @@ names_section : NAMES
|
||||
{
|
||||
importer->setCurrentLineNumber(LT(0)->getLine());
|
||||
importer->addMessageToLog(
|
||||
"Parser warning: \"names\" section detected. "
|
||||
"Import of configuration that uses \"names\" "
|
||||
"is not supported at this time");
|
||||
QString("Parser warning: \"names\" section detected. "
|
||||
"Import of configuration that uses \"names\" "
|
||||
"is not supported at this time"));
|
||||
}
|
||||
;
|
||||
|
||||
@ -225,7 +225,7 @@ name_entry : NAME (a:IPV4 | v6:IPV6) n:WORD
|
||||
if (v6)
|
||||
{
|
||||
importer->addMessageToLog(
|
||||
"Parser warning: IPv6 import is not supported. ");
|
||||
QString("Parser warning: IPv6 import is not supported. "));
|
||||
consumeUntil(NEWLINE);
|
||||
}
|
||||
}
|
||||
@ -278,9 +278,9 @@ named_object_nat : nat_top_level_command
|
||||
{
|
||||
*dbg << "Named object with singleton nat command" << std::endl;
|
||||
importer->addMessageToLog(
|
||||
"Parser warning: "
|
||||
"Import of named objects with \"nat\" command "
|
||||
"is not supported at this time");
|
||||
QString("Parser warning: "
|
||||
"Import of named objects with \"nat\" command "
|
||||
"is not supported at this time"));
|
||||
consumeUntil(NEWLINE);
|
||||
}
|
||||
;
|
||||
@ -317,7 +317,7 @@ single_addr : (h:IPV4 | v6:IPV6)
|
||||
if (v6)
|
||||
{
|
||||
importer->addMessageToLog(
|
||||
"Parser warning: IPv6 import is not supported. ");
|
||||
QString("Parser warning: IPv6 import is not supported. "));
|
||||
consumeUntil(NEWLINE);
|
||||
}
|
||||
}
|
||||
@ -346,7 +346,7 @@ subnet_addr : (SUBNET ((a:IPV4 nm:IPV4) | v6:IPV6))
|
||||
if (v6)
|
||||
{
|
||||
importer->addMessageToLog(
|
||||
"Parser warning: IPv6 import is not supported. ");
|
||||
QString("Parser warning: IPv6 import is not supported. "));
|
||||
consumeUntil(NEWLINE);
|
||||
}
|
||||
}
|
||||
@ -407,9 +407,10 @@ service_icmp : SERVICE ICMP
|
||||
service_icmp6 : SERVICE ICMP6 (INT_CONST | WORD)
|
||||
{
|
||||
importer->setCurrentLineNumber(LT(0)->getLine());
|
||||
importer->addMessageToLog("Parser warning: "
|
||||
"Import of IPv6 addresses and servcies "
|
||||
"is not supported at this time");
|
||||
importer->addMessageToLog(
|
||||
QString("Parser warning: "
|
||||
"Import of IPv6 addresses and servcies "
|
||||
"is not supported at this time"));
|
||||
*dbg << "NAMED OBJECT SERVICE ICMP6 " << LT(0)->getText() << " ";
|
||||
consumeUntil(NEWLINE);
|
||||
}
|
||||
@ -537,7 +538,7 @@ network_object : NETWORK_OBJECT
|
||||
if (v6)
|
||||
{
|
||||
importer->addMessageToLog(
|
||||
"Parser warning: IPv6 import is not supported. ");
|
||||
QString("Parser warning: IPv6 import is not supported. "));
|
||||
consumeUntil(NEWLINE);
|
||||
}
|
||||
}
|
||||
@ -554,7 +555,7 @@ network_object : NETWORK_OBJECT
|
||||
if (hv6)
|
||||
{
|
||||
importer->addMessageToLog(
|
||||
"Parser warning: IPv6 import is not supported. ");
|
||||
QString("Parser warning: IPv6 import is not supported. "));
|
||||
consumeUntil(NEWLINE);
|
||||
}
|
||||
}
|
||||
@ -610,7 +611,7 @@ protocol_object : PROTOCOL_OBJECT
|
||||
ICMP6
|
||||
{
|
||||
importer->addMessageToLog(
|
||||
"Parser warning: IPv6 import is not supported. ");
|
||||
QString("Parser warning: IPv6 import is not supported. "));
|
||||
consumeUntil(NEWLINE);
|
||||
}
|
||||
|
|
||||
@ -1090,7 +1091,9 @@ acl_xoperator_dst : xoperator
|
||||
}
|
||||
;
|
||||
|
||||
xoperator : single_port_op | port_range ;
|
||||
xoperator { importer->tmp_port_spec = ""; } :
|
||||
single_port_op | port_range
|
||||
;
|
||||
|
||||
//****************************************************************
|
||||
|
||||
@ -1102,7 +1105,11 @@ single_port_op : (P_EQ | P_GT | P_LT | P_NEQ )
|
||||
port_spec
|
||||
;
|
||||
|
||||
port_spec : tcp_udp_port_spec
|
||||
port_spec :
|
||||
{
|
||||
importer->tmp_port_spec_2 = "";
|
||||
}
|
||||
tcp_udp_port_spec
|
||||
{
|
||||
importer->tmp_port_spec = std::string(" ") + importer->tmp_port_spec_2;
|
||||
*dbg << LT(0)->getText() << " " << importer->tmp_port_spec;
|
||||
@ -1622,9 +1629,10 @@ v7_static_address : a:IPV4 m:IPV4 (s:STANDBY)?
|
||||
// We do not parse them yet.
|
||||
if (s)
|
||||
{
|
||||
importer->addMessageToLog("Parser warning: failover IP detected. "
|
||||
"Failover is not supported by import "
|
||||
"at this time");
|
||||
importer->addMessageToLog(
|
||||
QString("Parser warning: failover IP detected. "
|
||||
"Failover is not supported by import "
|
||||
"at this time"));
|
||||
}
|
||||
consumeUntil(NEWLINE);
|
||||
}
|
||||
@ -2097,13 +2105,13 @@ static_command_common_last_parameters :
|
||||
DNS
|
||||
{
|
||||
importer->addMessageToLog(
|
||||
"Warning: 'static' command option 'dns' is not supported");
|
||||
QString("Warning: 'static' command option 'dns' is not supported"));
|
||||
}
|
||||
|
|
||||
NORANDOMSEQ
|
||||
{
|
||||
importer->addMessageToLog(
|
||||
"Warning: 'static' command option 'norandomseq' is not supported");
|
||||
QString("Warning: 'static' command option 'norandomseq' is not supported"));
|
||||
}
|
||||
|
|
||||
NETMASK nm:IPV4
|
||||
|
||||
@ -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="1301462592" id="root">
|
||||
<FWObjectDatabase xmlns="http://www.fwbuilder.org/1.0/" version="18" lastModified="1301604868" 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"/>
|
||||
@ -433,7 +433,7 @@
|
||||
<ObjectGroup id="id1" name="Objects" comment="" ro="False">
|
||||
<ObjectGroup id="id2" name="Addresses" comment="" ro="False">
|
||||
<IPv4 id="id3" name="server-1.0" comment="Created during import of line 86" ro="False" address="192.168.1.100" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id4" name="h-192.0.2.1" comment="Created during import of line 213" ro="False" address="192.0.2.1" netmask="255.255.255.255"/>
|
||||
<IPv4 id="id4" name="h-192.0.2.1" comment="Created during import of line 215" ro="False" address="192.0.2.1" netmask="255.255.255.255"/>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="id5" name="DNS Names" comment="" ro="False"/>
|
||||
<ObjectGroup id="id6" name="Address Tables" comment="" ro="False"/>
|
||||
@ -453,7 +453,7 @@
|
||||
<Network id="id17" name="net-192.168.1.0/255.255.255.0" comment="Created during import of line 111" ro="False" address="192.168.1.0" netmask="255.255.255.0"/>
|
||||
<Network id="id18" name="net-192.168.2.0/255.255.255.0" comment="Created during import of line 112" ro="False" address="192.168.2.0" netmask="255.255.255.0"/>
|
||||
<Network id="id19" name="net-192.168.2.0/255.255.255.192" comment="Created during import of line 181" ro="False" address="192.168.2.0" netmask="255.255.255.192"/>
|
||||
<Network id="id20" name="net-192.0.2.0/255.255.255.0" comment="Created during import of line 212" ro="False" address="192.0.2.0" netmask="255.255.255.0"/>
|
||||
<Network id="id20" name="net-192.0.2.0/255.255.255.0" comment="Created during import of line 214" ro="False" address="192.0.2.0" netmask="255.255.255.0"/>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="id21" name="Address Ranges" comment="" ro="False"/>
|
||||
</ObjectGroup>
|
||||
@ -530,21 +530,22 @@
|
||||
<TCPService id="id82" 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 1024:65535 / 80:80" comment="Created during import of line 208" ro="False" src_range_start="1024" src_range_end="65535" dst_range_start="80" dst_range_end="80"/>
|
||||
<TCPService id="id83" 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 1024:65535 / 0:87" comment="Created during import of line 210" ro="False" src_range_start="1024" src_range_end="65535" dst_range_start="0" dst_range_end="87"/>
|
||||
<TCPService id="id84" 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 1024:65535 / 89:65535" comment="Created during import of line 210" ro="False" src_range_start="1024" src_range_end="65535" dst_range_start="89" dst_range_end="65535"/>
|
||||
<TCPService id="id85" 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 / 1024:65535" comment="Created during import of line 212" ro="False" src_range_start="80" src_range_end="80" dst_range_start="1024" dst_range_end="65535"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id85" name="UDP" comment="" ro="False">
|
||||
<UDPService id="id86" name="udp 0:0 / 0:0" comment="Created during import of line 147" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="0"/>
|
||||
<ServiceGroup id="id86" name="UDP" comment="" ro="False">
|
||||
<UDPService id="id87" name="udp 0:0 / 0:0" comment="Created during import of line 147" ro="False" src_range_start="0" src_range_end="0" dst_range_start="0" dst_range_end="0"/>
|
||||
</ServiceGroup>
|
||||
<ServiceGroup id="id87" name="Users" comment="" ro="False"/>
|
||||
<ServiceGroup id="id88" name="Custom" comment="" ro="False"/>
|
||||
<ServiceGroup id="id89" name="TagServices" comment="" ro="False"/>
|
||||
<ServiceGroup id="id88" name="Users" comment="" ro="False"/>
|
||||
<ServiceGroup id="id89" name="Custom" comment="" ro="False"/>
|
||||
<ServiceGroup id="id90" name="TagServices" comment="" ro="False"/>
|
||||
</ServiceGroup>
|
||||
<ObjectGroup id="id90" name="Firewalls" comment="" ro="False">
|
||||
<Firewall id="id91" 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="id767" name="NAT" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<ObjectGroup id="id91" name="Firewalls" comment="" ro="False">
|
||||
<Firewall id="id92" 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="id780" name="NAT" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<RuleSetOptions/>
|
||||
</NAT>
|
||||
<Policy id="id93" name="Policy" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<PolicyRule id="id95" disabled="False" group="" log="False" position="0" action="Accept" direction="Inbound" comment="Imported from inside_in 0 ( global ) Created during import of line 127">
|
||||
<Policy id="id94" name="Policy" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<PolicyRule id="id96" disabled="False" group="" log="False" position="0" action="Accept" direction="Inbound" comment="Imported from inside_in 0 ( global ) Created during import of line 127">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -555,7 +556,7 @@
|
||||
<ServiceRef ref="id52"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -564,7 +565,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id107" disabled="False" group="" log="False" position="1" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 128">
|
||||
<PolicyRule id="id108" disabled="False" group="" log="False" position="1" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 128">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -575,7 +576,7 @@
|
||||
<ServiceRef ref="id54"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -584,7 +585,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id119" disabled="False" group="" log="False" position="2" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 129">
|
||||
<PolicyRule id="id120" disabled="False" group="" log="False" position="2" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 129">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -595,7 +596,7 @@
|
||||
<ServiceRef ref="id55"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -604,7 +605,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id131" disabled="False" group="" log="False" position="3" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 130">
|
||||
<PolicyRule id="id132" disabled="False" group="" log="False" position="3" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 130">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -615,7 +616,7 @@
|
||||
<ServiceRef ref="id56"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -624,7 +625,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id143" disabled="False" group="" log="False" position="4" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 131">
|
||||
<PolicyRule id="id144" disabled="False" group="" log="False" position="4" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 131">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -635,7 +636,7 @@
|
||||
<ServiceRef ref="id48"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -644,7 +645,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id155" disabled="False" group="" log="False" position="5" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 133">
|
||||
<PolicyRule id="id156" disabled="False" group="" log="False" position="5" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 133">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -655,7 +656,7 @@
|
||||
<ServiceRef ref="id57"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -664,7 +665,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id167" disabled="False" group="" log="False" position="6" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 134">
|
||||
<PolicyRule id="id168" disabled="False" group="" log="False" position="6" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 134">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -675,7 +676,7 @@
|
||||
<ServiceRef ref="id58"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -684,7 +685,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id179" disabled="False" group="" log="False" position="7" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 135">
|
||||
<PolicyRule id="id180" disabled="False" group="" log="False" position="7" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 135">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -695,7 +696,7 @@
|
||||
<ServiceRef ref="id53"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -704,7 +705,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id191" disabled="False" group="" log="False" position="8" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 136">
|
||||
<PolicyRule id="id192" disabled="False" group="" log="False" position="8" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 136">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -715,7 +716,7 @@
|
||||
<ServiceRef ref="id59"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -724,7 +725,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id203" disabled="False" group="" log="False" position="9" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 137">
|
||||
<PolicyRule id="id204" disabled="False" group="" log="False" position="9" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 137">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -735,7 +736,7 @@
|
||||
<ServiceRef ref="id55"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -744,7 +745,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id215" disabled="False" group="" log="False" position="10" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 138">
|
||||
<PolicyRule id="id216" disabled="False" group="" log="False" position="10" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 138">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -755,7 +756,7 @@
|
||||
<ServiceRef ref="id60"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -764,7 +765,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id227" disabled="False" group="" log="False" position="11" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 139">
|
||||
<PolicyRule id="id228" disabled="False" group="" log="False" position="11" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 139">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -775,7 +776,7 @@
|
||||
<ServiceRef ref="id50"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -784,7 +785,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id239" disabled="False" group="" log="False" position="12" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 140">
|
||||
<PolicyRule id="id240" disabled="False" group="" log="False" position="12" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 140">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -795,7 +796,7 @@
|
||||
<ServiceRef ref="id27"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -804,7 +805,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id251" disabled="False" group="" log="False" position="13" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 141">
|
||||
<PolicyRule id="id252" disabled="False" group="" log="False" position="13" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 141">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -815,7 +816,7 @@
|
||||
<ServiceRef ref="id61"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -824,7 +825,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id263" disabled="False" group="" log="False" position="14" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 142">
|
||||
<PolicyRule id="id264" disabled="False" group="" log="False" position="14" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 142">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -835,7 +836,7 @@
|
||||
<ServiceRef ref="id62"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -844,7 +845,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id275" disabled="False" group="" log="False" position="15" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 143">
|
||||
<PolicyRule id="id276" disabled="False" group="" log="False" position="15" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 143">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -855,7 +856,7 @@
|
||||
<ServiceRef ref="id63"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -864,7 +865,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id287" disabled="False" group="" log="False" position="16" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 144">
|
||||
<PolicyRule id="id288" disabled="False" group="" log="False" position="16" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 144">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -875,7 +876,7 @@
|
||||
<ServiceRef ref="id56"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -884,7 +885,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id299" disabled="False" group="" log="False" position="17" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 145">
|
||||
<PolicyRule id="id300" disabled="False" group="" log="False" position="17" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 145">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -895,7 +896,7 @@
|
||||
<ServiceRef ref="id64"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -904,7 +905,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id311" disabled="False" group="" log="False" position="18" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 146">
|
||||
<PolicyRule id="id312" disabled="False" group="" log="False" position="18" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 146">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -915,7 +916,7 @@
|
||||
<ServiceRef ref="id70"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -924,7 +925,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id323" disabled="False" group="" log="False" position="19" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 147">
|
||||
<PolicyRule id="id324" disabled="False" group="" log="False" position="19" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 147">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id17"/>
|
||||
</Src>
|
||||
@ -932,10 +933,10 @@
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id86"/>
|
||||
<ServiceRef ref="id87"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -944,7 +945,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id335" disabled="False" group="" log="False" position="20" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 150">
|
||||
<PolicyRule id="id336" disabled="False" group="" log="False" position="20" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 150">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id15"/>
|
||||
</Src>
|
||||
@ -955,7 +956,7 @@
|
||||
<ServiceRef ref="id53"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -964,7 +965,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id347" disabled="False" group="" log="True" position="21" action="Deny" direction="Inbound" comment="Imported from inside_in 3 ( global ) Created during import of line 154">
|
||||
<PolicyRule id="id348" disabled="False" group="" log="True" position="21" action="Deny" direction="Inbound" comment="Imported from inside_in 3 ( global ) Created during import of line 154">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -975,7 +976,7 @@
|
||||
<ServiceRef ref="id53"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -984,7 +985,7 @@
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id359" disabled="False" group="" log="True" position="22" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 156">
|
||||
<PolicyRule id="id360" disabled="False" group="" log="True" position="22" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 156">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -995,7 +996,7 @@
|
||||
<ServiceRef ref="id53"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1005,7 +1006,7 @@
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id371" disabled="False" group="" log="True" position="23" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 158">
|
||||
<PolicyRule id="id372" disabled="False" group="" log="True" position="23" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 158">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1016,7 +1017,7 @@
|
||||
<ServiceRef ref="id53"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1026,7 +1027,7 @@
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id383" disabled="False" group="" log="True" position="24" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 159">
|
||||
<PolicyRule id="id384" disabled="False" group="" log="True" position="24" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 159">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1037,7 +1038,7 @@
|
||||
<ServiceRef ref="id53"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1047,7 +1048,7 @@
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id395" disabled="False" group="" log="True" position="25" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 160">
|
||||
<PolicyRule id="id396" disabled="False" group="" log="True" position="25" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 160">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1058,7 +1059,7 @@
|
||||
<ServiceRef ref="id53"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1069,7 +1070,7 @@
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id407" disabled="False" group="" log="True" position="26" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 162">
|
||||
<PolicyRule id="id408" disabled="False" group="" log="True" position="26" action="Deny" direction="Inbound" comment="Imported from inside_in Created during import of line 162">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1080,7 +1081,7 @@
|
||||
<ServiceRef ref="id53"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1091,7 +1092,7 @@
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id419" disabled="False" group="" log="False" position="27" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 169">
|
||||
<PolicyRule id="id420" disabled="False" group="" log="False" position="27" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 169">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id3"/>
|
||||
</Src>
|
||||
@ -1102,7 +1103,7 @@
|
||||
<ServiceRef ref="id24"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1111,7 +1112,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id431" disabled="False" group="" log="False" position="28" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 171">
|
||||
<PolicyRule id="id432" disabled="False" group="" log="False" position="28" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 171">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id3"/>
|
||||
</Src>
|
||||
@ -1122,7 +1123,7 @@
|
||||
<ServiceRef ref="id70"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1131,7 +1132,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id443" disabled="False" group="" log="False" position="29" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 173">
|
||||
<PolicyRule id="id444" disabled="False" group="" log="False" position="29" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 173">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id3"/>
|
||||
</Src>
|
||||
@ -1142,7 +1143,7 @@
|
||||
<ServiceRef ref="id71"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1151,7 +1152,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id455" disabled="False" group="" log="False" position="30" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 174">
|
||||
<PolicyRule id="id456" disabled="False" group="" log="False" position="30" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 174">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id3"/>
|
||||
</Src>
|
||||
@ -1162,7 +1163,7 @@
|
||||
<ServiceRef ref="id72"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1171,7 +1172,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id467" disabled="False" group="" log="False" position="31" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 175">
|
||||
<PolicyRule id="id468" disabled="False" group="" log="False" position="31" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 175">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id3"/>
|
||||
</Src>
|
||||
@ -1182,7 +1183,7 @@
|
||||
<ServiceRef ref="id73"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1191,7 +1192,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id479" disabled="False" group="" log="False" position="32" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 176">
|
||||
<PolicyRule id="id480" disabled="False" group="" log="False" position="32" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 176">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id3"/>
|
||||
</Src>
|
||||
@ -1202,7 +1203,7 @@
|
||||
<ServiceRef ref="id74"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1211,7 +1212,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id491" disabled="False" group="" log="False" position="33" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 177">
|
||||
<PolicyRule id="id492" disabled="False" group="" log="False" position="33" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 177">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id3"/>
|
||||
</Src>
|
||||
@ -1222,7 +1223,7 @@
|
||||
<ServiceRef ref="id32"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1231,7 +1232,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id503" disabled="False" group="" log="False" position="34" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 181">
|
||||
<PolicyRule id="id504" disabled="False" group="" log="False" position="34" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 181">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id19"/>
|
||||
</Src>
|
||||
@ -1242,7 +1243,7 @@
|
||||
<ServiceRef ref="id71"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1251,7 +1252,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id515" disabled="False" group="" log="False" position="35" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 182">
|
||||
<PolicyRule id="id516" disabled="False" group="" log="False" position="35" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 182">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id19"/>
|
||||
</Src>
|
||||
@ -1262,7 +1263,7 @@
|
||||
<ServiceRef ref="id72"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1271,7 +1272,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id527" disabled="False" group="" log="False" position="36" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 183">
|
||||
<PolicyRule id="id528" disabled="False" group="" log="False" position="36" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 183">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id19"/>
|
||||
</Src>
|
||||
@ -1282,7 +1283,7 @@
|
||||
<ServiceRef ref="id73"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1291,7 +1292,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id539" disabled="False" group="" log="False" position="37" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 184">
|
||||
<PolicyRule id="id540" disabled="False" group="" log="False" position="37" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 184">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id19"/>
|
||||
</Src>
|
||||
@ -1302,7 +1303,7 @@
|
||||
<ServiceRef ref="id74"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1311,7 +1312,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id551" disabled="False" group="" log="False" position="38" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 185">
|
||||
<PolicyRule id="id552" disabled="False" group="" log="False" position="38" action="Accept" direction="Inbound" comment="Imported from inside_in Created during import of line 185">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id19"/>
|
||||
</Src>
|
||||
@ -1322,7 +1323,7 @@
|
||||
<ServiceRef ref="id35"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1331,7 +1332,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id563" disabled="False" group="" log="False" position="39" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 189">
|
||||
<PolicyRule id="id564" disabled="False" group="" log="False" position="39" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 189">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1342,7 +1343,7 @@
|
||||
<ServiceRef ref="id68"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1351,7 +1352,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id575" disabled="False" group="" log="False" position="40" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 190">
|
||||
<PolicyRule id="id576" disabled="False" group="" log="False" position="40" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 190">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1362,7 +1363,7 @@
|
||||
<ServiceRef ref="id77"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1371,7 +1372,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id587" disabled="False" group="" log="False" position="41" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 191">
|
||||
<PolicyRule id="id588" disabled="False" group="" log="False" position="41" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 191">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1382,7 +1383,7 @@
|
||||
<ServiceRef ref="id78"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1391,7 +1392,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id599" disabled="False" group="" log="False" position="42" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 192">
|
||||
<PolicyRule id="id600" disabled="False" group="" log="False" position="42" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 192">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1402,7 +1403,7 @@
|
||||
<ServiceRef ref="id79"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1411,7 +1412,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id611" disabled="False" group="" log="False" position="43" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 193">
|
||||
<PolicyRule id="id612" disabled="False" group="" log="False" position="43" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 193">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1422,7 +1423,7 @@
|
||||
<ServiceRef ref="id38"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1431,7 +1432,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id623" disabled="False" group="" log="False" position="44" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 197">
|
||||
<PolicyRule id="id624" disabled="False" group="" log="False" position="44" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 197">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1442,7 +1443,7 @@
|
||||
<ServiceRef ref="id68"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1451,7 +1452,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id635" disabled="False" group="" log="False" position="45" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 198">
|
||||
<PolicyRule id="id636" disabled="False" group="" log="False" position="45" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 198">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1462,7 +1463,7 @@
|
||||
<ServiceRef ref="id77"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1471,7 +1472,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id647" disabled="False" group="" log="False" position="46" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 199">
|
||||
<PolicyRule id="id648" disabled="False" group="" log="False" position="46" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 199">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1482,7 +1483,7 @@
|
||||
<ServiceRef ref="id78"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1491,7 +1492,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id659" disabled="False" group="" log="False" position="47" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 200">
|
||||
<PolicyRule id="id660" disabled="False" group="" log="False" position="47" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 200">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1502,7 +1503,7 @@
|
||||
<ServiceRef ref="id79"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1511,7 +1512,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id671" disabled="False" group="" log="False" position="48" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 201">
|
||||
<PolicyRule id="id672" disabled="False" group="" log="False" position="48" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 201">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1522,7 +1523,7 @@
|
||||
<ServiceRef ref="id41"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1531,7 +1532,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id683" disabled="False" group="" log="False" position="49" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 204">
|
||||
<PolicyRule id="id684" disabled="False" group="" log="False" position="49" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 204">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1542,7 +1543,7 @@
|
||||
<ServiceRef ref="id70"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1551,7 +1552,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id695" disabled="False" group="" log="False" position="50" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 206">
|
||||
<PolicyRule id="id696" disabled="False" group="" log="False" position="50" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 206">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id8"/>
|
||||
</Src>
|
||||
@ -1562,7 +1563,7 @@
|
||||
<ServiceRef ref="id70"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1571,7 +1572,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id707" disabled="False" group="" log="False" position="51" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 208">
|
||||
<PolicyRule id="id708" disabled="False" group="" log="False" position="51" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 208">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id8"/>
|
||||
</Src>
|
||||
@ -1582,7 +1583,7 @@
|
||||
<ServiceRef ref="id82"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1591,7 +1592,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id719" disabled="False" group="" log="False" position="52" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 210">
|
||||
<PolicyRule id="id720" disabled="False" group="" log="False" position="52" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 210">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id8"/>
|
||||
</Src>
|
||||
@ -1602,7 +1603,7 @@
|
||||
<ServiceRef ref="id44"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id771"/>
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1611,7 +1612,27 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id731" disabled="False" group="" log="False" position="53" action="Accept" direction="Outbound" comment="Imported from outside_out Created during import of line 212">
|
||||
<PolicyRule id="id732" disabled="False" group="" log="False" position="53" action="Accept" direction="Outbound" comment="Imported from inside_out Created during import of line 212">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
<Dst neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Dst>
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="id85"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id784"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id744" disabled="False" group="" log="False" position="54" action="Accept" direction="Outbound" comment="Imported from outside_out Created during import of line 214">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1622,7 +1643,7 @@
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id774"/>
|
||||
<ObjectRef ref="id787"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1631,7 +1652,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id743" disabled="False" group="" log="False" position="54" action="Accept" direction="Outbound" comment="Imported from outside_out Created during import of line 213">
|
||||
<PolicyRule id="id756" disabled="False" group="" log="False" position="55" action="Accept" direction="Outbound" comment="Imported from outside_out Created during import of line 215">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1642,7 +1663,7 @@
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id774"/>
|
||||
<ObjectRef ref="id787"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1651,7 +1672,7 @@
|
||||
<Option name="stateless">False</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
<PolicyRule id="id755" disabled="False" group="" log="False" position="55" action="Accept" direction="Outbound" comment="Imported from outside_out Created during import of line 214">
|
||||
<PolicyRule id="id768" disabled="False" group="" log="False" position="56" action="Accept" direction="Outbound" comment="Imported from outside_out Created during import of line 216">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -1662,7 +1683,7 @@
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="id774"/>
|
||||
<ObjectRef ref="id787"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
@ -1673,17 +1694,17 @@
|
||||
</PolicyRule>
|
||||
<RuleSetOptions/>
|
||||
</Policy>
|
||||
<Routing id="id769" name="Routing" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<Routing id="id782" name="Routing" comment="" ro="False" ipv4_rule_set="False" ipv6_rule_set="False" top_rule_set="True">
|
||||
<RuleSetOptions/>
|
||||
</Routing>
|
||||
<Interface id="id771" dedicated_failover="False" dyn="False" label="inside" security_level="100" unnum="False" unprotected="False" name="Vlan1" comment="Created during import of line 8" ro="False">
|
||||
<IPv4 id="id772" name="asa5505:Vlan1:ip" comment="Created during import of line 10" ro="False" address="192.168.1.1" netmask="255.255.255.0"/>
|
||||
<Interface id="id784" dedicated_failover="False" dyn="False" label="inside" security_level="100" unnum="False" unprotected="False" name="Vlan1" comment="Created during import of line 8" ro="False">
|
||||
<IPv4 id="id785" name="asa5505:Vlan1:ip" comment="Created during import of line 10" ro="False" address="192.168.1.1" netmask="255.255.255.0"/>
|
||||
<InterfaceOptions/>
|
||||
</Interface>
|
||||
<Interface id="id774" dedicated_failover="False" dyn="True" label="outside" security_level="0" unnum="False" unprotected="False" name="Vlan2" comment="Created during import of line 14" ro="False">
|
||||
<Interface id="id787" dedicated_failover="False" dyn="True" label="outside" security_level="0" unnum="False" unprotected="False" name="Vlan2" comment="Created during import of line 14" ro="False">
|
||||
<InterfaceOptions/>
|
||||
</Interface>
|
||||
<Interface id="id776" dedicated_failover="False" dyn="False" security_level="0" unnum="True" unprotected="False" name="Ethernet0/0" comment="Switch port 0 / 0 " ro="False">
|
||||
<Interface id="id789" 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>
|
||||
@ -1704,7 +1725,7 @@
|
||||
</FirewallOptions>
|
||||
</Firewall>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="id778" name="Clusters" comment="" ro="False"/>
|
||||
<IntervalGroup id="id779" name="Time" comment="" ro="False"/>
|
||||
<ObjectGroup id="id791" name="Clusters" comment="" ro="False"/>
|
||||
<IntervalGroup id="id792" name="Time" comment="" ro="False"/>
|
||||
</Library>
|
||||
</FWObjectDatabase>
|
||||
|
||||
@ -22,7 +22,7 @@
|
||||
114: Object Group (network) dst-network-group-1
|
||||
123: Rule comment: 0 ( global )
|
||||
151: Rule comment: 3 ( global )
|
||||
224: Interface Vlan1 ruleset inside_in direction 'in'
|
||||
225: Interface Vlan1 ruleset inside_out direction 'out'
|
||||
226: Interface Vlan2 ruleset outside_in direction 'in'
|
||||
227: Interface Vlan2 ruleset outside_out direction 'out'
|
||||
226: Interface Vlan1 ruleset inside_in direction 'in'
|
||||
227: Interface Vlan1 ruleset inside_out direction 'out'
|
||||
228: Interface Vlan2 ruleset outside_in direction 'in'
|
||||
229: Interface Vlan2 ruleset outside_out direction 'out'
|
||||
|
||||
@ -209,6 +209,8 @@ access-list inside_out extended permit tcp object-group src-network-group-1 gt 1
|
||||
|
||||
access-list inside_out extended permit tcp object-group src-network-group-1 gt 1023 object-group dst-network-group-1 neq 88
|
||||
|
||||
access-list inside_out extended permit tcp any eq www any range 1024 65535
|
||||
|
||||
access-list outside_out standard permit 192.0.2.0 255.255.255.0
|
||||
access-list outside_out standard permit host 192.0.2.1
|
||||
access-list outside_out standard permit any
|
||||
|
||||
@ -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="1301453238" id="root">
|
||||
<FWObjectDatabase xmlns="http://www.fwbuilder.org/1.0/" version="18" lastModified="1301604907" 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"/>
|
||||
@ -754,7 +754,7 @@
|
||||
<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 146" ro="False" src_range_start="89" src_range_end="65535" 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-5" comment="Created during import of line 148" ro="False" src_range_start="1002" src_range_end="1012" 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 1025:65535 / 80:80" comment="Created during import of line 230" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="80" dst_range_end="80"/>
|
||||
<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 / 102410000:10010" comment="Created during import of line 231" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="102410000" dst_range_end="10010"/>
|
||||
<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 / 10000:10010" comment="Created during import of line 231" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="10000" dst_range_end="10010"/>
|
||||
<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 / 0:79" comment="Created during import of line 232" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="0" dst_range_end="79"/>
|
||||
<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 / 81:65535" comment="Created during import of line 232" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="81" 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 1025:65535 / 0:1023" comment="Created during import of line 233" ro="False" src_range_start="1025" src_range_end="65535" dst_range_start="0" dst_range_end="1023"/>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user