mirror of
https://github.com/fwbuilder/fwbuilder
synced 2026-03-20 18:27:16 +01:00
fixed cli option in fwbedit usage and man page
This commit is contained in:
parent
514918cfcf
commit
e53a0fd835
@ -1,3 +1,9 @@
|
||||
2008-09-08 Vadim Kurland <vadim@vk.crocodile.org>
|
||||
|
||||
* fwbedit.cpp (usage): fixed "usage" in fwbedit, command line
|
||||
option that specifies object attributes for the command "new" is
|
||||
"-a", not "-o". Also fixed this in the man page.
|
||||
|
||||
2008-09-08 vadim <vadim@vk.crocodile.org>
|
||||
|
||||
* main_mac.cpp (odocHandler): bug #2099700 "Association of the
|
||||
|
||||
@ -111,7 +111,7 @@ objects have attributes "icmp_type" and "icmp_code".
|
||||
|
||||
|
||||
|
||||
.B add -f file.fwb -p group -o object
|
||||
.B add -f file.fwb -g group -o object
|
||||
|
||||
Adds object specified by path or ID to a group, also specified by its
|
||||
path or ID.
|
||||
@ -119,21 +119,21 @@ path or ID.
|
||||
.PP
|
||||
-f file.fwb: data file
|
||||
.PP
|
||||
-p group: group the object should be added to,
|
||||
-g group: group the object should be added to,
|
||||
full path or ID
|
||||
.PP
|
||||
-o object: object to be deleted, full path or ID
|
||||
|
||||
|
||||
|
||||
.B remove -f file.fwb -p group -o object
|
||||
.B remove -f file.fwb -g group -o object
|
||||
|
||||
Removes object from a group.
|
||||
|
||||
.PP
|
||||
-f file.fwb: data file
|
||||
.PP
|
||||
-p group: group the object should be removed from,
|
||||
-g group: group the object should be removed from,
|
||||
full path or ID
|
||||
.PP
|
||||
-o object: object to be deleted, full path or ID
|
||||
@ -160,35 +160,35 @@ data file and repairs it if necessary.
|
||||
.PP
|
||||
|
||||
.PP
|
||||
-t Firewall -o platform, host OS
|
||||
-t Firewall -a platform, host OS
|
||||
.PP
|
||||
-t IPv4 -o IP address [,netmask]
|
||||
-t IPv4 -a IP address [,netmask]
|
||||
.PP
|
||||
-t IPv6 -o IPv6 address [,masklen]
|
||||
-t IPv6 -a IPv6 address [,masklen]
|
||||
.PP
|
||||
-t DNSName -o DNS record,run time
|
||||
-t DNSName -a DNS record,run time
|
||||
.PP
|
||||
-t AddressRange -o start address, end address
|
||||
-t AddressRange -a start address, end address
|
||||
.PP
|
||||
-t ObjectGroup
|
||||
.PP
|
||||
-t Network -o address,netmask
|
||||
-t Network -a address,netmask
|
||||
.PP
|
||||
-t NetworkIPv6 -o ipv6_address,netmask_length
|
||||
-t NetworkIPv6 -a ipv6_address,netmask_length
|
||||
.PP
|
||||
-t Interval -o start time,start date,start day,end time, end date, end day
|
||||
-t Interval -a start time,start date,start day,end time, end date, end day
|
||||
.PP
|
||||
-t Interface -o security level,address type (dynamic or unnumbered),management
|
||||
-t Interface -a security level,address type (dynamic or unnumbered),management
|
||||
.PP
|
||||
-t Host
|
||||
.PP
|
||||
-t TCPService -o source port range start,end,destination port range start,end,UAPRSF,UAPRSF
|
||||
-t TCPService -a source port range start,end,destination port range start,end,UAPRSF,UAPRSF
|
||||
.PP
|
||||
-t UDPService -o source port range start,end,Destination port range start,end
|
||||
-t UDPService -a source port range start,end,Destination port range start,end
|
||||
.PP
|
||||
-t ICMPService -o ICMP type,ICMP code
|
||||
-t ICMPService -a ICMP type,ICMP code
|
||||
.PP
|
||||
-t IPService -o protocol number,lsrr/ssrr/rr/ts/fragm/short_fragm
|
||||
-t IPService -a protocol number,lsrr/ssrr/rr/ts/fragm/short_fragm
|
||||
|
||||
|
||||
.SH EXAMPLES
|
||||
|
||||
34
qmake.inc
34
qmake.inc
@ -11,15 +11,15 @@ SO_VERSION = @LIBFWBUILDER_SOLIB_VERSION@
|
||||
DEFINES += $$(DEFINES)
|
||||
LANGUAGE = C++
|
||||
UI_DIR = ui
|
||||
MANDIR = /Users/vadim/src/fwb3-branch-v3/install_root/share/man/
|
||||
DOCDIR = /Users/vadim/src/fwb3-branch-v3/install_root/share/doc/fwbuilder-3.0.1
|
||||
MANDIR = /home/vadim/src/fwb3-branch-v3/install_root/share/man/
|
||||
DOCDIR = /home/vadim/src/fwb3-branch-v3/install_root/share/doc/fwbuilder-3.0.1
|
||||
|
||||
HAVE_ANTLR_RUNTIME = 1
|
||||
HAVE_EXTERNAL_ANTLR = 0
|
||||
|
||||
unix {
|
||||
ANTLR_INCLUDEPATH = /Users/vadim/src/fwb3-branch-v3/source/fwbuilder/src/
|
||||
ANTLR_LIBS = /Users/vadim/src/fwb3-branch-v3/source/fwbuilder/src/antlr/libantlr.a
|
||||
ANTLR_INCLUDEPATH = /home/vadim/src/fwb3-branch-v3/source/fwbuilder/src/
|
||||
ANTLR_LIBS = /home/vadim/src/fwb3-branch-v3/source/fwbuilder/src/antlr/libantlr.a
|
||||
FWBPARSER_LIB = ../parsers/libfwbparser.a
|
||||
}
|
||||
|
||||
@ -30,38 +30,38 @@ unix {
|
||||
MOC_DIR = .moc
|
||||
OBJECTS_DIR = .obj
|
||||
|
||||
PREFIX = /Users/vadim/src/fwb3-branch-v3/install_root
|
||||
PREFIX = /home/vadim/src/fwb3-branch-v3/install_root
|
||||
exec_prefix = @EXEC_PREFIX@
|
||||
DESTDIR =
|
||||
ICONSDIR =
|
||||
ICONSDIR = /home/vadim/src/fwb3-branch-v3/install_root/share//icons/hicolor/
|
||||
|
||||
INCLUDEPATH += .. ../.. $$(INCLUDEPATH) /Users/vadim/src/fwb3-branch-v3/install_root/include/ /Users/vadim/src/fwb3-branch-v3/install_root/include/fwb-3 /usr/include/libxml2
|
||||
INCLUDEPATH += .. ../.. $$(INCLUDEPATH) /home/vadim/src/fwb3-branch-v3/install_root/include/ /home/vadim/src/fwb3-branch-v3/install_root/include/fwb-3 /usr/include/libxml2
|
||||
|
||||
LIBS_FWCOMPILER = -L/Users/vadim/src/fwb3-branch-v3/install_root/lib -lfwcompiler -lfwbuilder -lxslt -lxml2 -lz -lpthread -licucore -lm -lnetsnmp
|
||||
LIBS_FWBUILDER = -L/Users/vadim/src/fwb3-branch-v3/install_root/lib -lfwbuilder -lxslt -lxml2 -lz -lpthread -licucore -lm -lnetsnmp
|
||||
LIBS_FWCOMPILER = -L/home/vadim/src/fwb3-branch-v3/install_root/lib -pthread -lfwcompiler -lfwbuilder -lxslt -lxml2 -lnetsnmp -lm -lwrap
|
||||
LIBS_FWBUILDER = -L/home/vadim/src/fwb3-branch-v3/install_root/lib -pthread -lfwbuilder -lxslt -lxml2 -lnetsnmp -lm -lwrap
|
||||
|
||||
target.path = $$PREFIX/bin
|
||||
dtd.path = @TEMPLATE_DIR@/
|
||||
migration.path = @TEMPLATE_DIR@/migration
|
||||
doc.path = /Users/vadim/src/fwb3-branch-v3/install_root/share/doc/fwbuilder-3.0.1
|
||||
datadir.path = /Users/vadim/src/fwb3-branch-v3/install_root/share/
|
||||
doc.path = /home/vadim/src/fwb3-branch-v3/install_root/share/doc/fwbuilder-3.0.1
|
||||
datadir.path = /home/vadim/src/fwb3-branch-v3/install_root/share/
|
||||
|
||||
|
||||
# win32:target.path = $$PREFIX/
|
||||
# unix:target.path = $$PREFIX/share/fwbuilder/
|
||||
# macx:target.path = $$PREFIX/
|
||||
|
||||
res.path = ../Resources
|
||||
res_os.path = ../Resources/os/
|
||||
res_platform.path = ../Resources/platform/
|
||||
res_help.path = ../Resources/help/
|
||||
res_desktop.path = /Users/vadim/src/fwb3-branch-v3/install_root/share//applications/
|
||||
res.path = /home/vadim/src/fwb3-branch-v3/install_root/share/fwbuilder-3.0.1
|
||||
res_os.path = /home/vadim/src/fwb3-branch-v3/install_root/share/fwbuilder-3.0.1/os/
|
||||
res_platform.path = /home/vadim/src/fwb3-branch-v3/install_root/share/fwbuilder-3.0.1/platform/
|
||||
res_help.path = /home/vadim/src/fwb3-branch-v3/install_root/share/fwbuilder-3.0.1/help/
|
||||
res_desktop.path = /home/vadim/src/fwb3-branch-v3/install_root/share//applications/
|
||||
|
||||
INSTALLS += res
|
||||
INSTALLS += res_os
|
||||
INSTALLS += res_platform
|
||||
# INSTALLS += icns
|
||||
LIBS += $$LIBS_FWBUILDER -L/sw/lib -lpoll
|
||||
LIBS += $$LIBS_FWBUILDER -lutil
|
||||
|
||||
PKGLOCALEDIR = $$res.path/locale
|
||||
|
||||
|
||||
@ -198,19 +198,19 @@ void usage()
|
||||
cout << endl;
|
||||
|
||||
cout <<
|
||||
" add -f file.fwb -p group -o object\n"
|
||||
" add -f file.fwb -g group -o object\n"
|
||||
"\n"
|
||||
" -f file.fwb: data file\n"
|
||||
" -p group: group the object should be added to, \n"
|
||||
" -g group: group the object should be added to, \n"
|
||||
" full path or ID\n"
|
||||
" -o object: object to be deleted, full path or ID\n";
|
||||
cout << endl;
|
||||
|
||||
cout <<
|
||||
" remove -f file.fwb -p group -o object\n"
|
||||
" remove -f file.fwb -g group -o object\n"
|
||||
"\n"
|
||||
" -f file.fwb: data file\n"
|
||||
" -p group: group the object should be removed from,\n"
|
||||
" -g group: group the object should be removed from,\n"
|
||||
" full path or ID\n"
|
||||
" -o object: object to be deleted, full path or ID\n";
|
||||
cout << endl;
|
||||
@ -231,34 +231,34 @@ void usage()
|
||||
cout << endl;
|
||||
cout << " "
|
||||
<< " -t " <<Firewall::TYPENAME
|
||||
<< " -o platform, host OS" << endl;
|
||||
<< " -a platform, host OS" << endl;
|
||||
cout << " "
|
||||
<< " -t " <<IPv4::TYPENAME
|
||||
<< " -o IP address [,netmask]" << endl;
|
||||
<< " -a IP address [,netmask]" << endl;
|
||||
cout << " "
|
||||
<< " -t " <<IPv6::TYPENAME
|
||||
<< " -o IPv6 address [,masklen]" << endl;
|
||||
<< " -a IPv6 address [,masklen]" << endl;
|
||||
cout << " "
|
||||
<< " -t " <<DNSName::TYPENAME
|
||||
<< " -o DNS record,run time" << endl;
|
||||
<< " -a DNS record,run time" << endl;
|
||||
cout << " "
|
||||
<< " -t " <<AddressRange::TYPENAME
|
||||
<< " -o start address, end address" << endl;
|
||||
<< " -a start address, end address" << endl;
|
||||
cout << " "
|
||||
<< " -t " <<ObjectGroup::TYPENAME
|
||||
<< endl;
|
||||
cout << " "
|
||||
<< " -t " <<Network::TYPENAME
|
||||
<< " -o address,netmask" << endl;
|
||||
<< " -a address,netmask" << endl;
|
||||
cout << " "
|
||||
<< " -t " <<NetworkIPv6::TYPENAME
|
||||
<< " -o ipv6_address,netmask_length" << endl;
|
||||
<< " -a ipv6_address,netmask_length" << endl;
|
||||
cout << " "
|
||||
<< " -t " <<Interval::TYPENAME
|
||||
<< " -o start time,start date,start day,end time, end date, end day" << endl;
|
||||
<< " -a start time,start date,start day,end time, end date, end day" << endl;
|
||||
cout << " "
|
||||
<< " -t " <<Interface::TYPENAME
|
||||
<< " -o security level,address type "
|
||||
<< " -a security level,address type "
|
||||
"(dynamic or unnumbered),management" << endl;
|
||||
cout << " "
|
||||
<< " -t " <<Host::TYPENAME
|
||||
@ -268,16 +268,16 @@ void usage()
|
||||
<< endl;
|
||||
cout << " "
|
||||
<< " -t " <<TCPService::TYPENAME
|
||||
<< " -o source port range start,end,destination port range start,end,UAPRSF,UAPRSF" << endl;
|
||||
<< " -a source port range start,end,destination port range start,end,UAPRSF,UAPRSF" << endl;
|
||||
cout << " "
|
||||
<< " -t " <<UDPService::TYPENAME
|
||||
<< " -o source port range start,end,Destination port range start,end" << endl;
|
||||
<< " -a source port range start,end,Destination port range start,end" << endl;
|
||||
cout << " "
|
||||
<< " -t " <<ICMPService::TYPENAME
|
||||
<< " -o ICMP type,ICMP code" << endl;
|
||||
<< " -a ICMP type,ICMP code" << endl;
|
||||
cout << " "
|
||||
<< " -t " <<IPService::TYPENAME
|
||||
<< " -o protocol "
|
||||
<< " -a protocol "
|
||||
"number,lsrr/ssrr/rr/ts/fragm/short_fragm" << endl;
|
||||
}
|
||||
|
||||
|
||||
@ -1,35 +1,556 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE FWObjectDatabase SYSTEM "fwbuilder.dtd">
|
||||
<FWObjectDatabase xmlns="http://www.fwbuilder.org/1.0/" version="2.0.6" id="root">
|
||||
<Library color="#d2ffd0" comment="User defined objects" id="syslib001" name="User">
|
||||
<ObjectGroup id="stdid01_1" name="Objects">
|
||||
<ObjectGroup id="stdid16_1" name="Addresses"/>
|
||||
<ObjectGroup id="stdid04_1" name="Groups"/>
|
||||
<ObjectGroup id="stdid02_1" name="Hosts"/>
|
||||
<ObjectGroup id="stdid03_1" name="Networks">
|
||||
<Network comment="" id="id3F9A1BC7" name="net A" address="192.168.0.0" netmask="255.255.255.0"/>
|
||||
<Network comment="" id="id3F9A1BC8" name="net B" address="192.168.1.0" netmask="255.255.255.0"/>
|
||||
<Network comment="" id="id3F9A1BC9" name="net C" address="192.168.2.0" netmask="255.255.255.0"/>
|
||||
<FWObjectDatabase xmlns="http://www.fwbuilder.org/1.0/" version="10" lastModified="1220933797" id="root">
|
||||
<Library id="sysid99" ro="False" name="Deleted Objects" comment="">
|
||||
<ICMP6Service id="idE0C27650" code="0" type="1" name="ipv6 dest unreachable" comment="No route to destination"/>
|
||||
<IPv4 id="id1168X3773" name="student1" comment="" address="10.1.1.1" netmask="255.255.255.0"/>
|
||||
</Library>
|
||||
<Library id="syslib001" color="#d2ffd0" name="User" comment="User defined objects">
|
||||
<ObjectGroup id="stdid01_1" name="Objects" comment="">
|
||||
<ObjectGroup id="stdid01_1_og_ats_1" name="Address Tables" comment=""/>
|
||||
<ObjectGroup id="stdid01_1_og_dnsn_1" name="DNS Names" comment=""/>
|
||||
<ObjectGroup id="stdid16_1" name="Addresses" comment="">
|
||||
<IPv4 id="id1170X3825" name="student1" comment="" address="10.1.1.1" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1172X3826" name="student2" comment="" address="10.1.1.2" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1174X3827" name="student3" comment="" address="10.1.1.3" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1176X3828" name="student4" comment="" address="10.1.1.4" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1178X3829" name="student5" comment="" address="10.1.1.5" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1180X3830" name="student6" comment="" address="10.1.1.6" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1182X3831" name="student7" comment="" address="10.1.1.7" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1184X3832" name="student8" comment="" address="10.1.1.8" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1186X3833" name="student9" comment="" address="10.1.1.9" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1188X3834" name="student10" comment="" address="10.1.1.10" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1190X3835" name="student11" comment="" address="10.1.1.11" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1192X3836" name="student12" comment="" address="10.1.1.12" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1194X3837" name="student13" comment="" address="10.1.1.13" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1196X3838" name="student14" comment="" address="10.1.1.14" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1198X3839" name="student15" comment="" address="10.1.1.15" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1200X3840" name="student16" comment="" address="10.1.1.16" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1202X3841" name="student17" comment="" address="10.1.1.17" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1204X3842" name="student18" comment="" address="10.1.1.18" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1206X3843" name="student19" comment="" address="10.1.1.19" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1208X3844" name="student20" comment="" address="10.1.1.20" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1210X3845" name="student21" comment="" address="10.1.1.21" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1212X3846" name="student22" comment="" address="10.1.1.22" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1214X3847" name="student23" comment="" address="10.1.1.23" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1216X3848" name="student24" comment="" address="10.1.1.24" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1218X3849" name="student25" comment="" address="10.1.1.25" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1220X3850" name="student26" comment="" address="10.1.1.26" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1222X3851" name="student27" comment="" address="10.1.1.27" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1224X3852" name="student28" comment="" address="10.1.1.28" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1226X3853" name="student29" comment="" address="10.1.1.29" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1228X3854" name="student30" comment="" address="10.1.1.30" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1230X3855" name="student31" comment="" address="10.1.1.31" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1232X3856" name="student32" comment="" address="10.1.1.32" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1234X3857" name="student33" comment="" address="10.1.1.33" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1236X3858" name="student34" comment="" address="10.1.1.34" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1238X3859" name="student35" comment="" address="10.1.1.35" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1240X3860" name="student36" comment="" address="10.1.1.36" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1242X3861" name="student37" comment="" address="10.1.1.37" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1244X3862" name="student38" comment="" address="10.1.1.38" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1246X3863" name="student39" comment="" address="10.1.1.39" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1248X3864" name="student40" comment="" address="10.1.1.40" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1250X3865" name="student41" comment="" address="10.1.1.41" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1252X3866" name="student42" comment="" address="10.1.1.42" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1254X3867" name="student43" comment="" address="10.1.1.43" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1256X3868" name="student44" comment="" address="10.1.1.44" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1258X3869" name="student45" comment="" address="10.1.1.45" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1260X3870" name="student46" comment="" address="10.1.1.46" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1262X3871" name="student47" comment="" address="10.1.1.47" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1264X3872" name="student48" comment="" address="10.1.1.48" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1266X3873" name="student49" comment="" address="10.1.1.49" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1268X3874" name="student50" comment="" address="10.1.1.50" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1270X3875" name="student51" comment="" address="10.1.1.51" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1272X3876" name="student52" comment="" address="10.1.1.52" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1274X3877" name="student53" comment="" address="10.1.1.53" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1276X3878" name="student54" comment="" address="10.1.1.54" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1278X3879" name="student55" comment="" address="10.1.1.55" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1280X3880" name="student56" comment="" address="10.1.1.56" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1282X3881" name="student57" comment="" address="10.1.1.57" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1284X3882" name="student58" comment="" address="10.1.1.58" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1286X3883" name="student59" comment="" address="10.1.1.59" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1288X3884" name="student60" comment="" address="10.1.1.60" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1290X3885" name="student61" comment="" address="10.1.1.61" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1292X3886" name="student62" comment="" address="10.1.1.62" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1294X3887" name="student63" comment="" address="10.1.1.63" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1296X3888" name="student64" comment="" address="10.1.1.64" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1298X3889" name="student65" comment="" address="10.1.1.65" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1300X3890" name="student66" comment="" address="10.1.1.66" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1302X3891" name="student67" comment="" address="10.1.1.67" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1304X3892" name="student68" comment="" address="10.1.1.68" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1306X3893" name="student69" comment="" address="10.1.1.69" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1308X3894" name="student70" comment="" address="10.1.1.70" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1310X3895" name="student71" comment="" address="10.1.1.71" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1312X3896" name="student72" comment="" address="10.1.1.72" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1314X3897" name="student73" comment="" address="10.1.1.73" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1316X3898" name="student74" comment="" address="10.1.1.74" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1318X3899" name="student75" comment="" address="10.1.1.75" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1320X3900" name="student76" comment="" address="10.1.1.76" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1322X3901" name="student77" comment="" address="10.1.1.77" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1324X3902" name="student78" comment="" address="10.1.1.78" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1326X3903" name="student79" comment="" address="10.1.1.79" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1328X3904" name="student80" comment="" address="10.1.1.80" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1330X3905" name="student81" comment="" address="10.1.1.81" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1332X3906" name="student82" comment="" address="10.1.1.82" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1334X3907" name="student83" comment="" address="10.1.1.83" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1336X3908" name="student84" comment="" address="10.1.1.84" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1338X3909" name="student85" comment="" address="10.1.1.85" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1340X3910" name="student86" comment="" address="10.1.1.86" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1342X3911" name="student87" comment="" address="10.1.1.87" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1344X3912" name="student88" comment="" address="10.1.1.88" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1346X3913" name="student89" comment="" address="10.1.1.89" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1348X3914" name="student90" comment="" address="10.1.1.90" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1350X3915" name="student91" comment="" address="10.1.1.91" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1352X3916" name="student92" comment="" address="10.1.1.92" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1354X3917" name="student93" comment="" address="10.1.1.93" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1356X3918" name="student94" comment="" address="10.1.1.94" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1358X3919" name="student95" comment="" address="10.1.1.95" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1360X3920" name="student96" comment="" address="10.1.1.96" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1362X3921" name="student97" comment="" address="10.1.1.97" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1364X3922" name="student98" comment="" address="10.1.1.98" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1366X3923" name="student99" comment="" address="10.1.1.99" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1368X3924" name="student100" comment="" address="10.1.1.100" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1370X3925" name="student101" comment="" address="10.1.1.101" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1372X3926" name="student102" comment="" address="10.1.1.102" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1374X3927" name="student103" comment="" address="10.1.1.103" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1376X3928" name="student104" comment="" address="10.1.1.104" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1378X3929" name="student105" comment="" address="10.1.1.105" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1380X3930" name="student106" comment="" address="10.1.1.106" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1382X3931" name="student107" comment="" address="10.1.1.107" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1384X3932" name="student108" comment="" address="10.1.1.108" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1386X3933" name="student109" comment="" address="10.1.1.109" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1388X3934" name="student110" comment="" address="10.1.1.110" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1390X3935" name="student111" comment="" address="10.1.1.111" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1392X3936" name="student112" comment="" address="10.1.1.112" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1394X3937" name="student113" comment="" address="10.1.1.113" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1396X3938" name="student114" comment="" address="10.1.1.114" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1398X3939" name="student115" comment="" address="10.1.1.115" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1400X3940" name="student116" comment="" address="10.1.1.116" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1402X3941" name="student117" comment="" address="10.1.1.117" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1404X3942" name="student118" comment="" address="10.1.1.118" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1406X3943" name="student119" comment="" address="10.1.1.119" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1408X3944" name="student120" comment="" address="10.1.1.120" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1410X3945" name="student121" comment="" address="10.1.1.121" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1412X3946" name="student122" comment="" address="10.1.1.122" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1414X3947" name="student123" comment="" address="10.1.1.123" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1416X3948" name="student124" comment="" address="10.1.1.124" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1418X3949" name="student125" comment="" address="10.1.1.125" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1420X3950" name="student126" comment="" address="10.1.1.126" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1422X3951" name="student127" comment="" address="10.1.1.127" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1424X3952" name="student128" comment="" address="10.1.1.128" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1426X3953" name="student129" comment="" address="10.1.1.129" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1428X3954" name="student130" comment="" address="10.1.1.130" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1430X3955" name="student131" comment="" address="10.1.1.131" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1432X3956" name="student132" comment="" address="10.1.1.132" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1434X3957" name="student133" comment="" address="10.1.1.133" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1436X3958" name="student134" comment="" address="10.1.1.134" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1438X3959" name="student135" comment="" address="10.1.1.135" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1440X3960" name="student136" comment="" address="10.1.1.136" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1442X3961" name="student137" comment="" address="10.1.1.137" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1444X3962" name="student138" comment="" address="10.1.1.138" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1446X3963" name="student139" comment="" address="10.1.1.139" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1448X3964" name="student140" comment="" address="10.1.1.140" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1450X3965" name="student141" comment="" address="10.1.1.141" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1452X3966" name="student142" comment="" address="10.1.1.142" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1454X3967" name="student143" comment="" address="10.1.1.143" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1456X3968" name="student144" comment="" address="10.1.1.144" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1458X3969" name="student145" comment="" address="10.1.1.145" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1460X3970" name="student146" comment="" address="10.1.1.146" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1462X3971" name="student147" comment="" address="10.1.1.147" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1464X3972" name="student148" comment="" address="10.1.1.148" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1466X3973" name="student149" comment="" address="10.1.1.149" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1468X3974" name="student150" comment="" address="10.1.1.150" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1470X3975" name="student151" comment="" address="10.1.1.151" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1472X3976" name="student152" comment="" address="10.1.1.152" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1474X3977" name="student153" comment="" address="10.1.1.153" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1476X3978" name="student154" comment="" address="10.1.1.154" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1478X3979" name="student155" comment="" address="10.1.1.155" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1480X3980" name="student156" comment="" address="10.1.1.156" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1482X3981" name="student157" comment="" address="10.1.1.157" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1484X3982" name="student158" comment="" address="10.1.1.158" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1486X3983" name="student159" comment="" address="10.1.1.159" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1488X3984" name="student160" comment="" address="10.1.1.160" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1490X3985" name="student161" comment="" address="10.1.1.161" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1492X3986" name="student162" comment="" address="10.1.1.162" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1494X3987" name="student163" comment="" address="10.1.1.163" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1496X3988" name="student164" comment="" address="10.1.1.164" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1498X3989" name="student165" comment="" address="10.1.1.165" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1500X3990" name="student166" comment="" address="10.1.1.166" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1502X3991" name="student167" comment="" address="10.1.1.167" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1504X3992" name="student168" comment="" address="10.1.1.168" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1506X3993" name="student169" comment="" address="10.1.1.169" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1508X3994" name="student170" comment="" address="10.1.1.170" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1510X3995" name="student171" comment="" address="10.1.1.171" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1512X3996" name="student172" comment="" address="10.1.1.172" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1514X3997" name="student173" comment="" address="10.1.1.173" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1516X3998" name="student174" comment="" address="10.1.1.174" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1518X3999" name="student175" comment="" address="10.1.1.175" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1520X4000" name="student176" comment="" address="10.1.1.176" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1522X4001" name="student177" comment="" address="10.1.1.177" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1524X4002" name="student178" comment="" address="10.1.1.178" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1526X4003" name="student179" comment="" address="10.1.1.179" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1528X4004" name="student180" comment="" address="10.1.1.180" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1530X4005" name="student181" comment="" address="10.1.1.181" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1532X4006" name="student182" comment="" address="10.1.1.182" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1534X4007" name="student183" comment="" address="10.1.1.183" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1536X4008" name="student184" comment="" address="10.1.1.184" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1538X4009" name="student185" comment="" address="10.1.1.185" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1540X4010" name="student186" comment="" address="10.1.1.186" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1542X4011" name="student187" comment="" address="10.1.1.187" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1544X4012" name="student188" comment="" address="10.1.1.188" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1546X4013" name="student189" comment="" address="10.1.1.189" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1548X4014" name="student190" comment="" address="10.1.1.190" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1550X4015" name="student191" comment="" address="10.1.1.191" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1552X4016" name="student192" comment="" address="10.1.1.192" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1554X4017" name="student193" comment="" address="10.1.1.193" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1556X4018" name="student194" comment="" address="10.1.1.194" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1558X4019" name="student195" comment="" address="10.1.1.195" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1560X4020" name="student196" comment="" address="10.1.1.196" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1562X4021" name="student197" comment="" address="10.1.1.197" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1564X4022" name="student198" comment="" address="10.1.1.198" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1566X4023" name="student199" comment="" address="10.1.1.199" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1568X4024" name="student200" comment="" address="10.1.1.200" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1570X4025" name="student201" comment="" address="10.1.1.201" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1572X4026" name="student202" comment="" address="10.1.1.202" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1574X4027" name="student203" comment="" address="10.1.1.203" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1576X4028" name="student204" comment="" address="10.1.1.204" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1578X4029" name="student205" comment="" address="10.1.1.205" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1580X4030" name="student206" comment="" address="10.1.1.206" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1582X4031" name="student207" comment="" address="10.1.1.207" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1584X4032" name="student208" comment="" address="10.1.1.208" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1586X4033" name="student209" comment="" address="10.1.1.209" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1588X4034" name="student210" comment="" address="10.1.1.210" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1590X4035" name="student211" comment="" address="10.1.1.211" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1592X4036" name="student212" comment="" address="10.1.1.212" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1594X4037" name="student213" comment="" address="10.1.1.213" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1596X4038" name="student214" comment="" address="10.1.1.214" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1598X4039" name="student215" comment="" address="10.1.1.215" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1600X4040" name="student216" comment="" address="10.1.1.216" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1602X4041" name="student217" comment="" address="10.1.1.217" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1604X4042" name="student218" comment="" address="10.1.1.218" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1606X4043" name="student219" comment="" address="10.1.1.219" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1608X4044" name="student220" comment="" address="10.1.1.220" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1610X4045" name="student221" comment="" address="10.1.1.221" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1612X4046" name="student222" comment="" address="10.1.1.222" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1614X4047" name="student223" comment="" address="10.1.1.223" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1616X4048" name="student224" comment="" address="10.1.1.224" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1618X4049" name="student225" comment="" address="10.1.1.225" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1620X4050" name="student226" comment="" address="10.1.1.226" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1622X4051" name="student227" comment="" address="10.1.1.227" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1624X4052" name="student228" comment="" address="10.1.1.228" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1626X4053" name="student229" comment="" address="10.1.1.229" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1628X4054" name="student230" comment="" address="10.1.1.230" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1630X4055" name="student231" comment="" address="10.1.1.231" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1632X4056" name="student232" comment="" address="10.1.1.232" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1634X4057" name="student233" comment="" address="10.1.1.233" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1636X4058" name="student234" comment="" address="10.1.1.234" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1638X4059" name="student235" comment="" address="10.1.1.235" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1640X4060" name="student236" comment="" address="10.1.1.236" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1642X4061" name="student237" comment="" address="10.1.1.237" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1644X4062" name="student238" comment="" address="10.1.1.238" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1646X4063" name="student239" comment="" address="10.1.1.239" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1648X4064" name="student240" comment="" address="10.1.1.240" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1650X4065" name="student241" comment="" address="10.1.1.241" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1652X4066" name="student242" comment="" address="10.1.1.242" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1654X4067" name="student243" comment="" address="10.1.1.243" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1656X4068" name="student244" comment="" address="10.1.1.244" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1658X4069" name="student245" comment="" address="10.1.1.245" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1660X4070" name="student246" comment="" address="10.1.1.246" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1662X4071" name="student247" comment="" address="10.1.1.247" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1664X4072" name="student248" comment="" address="10.1.1.248" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1666X4073" name="student249" comment="" address="10.1.1.249" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1668X4074" name="student250" comment="" address="10.1.1.250" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1670X4075" name="student251" comment="" address="10.1.1.251" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1672X4076" name="student252" comment="" address="10.1.1.252" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1674X4077" name="student253" comment="" address="10.1.1.253" netmask="255.255.255.0"/>
|
||||
<IPv4 id="id1676X4078" name="student254" comment="" address="10.1.1.254" netmask="255.255.255.0"/>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="stdid15_1" name="Address Ranges">
|
||||
<AddressRange comment="" id="id3F9A1BCA" name="range A" start_address="192.168.0.10" end_address="192.168.0.250"/>
|
||||
<AddressRange comment="" id="id3F9A1BCB" name="range B" start_address="192.168.1.10" end_address="192.168.1.250"/>
|
||||
<AddressRange comment="" id="id3F9A1BCC" name="range C" start_address="192.168.2.10" end_address="192.168.2.250"/>
|
||||
<ObjectGroup id="stdid04_1" name="Groups" comment="">
|
||||
<ObjectGroup id="id4510X3737" name="Students_net_10_1" comment="">
|
||||
<ObjectRef ref="id1170X3825"/>
|
||||
<ObjectRef ref="id1170X3825"/>
|
||||
<ObjectRef ref="id1172X3826"/>
|
||||
<ObjectRef ref="id1174X3827"/>
|
||||
<ObjectRef ref="id1176X3828"/>
|
||||
<ObjectRef ref="id1178X3829"/>
|
||||
<ObjectRef ref="id1180X3830"/>
|
||||
<ObjectRef ref="id1182X3831"/>
|
||||
<ObjectRef ref="id1184X3832"/>
|
||||
<ObjectRef ref="id1186X3833"/>
|
||||
<ObjectRef ref="id1188X3834"/>
|
||||
<ObjectRef ref="id1190X3835"/>
|
||||
<ObjectRef ref="id1192X3836"/>
|
||||
<ObjectRef ref="id1194X3837"/>
|
||||
<ObjectRef ref="id1196X3838"/>
|
||||
<ObjectRef ref="id1198X3839"/>
|
||||
<ObjectRef ref="id1200X3840"/>
|
||||
<ObjectRef ref="id1202X3841"/>
|
||||
<ObjectRef ref="id1204X3842"/>
|
||||
<ObjectRef ref="id1206X3843"/>
|
||||
<ObjectRef ref="id1208X3844"/>
|
||||
<ObjectRef ref="id1210X3845"/>
|
||||
<ObjectRef ref="id1212X3846"/>
|
||||
<ObjectRef ref="id1214X3847"/>
|
||||
<ObjectRef ref="id1216X3848"/>
|
||||
<ObjectRef ref="id1218X3849"/>
|
||||
<ObjectRef ref="id1220X3850"/>
|
||||
<ObjectRef ref="id1222X3851"/>
|
||||
<ObjectRef ref="id1224X3852"/>
|
||||
<ObjectRef ref="id1226X3853"/>
|
||||
<ObjectRef ref="id1228X3854"/>
|
||||
<ObjectRef ref="id1230X3855"/>
|
||||
<ObjectRef ref="id1232X3856"/>
|
||||
<ObjectRef ref="id1234X3857"/>
|
||||
<ObjectRef ref="id1236X3858"/>
|
||||
<ObjectRef ref="id1238X3859"/>
|
||||
<ObjectRef ref="id1240X3860"/>
|
||||
<ObjectRef ref="id1242X3861"/>
|
||||
<ObjectRef ref="id1244X3862"/>
|
||||
<ObjectRef ref="id1246X3863"/>
|
||||
<ObjectRef ref="id1248X3864"/>
|
||||
<ObjectRef ref="id1250X3865"/>
|
||||
<ObjectRef ref="id1252X3866"/>
|
||||
<ObjectRef ref="id1254X3867"/>
|
||||
<ObjectRef ref="id1256X3868"/>
|
||||
<ObjectRef ref="id1258X3869"/>
|
||||
<ObjectRef ref="id1260X3870"/>
|
||||
<ObjectRef ref="id1262X3871"/>
|
||||
<ObjectRef ref="id1264X3872"/>
|
||||
<ObjectRef ref="id1266X3873"/>
|
||||
<ObjectRef ref="id1268X3874"/>
|
||||
<ObjectRef ref="id1270X3875"/>
|
||||
<ObjectRef ref="id1272X3876"/>
|
||||
<ObjectRef ref="id1274X3877"/>
|
||||
<ObjectRef ref="id1276X3878"/>
|
||||
<ObjectRef ref="id1278X3879"/>
|
||||
<ObjectRef ref="id1280X3880"/>
|
||||
<ObjectRef ref="id1282X3881"/>
|
||||
<ObjectRef ref="id1284X3882"/>
|
||||
<ObjectRef ref="id1286X3883"/>
|
||||
<ObjectRef ref="id1288X3884"/>
|
||||
<ObjectRef ref="id1290X3885"/>
|
||||
<ObjectRef ref="id1292X3886"/>
|
||||
<ObjectRef ref="id1294X3887"/>
|
||||
<ObjectRef ref="id1296X3888"/>
|
||||
<ObjectRef ref="id1298X3889"/>
|
||||
<ObjectRef ref="id1300X3890"/>
|
||||
<ObjectRef ref="id1302X3891"/>
|
||||
<ObjectRef ref="id1304X3892"/>
|
||||
<ObjectRef ref="id1306X3893"/>
|
||||
<ObjectRef ref="id1308X3894"/>
|
||||
<ObjectRef ref="id1310X3895"/>
|
||||
<ObjectRef ref="id1312X3896"/>
|
||||
<ObjectRef ref="id1314X3897"/>
|
||||
<ObjectRef ref="id1316X3898"/>
|
||||
<ObjectRef ref="id1318X3899"/>
|
||||
<ObjectRef ref="id1320X3900"/>
|
||||
<ObjectRef ref="id1322X3901"/>
|
||||
<ObjectRef ref="id1324X3902"/>
|
||||
<ObjectRef ref="id1326X3903"/>
|
||||
<ObjectRef ref="id1328X3904"/>
|
||||
<ObjectRef ref="id1330X3905"/>
|
||||
<ObjectRef ref="id1332X3906"/>
|
||||
<ObjectRef ref="id1334X3907"/>
|
||||
<ObjectRef ref="id1336X3908"/>
|
||||
<ObjectRef ref="id1338X3909"/>
|
||||
<ObjectRef ref="id1340X3910"/>
|
||||
<ObjectRef ref="id1342X3911"/>
|
||||
<ObjectRef ref="id1344X3912"/>
|
||||
<ObjectRef ref="id1346X3913"/>
|
||||
<ObjectRef ref="id1348X3914"/>
|
||||
<ObjectRef ref="id1350X3915"/>
|
||||
<ObjectRef ref="id1352X3916"/>
|
||||
<ObjectRef ref="id1354X3917"/>
|
||||
<ObjectRef ref="id1356X3918"/>
|
||||
<ObjectRef ref="id1358X3919"/>
|
||||
<ObjectRef ref="id1360X3920"/>
|
||||
<ObjectRef ref="id1362X3921"/>
|
||||
<ObjectRef ref="id1364X3922"/>
|
||||
<ObjectRef ref="id1366X3923"/>
|
||||
<ObjectRef ref="id1368X3924"/>
|
||||
<ObjectRef ref="id1370X3925"/>
|
||||
<ObjectRef ref="id1372X3926"/>
|
||||
<ObjectRef ref="id1374X3927"/>
|
||||
<ObjectRef ref="id1376X3928"/>
|
||||
<ObjectRef ref="id1378X3929"/>
|
||||
<ObjectRef ref="id1380X3930"/>
|
||||
<ObjectRef ref="id1382X3931"/>
|
||||
<ObjectRef ref="id1384X3932"/>
|
||||
<ObjectRef ref="id1386X3933"/>
|
||||
<ObjectRef ref="id1388X3934"/>
|
||||
<ObjectRef ref="id1390X3935"/>
|
||||
<ObjectRef ref="id1392X3936"/>
|
||||
<ObjectRef ref="id1394X3937"/>
|
||||
<ObjectRef ref="id1396X3938"/>
|
||||
<ObjectRef ref="id1398X3939"/>
|
||||
<ObjectRef ref="id1400X3940"/>
|
||||
<ObjectRef ref="id1402X3941"/>
|
||||
<ObjectRef ref="id1404X3942"/>
|
||||
<ObjectRef ref="id1406X3943"/>
|
||||
<ObjectRef ref="id1408X3944"/>
|
||||
<ObjectRef ref="id1410X3945"/>
|
||||
<ObjectRef ref="id1412X3946"/>
|
||||
<ObjectRef ref="id1414X3947"/>
|
||||
<ObjectRef ref="id1416X3948"/>
|
||||
<ObjectRef ref="id1418X3949"/>
|
||||
<ObjectRef ref="id1420X3950"/>
|
||||
<ObjectRef ref="id1422X3951"/>
|
||||
<ObjectRef ref="id1424X3952"/>
|
||||
<ObjectRef ref="id1426X3953"/>
|
||||
<ObjectRef ref="id1428X3954"/>
|
||||
<ObjectRef ref="id1430X3955"/>
|
||||
<ObjectRef ref="id1432X3956"/>
|
||||
<ObjectRef ref="id1434X3957"/>
|
||||
<ObjectRef ref="id1436X3958"/>
|
||||
<ObjectRef ref="id1438X3959"/>
|
||||
<ObjectRef ref="id1440X3960"/>
|
||||
<ObjectRef ref="id1442X3961"/>
|
||||
<ObjectRef ref="id1444X3962"/>
|
||||
<ObjectRef ref="id1446X3963"/>
|
||||
<ObjectRef ref="id1448X3964"/>
|
||||
<ObjectRef ref="id1450X3965"/>
|
||||
<ObjectRef ref="id1452X3966"/>
|
||||
<ObjectRef ref="id1454X3967"/>
|
||||
<ObjectRef ref="id1456X3968"/>
|
||||
<ObjectRef ref="id1458X3969"/>
|
||||
<ObjectRef ref="id1460X3970"/>
|
||||
<ObjectRef ref="id1462X3971"/>
|
||||
<ObjectRef ref="id1464X3972"/>
|
||||
<ObjectRef ref="id1466X3973"/>
|
||||
<ObjectRef ref="id1468X3974"/>
|
||||
<ObjectRef ref="id1470X3975"/>
|
||||
<ObjectRef ref="id1472X3976"/>
|
||||
<ObjectRef ref="id1474X3977"/>
|
||||
<ObjectRef ref="id1476X3978"/>
|
||||
<ObjectRef ref="id1478X3979"/>
|
||||
<ObjectRef ref="id1480X3980"/>
|
||||
<ObjectRef ref="id1482X3981"/>
|
||||
<ObjectRef ref="id1484X3982"/>
|
||||
<ObjectRef ref="id1486X3983"/>
|
||||
<ObjectRef ref="id1488X3984"/>
|
||||
<ObjectRef ref="id1490X3985"/>
|
||||
<ObjectRef ref="id1492X3986"/>
|
||||
<ObjectRef ref="id1494X3987"/>
|
||||
<ObjectRef ref="id1496X3988"/>
|
||||
<ObjectRef ref="id1498X3989"/>
|
||||
<ObjectRef ref="id1500X3990"/>
|
||||
<ObjectRef ref="id1502X3991"/>
|
||||
<ObjectRef ref="id1504X3992"/>
|
||||
<ObjectRef ref="id1506X3993"/>
|
||||
<ObjectRef ref="id1508X3994"/>
|
||||
<ObjectRef ref="id1510X3995"/>
|
||||
<ObjectRef ref="id1512X3996"/>
|
||||
<ObjectRef ref="id1514X3997"/>
|
||||
<ObjectRef ref="id1516X3998"/>
|
||||
<ObjectRef ref="id1518X3999"/>
|
||||
<ObjectRef ref="id1520X4000"/>
|
||||
<ObjectRef ref="id1522X4001"/>
|
||||
<ObjectRef ref="id1524X4002"/>
|
||||
<ObjectRef ref="id1526X4003"/>
|
||||
<ObjectRef ref="id1528X4004"/>
|
||||
<ObjectRef ref="id1530X4005"/>
|
||||
<ObjectRef ref="id1532X4006"/>
|
||||
<ObjectRef ref="id1534X4007"/>
|
||||
<ObjectRef ref="id1536X4008"/>
|
||||
<ObjectRef ref="id1538X4009"/>
|
||||
<ObjectRef ref="id1540X4010"/>
|
||||
<ObjectRef ref="id1542X4011"/>
|
||||
<ObjectRef ref="id1544X4012"/>
|
||||
<ObjectRef ref="id1546X4013"/>
|
||||
<ObjectRef ref="id1548X4014"/>
|
||||
<ObjectRef ref="id1550X4015"/>
|
||||
<ObjectRef ref="id1552X4016"/>
|
||||
<ObjectRef ref="id1554X4017"/>
|
||||
<ObjectRef ref="id1556X4018"/>
|
||||
<ObjectRef ref="id1558X4019"/>
|
||||
<ObjectRef ref="id1560X4020"/>
|
||||
<ObjectRef ref="id1562X4021"/>
|
||||
<ObjectRef ref="id1564X4022"/>
|
||||
<ObjectRef ref="id1566X4023"/>
|
||||
<ObjectRef ref="id1568X4024"/>
|
||||
<ObjectRef ref="id1570X4025"/>
|
||||
<ObjectRef ref="id1572X4026"/>
|
||||
<ObjectRef ref="id1574X4027"/>
|
||||
<ObjectRef ref="id1576X4028"/>
|
||||
<ObjectRef ref="id1578X4029"/>
|
||||
<ObjectRef ref="id1580X4030"/>
|
||||
<ObjectRef ref="id1582X4031"/>
|
||||
<ObjectRef ref="id1584X4032"/>
|
||||
<ObjectRef ref="id1586X4033"/>
|
||||
<ObjectRef ref="id1588X4034"/>
|
||||
<ObjectRef ref="id1590X4035"/>
|
||||
<ObjectRef ref="id1592X4036"/>
|
||||
<ObjectRef ref="id1594X4037"/>
|
||||
<ObjectRef ref="id1596X4038"/>
|
||||
<ObjectRef ref="id1598X4039"/>
|
||||
<ObjectRef ref="id1600X4040"/>
|
||||
<ObjectRef ref="id1602X4041"/>
|
||||
<ObjectRef ref="id1604X4042"/>
|
||||
<ObjectRef ref="id1606X4043"/>
|
||||
<ObjectRef ref="id1608X4044"/>
|
||||
<ObjectRef ref="id1610X4045"/>
|
||||
<ObjectRef ref="id1612X4046"/>
|
||||
<ObjectRef ref="id1614X4047"/>
|
||||
<ObjectRef ref="id1616X4048"/>
|
||||
<ObjectRef ref="id1618X4049"/>
|
||||
<ObjectRef ref="id1620X4050"/>
|
||||
<ObjectRef ref="id1622X4051"/>
|
||||
<ObjectRef ref="id1624X4052"/>
|
||||
<ObjectRef ref="id1626X4053"/>
|
||||
<ObjectRef ref="id1628X4054"/>
|
||||
<ObjectRef ref="id1630X4055"/>
|
||||
<ObjectRef ref="id1632X4056"/>
|
||||
<ObjectRef ref="id1634X4057"/>
|
||||
<ObjectRef ref="id1636X4058"/>
|
||||
<ObjectRef ref="id1638X4059"/>
|
||||
<ObjectRef ref="id1640X4060"/>
|
||||
<ObjectRef ref="id1642X4061"/>
|
||||
<ObjectRef ref="id1644X4062"/>
|
||||
<ObjectRef ref="id1646X4063"/>
|
||||
<ObjectRef ref="id1648X4064"/>
|
||||
<ObjectRef ref="id1650X4065"/>
|
||||
<ObjectRef ref="id1652X4066"/>
|
||||
<ObjectRef ref="id1654X4067"/>
|
||||
<ObjectRef ref="id1656X4068"/>
|
||||
<ObjectRef ref="id1658X4069"/>
|
||||
<ObjectRef ref="id1660X4070"/>
|
||||
<ObjectRef ref="id1662X4071"/>
|
||||
<ObjectRef ref="id1664X4072"/>
|
||||
<ObjectRef ref="id1666X4073"/>
|
||||
<ObjectRef ref="id1668X4074"/>
|
||||
<ObjectRef ref="id1670X4075"/>
|
||||
<ObjectRef ref="id1672X4076"/>
|
||||
<ObjectRef ref="id1674X4077"/>
|
||||
<ObjectRef ref="id1676X4078"/>
|
||||
</ObjectGroup>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="stdid02_1" name="Hosts" comment=""/>
|
||||
<ObjectGroup id="stdid03_1" name="Networks" comment="">
|
||||
<Network id="id3F9A1BC7" name="net A" comment="" address="192.168.0.0" netmask="255.255.255.0"/>
|
||||
<Network id="id3F9A1BC8" name="net B" comment="" address="192.168.1.0" netmask="255.255.255.0"/>
|
||||
<Network id="id3F9A1BC9" name="net C" comment="" address="192.168.2.0" netmask="255.255.255.0"/>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup id="stdid15_1" name="Address Ranges" comment="">
|
||||
<AddressRange id="id3F9A1BCA" name="range A" comment="" start_address="192.168.0.10" end_address="192.168.0.250"/>
|
||||
<AddressRange id="id3F9A1BCB" name="range B" comment="" start_address="192.168.1.10" end_address="192.168.1.250"/>
|
||||
<AddressRange id="id3F9A1BCC" name="range C" comment="" start_address="192.168.2.10" end_address="192.168.2.250"/>
|
||||
</ObjectGroup>
|
||||
</ObjectGroup>
|
||||
<ServiceGroup id="stdid05_1" name="Services">
|
||||
<ServiceGroup id="stdid10_1" name="Groups"/>
|
||||
<ServiceGroup id="stdid07_1" name="ICMP"/>
|
||||
<ServiceGroup id="stdid06_1" name="IP"/>
|
||||
<ServiceGroup id="stdid09_1" name="TCP"/>
|
||||
<ServiceGroup id="stdid08_1" name="UDP"/>
|
||||
<ServiceGroup id="stdid13_1" name="Custom"/>
|
||||
<ServiceGroup id="stdid05_1" name="Services" comment="">
|
||||
<ServiceGroup id="stdid05_1_userservices" name="Users" comment=""/>
|
||||
<ServiceGroup id="stdid05_1_og_tag_1" name="TagServices" comment=""/>
|
||||
<ServiceGroup id="stdid10_1" name="Groups" comment=""/>
|
||||
<ServiceGroup id="stdid07_1" name="ICMP" comment=""/>
|
||||
<ServiceGroup id="stdid06_1" name="IP" comment=""/>
|
||||
<ServiceGroup id="stdid09_1" name="TCP" comment=""/>
|
||||
<ServiceGroup id="stdid08_1" name="UDP" comment=""/>
|
||||
<ServiceGroup id="stdid13_1" name="Custom" comment=""/>
|
||||
</ServiceGroup>
|
||||
<ObjectGroup id="stdid12_1" name="Firewalls">
|
||||
<Firewall comment="" host_OS="linux24" id="id3F9A1BD2" name="test" platform="iptables">
|
||||
<NAT id="id3F9A1BD6"/>
|
||||
<Policy id="id3F9A1BD5">
|
||||
<PolicyRule action="Accept" comment="" disabled="False" id="id3F9A1CE7" log="False" position="0">
|
||||
<ObjectGroup id="stdid12_1" name="Firewalls" comment="">
|
||||
<Firewall id="id3F9A1BD2" host_OS="linux24" lastCompiled="0" lastInstalled="0" lastModified="0" platform="iptables" ro="False" name="test" comment="">
|
||||
<NAT id="id3F9A1BD6" name="NAT" comment="" ipv6_rule_set="False" top_rule_set="True"/>
|
||||
<Policy id="id3F9A1BD5" name="Policy" comment="" ipv6_rule_set="False" top_rule_set="True">
|
||||
<PolicyRule id="id3F9A1CE7" action="Accept" disabled="False" log="False" position="0" comment="">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id3F9A1BC7"/>
|
||||
</Src>
|
||||
@ -39,12 +560,15 @@
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions/>
|
||||
</PolicyRule>
|
||||
<PolicyRule action="Accept" disabled="False" id="id3F9A1BF6" log="False" position="1">
|
||||
<PolicyRule id="id3F9A1BF6" action="Accept" disabled="False" log="False" position="1" comment="">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id3F9A1BCA"/>
|
||||
</Src>
|
||||
@ -54,12 +578,15 @@
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions/>
|
||||
</PolicyRule>
|
||||
<PolicyRule action="Accept" disabled="False" id="id3F9A1BEC" log="False" position="2">
|
||||
<PolicyRule id="id3F9A1BEC" action="Accept" disabled="False" log="False" position="2" comment="">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id3F9A1BCA"/>
|
||||
</Src>
|
||||
@ -69,12 +596,15 @@
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions/>
|
||||
</PolicyRule>
|
||||
<PolicyRule action="Accept" disabled="False" id="id3F9A1C2E" log="False" position="3">
|
||||
<PolicyRule id="id3F9A1C2E" action="Accept" disabled="False" log="False" position="3" comment="">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id3F9A1BCB"/>
|
||||
</Src>
|
||||
@ -84,12 +614,15 @@
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions/>
|
||||
</PolicyRule>
|
||||
<PolicyRule action="Accept" disabled="False" id="id3F9A1C96" log="False" position="4">
|
||||
<PolicyRule id="id3F9A1C96" action="Accept" disabled="False" log="False" position="4" comment="">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="id3F9A1BC7"/>
|
||||
</Src>
|
||||
@ -99,12 +632,15 @@
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions/>
|
||||
</PolicyRule>
|
||||
<PolicyRule action="Deny" disabled="False" id="id3F9A1C3A" log="True" position="5">
|
||||
<PolicyRule id="id3F9A1C3A" action="Deny" disabled="False" log="True" position="5" comment="">
|
||||
<Src neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Src>
|
||||
@ -114,31 +650,32 @@
|
||||
<Srv neg="False">
|
||||
<ServiceRef ref="sysid1"/>
|
||||
</Srv>
|
||||
<Itf neg="False">
|
||||
<ObjectRef ref="sysid0"/>
|
||||
</Itf>
|
||||
<When neg="False">
|
||||
<IntervalRef ref="sysid2"/>
|
||||
</When>
|
||||
<PolicyRuleOptions/>
|
||||
<PolicyRuleOptions>
|
||||
<Option name="stateless">True</Option>
|
||||
</PolicyRuleOptions>
|
||||
</PolicyRule>
|
||||
</Policy>
|
||||
<Interface dyn="False" id="id3F9A1BD9" label="" name="eth0" network_zone="sysid0" security_level="0" unnum="False">
|
||||
<IPv4 address="192.0.2.1" id="id3F9A1BDB" name="test:eth0(ip)" netmask="255.255.255.0"/>
|
||||
<InterfacePolicy id="id3F9A1BDA"/>
|
||||
<Routing id="id3F9A1BD2-routing" name="Routing" comment="" ipv6_rule_set="False" top_rule_set="True"/>
|
||||
<Interface id="id3F9A1BD9" bridgeport="False" dyn="False" label="" network_zone="sysid0" security_level="0" unnum="False" unprotected="False" name="eth0" comment="">
|
||||
<IPv4 id="id3F9A1BDB" name="test:eth0(ip)" comment="" address="192.0.2.1" netmask="255.255.255.0"/>
|
||||
</Interface>
|
||||
<Interface dyn="False" id="id3F9A1BDC" label="" name="eth1" network_zone="sysid0" security_level="100" unnum="False">
|
||||
<IPv4 address="192.168.0.1" id="id3F9A1BDE" name="test:eth1(ip)" netmask="255.255.255.0"/>
|
||||
<InterfacePolicy id="id3F9A1BDD"/>
|
||||
<Interface id="id3F9A1BDC" bridgeport="False" dyn="False" label="" network_zone="sysid0" security_level="100" unnum="False" unprotected="False" name="eth1" comment="">
|
||||
<IPv4 id="id3F9A1BDE" name="test:eth1(ip)" comment="" address="192.168.0.1" netmask="255.255.255.0"/>
|
||||
</Interface>
|
||||
<Interface dyn="False" id="id3F9A1BDF" label="" name="eth2" network_zone="sysid0" security_level="100" unnum="False">
|
||||
<IPv4 address="192.168.1.1" id="id3F9A1BE1" name="test:eth2(ip)" netmask="255.255.255.0"/>
|
||||
<InterfacePolicy id="id3F9A1BE0"/>
|
||||
<Interface id="id3F9A1BDF" bridgeport="False" dyn="False" label="" network_zone="sysid0" security_level="100" unnum="False" unprotected="False" name="eth2" comment="">
|
||||
<IPv4 id="id3F9A1BE1" name="test:eth2(ip)" comment="" address="192.168.1.1" netmask="255.255.255.0"/>
|
||||
</Interface>
|
||||
<Interface dyn="False" id="id3F9A1BE2" label="" name="eth3" network_zone="sysid0" security_level="100" unnum="False">
|
||||
<IPv4 address="192.168.2.1" id="id3F9A1BE4" name="test:eth3(ip)" netmask="255.255.255.0"/>
|
||||
<InterfacePolicy id="id3F9A1BE3"/>
|
||||
<Interface id="id3F9A1BE2" bridgeport="False" dyn="False" label="" network_zone="sysid0" security_level="100" unnum="False" unprotected="False" name="eth3" comment="">
|
||||
<IPv4 id="id3F9A1BE4" name="test:eth3(ip)" comment="" address="192.168.2.1" netmask="255.255.255.0"/>
|
||||
</Interface>
|
||||
<Interface dyn="False" id="id3F9A1BE5" label="" name="lo" network_zone="sysid0" security_level="100" unnum="False">
|
||||
<IPv4 address="127.0.0.1" id="id3F9A1BE7" name="test:lo(ip)" netmask="255.0.0.0"/>
|
||||
<InterfacePolicy id="id3F9A1BE6"/>
|
||||
<Interface id="id3F9A1BE5" bridgeport="False" dyn="False" label="" network_zone="sysid0" security_level="100" unnum="False" unprotected="False" name="lo" comment="">
|
||||
<IPv4 id="id3F9A1BE7" name="test:lo(ip)" comment="" address="127.0.0.1" netmask="255.0.0.0"/>
|
||||
</Interface>
|
||||
<Management address="127.0.0.1">
|
||||
<SNMPManagement enabled="False" snmp_read_community="public" snmp_write_community=""/>
|
||||
@ -152,19 +689,19 @@
|
||||
<Option name="bridging_fw">False</Option>
|
||||
<Option name="check_shading">False</Option>
|
||||
<Option name="clamp_mss_to_mtu">False</Option>
|
||||
<Option name="cmdline"/>
|
||||
<Option name="compiler"/>
|
||||
<Option name="cmdline"></Option>
|
||||
<Option name="compiler"></Option>
|
||||
<Option name="debug">False</Option>
|
||||
<Option name="firewall_is_part_of_any_and_networks">True</Option>
|
||||
<Option name="ignore_empty_groups">False</Option>
|
||||
<Option name="limit_suffix"/>
|
||||
<Option name="limit_suffix"></Option>
|
||||
<Option name="limit_value">0</Option>
|
||||
<Option name="linux24_ip_forward">1</Option>
|
||||
<Option name="linux24_path_ip"/>
|
||||
<Option name="linux24_path_iptables"/>
|
||||
<Option name="linux24_path_logger"/>
|
||||
<Option name="linux24_path_lsmod"/>
|
||||
<Option name="linux24_path_modprobe"/>
|
||||
<Option name="linux24_path_ip"></Option>
|
||||
<Option name="linux24_path_iptables"></Option>
|
||||
<Option name="linux24_path_logger"></Option>
|
||||
<Option name="linux24_path_lsmod"></Option>
|
||||
<Option name="linux24_path_modprobe"></Option>
|
||||
<Option name="linux24_tcp_fin_timeout">30</Option>
|
||||
<Option name="linux24_tcp_keepalive_interval">1800</Option>
|
||||
<Option name="load_modules">True</Option>
|
||||
@ -178,9 +715,9 @@
|
||||
<Option name="log_tcp_seq">False</Option>
|
||||
<Option name="loopback_interface">lo</Option>
|
||||
<Option name="manage_virtual_addr">True</Option>
|
||||
<Option name="snmp_contact"/>
|
||||
<Option name="snmp_description"/>
|
||||
<Option name="snmp_location"/>
|
||||
<Option name="snmp_contact"></Option>
|
||||
<Option name="snmp_description"></Option>
|
||||
<Option name="snmp_location"></Option>
|
||||
<Option name="ulog_cprange">0</Option>
|
||||
<Option name="ulog_nlgroup">1</Option>
|
||||
<Option name="ulog_qthreshold">1</Option>
|
||||
@ -190,11 +727,11 @@
|
||||
</FirewallOptions>
|
||||
</Firewall>
|
||||
</ObjectGroup>
|
||||
<IntervalGroup id="stdid11_1" name="Time"/>
|
||||
<IntervalGroup id="stdid11_1" name="Time" comment=""/>
|
||||
</Library>
|
||||
<Library color="#d4f8ff" comment="Standard objects" id="syslib000" name="Standard" ro="True">
|
||||
<AnyIPService comment="Any IP Service" id="sysid1" name="Any" protocol_num="0"/>
|
||||
<AnyInterval comment="Any Interval" from_day="-1" from_hour="-1" from_minute="-1" from_month="-1" from_weekday="-1" from_year="-1" id="sysid2" name="Any" to_day="-1" to_hour="-1" to_minute="-1" to_month="-1" to_weekday="-1" to_year="-1"/>
|
||||
<AnyNetwork comment="Any Network" id="sysid0" name="Any" address="0.0.0.0" netmask="0.0.0.0"/>
|
||||
<Library id="syslib000" color="#d4f8ff" ro="True" name="Standard" comment="Standard objects">
|
||||
<AnyIPService id="sysid1" protocol_num="0" name="Any" comment="Any IP Service"/>
|
||||
<AnyNetwork id="sysid0" name="Any" comment="Any Network" address="0.0.0.0" netmask="0.0.0.0"/>
|
||||
<AnyInterval id="sysid2" days_of_week="0,1,2,3,4,5,6" from_day="-1" from_hour="-1" from_minute="-1" from_month="-1" from_weekday="-1" from_year="-1" to_day="-1" to_hour="-1" to_minute="-1" to_month="-1" to_weekday="-1" to_year="-1" name="Any" comment="Any Interval"/>
|
||||
</Library>
|
||||
</FWObjectDatabase>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user