From f8edf09a7968b82650757caace8d7dc69ac109bf Mon Sep 17 00:00:00 2001 From: Tim Young Date: Mon, 19 Mar 2018 13:38:00 -0500 Subject: [PATCH] Wireless practice puzzles. Lots of physical wiring issues, wireless, etc. More for troubleshooting practice. --- EduNetworkBuilder/EduNetworkBuilder.csproj | 6 + EduNetworkBuilder/NB.cs | 2 + .../Properties/Resources.Designer.cs | 60 + EduNetworkBuilder/Properties/Resources.resx | 18 + .../Resources/Level5_Practice1.enbx | 4308 +++++++++++++++ .../Resources/Level5_Practice2.enbx | 4389 +++++++++++++++ .../Resources/Level5_Practice3.enbx | 4396 +++++++++++++++ .../Resources/Level5_Practice4.enbx | 4399 +++++++++++++++ .../Resources/Level5_Practice5.enbx | 4484 ++++++++++++++++ .../Resources/Level5_Practice6.enbx | 4694 +++++++++++++++++ EduNetworkBuilder/Resources/ReleaseNotes.rtf | 81 +- 11 files changed, 26797 insertions(+), 40 deletions(-) create mode 100644 EduNetworkBuilder/Resources/Level5_Practice1.enbx create mode 100644 EduNetworkBuilder/Resources/Level5_Practice2.enbx create mode 100644 EduNetworkBuilder/Resources/Level5_Practice3.enbx create mode 100644 EduNetworkBuilder/Resources/Level5_Practice4.enbx create mode 100644 EduNetworkBuilder/Resources/Level5_Practice5.enbx create mode 100644 EduNetworkBuilder/Resources/Level5_Practice6.enbx diff --git a/EduNetworkBuilder/EduNetworkBuilder.csproj b/EduNetworkBuilder/EduNetworkBuilder.csproj index 8c53146..dbf361d 100644 --- a/EduNetworkBuilder/EduNetworkBuilder.csproj +++ b/EduNetworkBuilder/EduNetworkBuilder.csproj @@ -347,6 +347,12 @@ + + + + + + diff --git a/EduNetworkBuilder/NB.cs b/EduNetworkBuilder/NB.cs index 7cce9e4..2d3ceff 100644 --- a/EduNetworkBuilder/NB.cs +++ b/EduNetworkBuilder/NB.cs @@ -86,6 +86,8 @@ namespace EduNetworkBuilder Level5_WirelessRouters, Level5_WirelessDevices, Level5_WirelessBridge, Level5_WirelessRepeater, Level5_WirelessRepeater2, Level5_WirelessAccessPoint, Level5_WirelessCorruption, Level5_Failed, Level5_LostPacket, Level5_HereComesTrouble, Level5_APProblems, Level5_LineOfSight, + Level5_Practice1, Level5_Practice2, Level5_Practice3, Level5_Practice4, + Level5_Practice5, Level5_Practice6, Level6_VLAN_Intro, Level6_VLAN_Intro2, Level6_Intro3_LockedOut, Level6_ForbiddenVLAN, Level6_TaggedBetweenSwitches, Level6_VLANRouting, Level6_VLANRouting2, level6_UntaggedAndDHCP, Level6_SorryBoss, Level6_VLANFrustrations, Level6_TwoAccessPoints, Level6_VlanRouting3, Level6_ConnectTheLaptop, Level6_CleanSlate, Level6_WhereFrom, diff --git a/EduNetworkBuilder/Properties/Resources.Designer.cs b/EduNetworkBuilder/Properties/Resources.Designer.cs index cf50a2a..e21f2bd 100644 --- a/EduNetworkBuilder/Properties/Resources.Designer.cs +++ b/EduNetworkBuilder/Properties/Resources.Designer.cs @@ -981,6 +981,66 @@ namespace EduNetworkBuilder.Properties { } } + /// + /// Looks up a localized resource of type System.Byte[]. + /// + internal static byte[] Level5_Practice1 { + get { + object obj = ResourceManager.GetObject("Level5_Practice1", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Byte[]. + /// + internal static byte[] Level5_Practice2 { + get { + object obj = ResourceManager.GetObject("Level5_Practice2", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Byte[]. + /// + internal static byte[] Level5_Practice3 { + get { + object obj = ResourceManager.GetObject("Level5_Practice3", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Byte[]. + /// + internal static byte[] Level5_Practice4 { + get { + object obj = ResourceManager.GetObject("Level5_Practice4", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Byte[]. + /// + internal static byte[] Level5_Practice5 { + get { + object obj = ResourceManager.GetObject("Level5_Practice5", resourceCulture); + return ((byte[])(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Byte[]. + /// + internal static byte[] Level5_Practice6 { + get { + object obj = ResourceManager.GetObject("Level5_Practice6", resourceCulture); + return ((byte[])(obj)); + } + } + /// /// Looks up a localized resource of type System.Byte[]. /// diff --git a/EduNetworkBuilder/Properties/Resources.resx b/EduNetworkBuilder/Properties/Resources.resx index 990d10d..16b826f 100644 --- a/EduNetworkBuilder/Properties/Resources.resx +++ b/EduNetworkBuilder/Properties/Resources.resx @@ -544,4 +544,22 @@ ..\Resources\Level1_Practice7.enbx;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + ..\Resources\Level5_Practice1.enbx;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\Level5_Practice2.enbx;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\Level5_Practice3.enbx;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\Level5_Practice4.enbx;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\Level5_Practice5.enbx;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + ..\Resources\Level5_Practice6.enbx;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file diff --git a/EduNetworkBuilder/Resources/Level5_Practice1.enbx b/EduNetworkBuilder/Resources/Level5_Practice1.enbx new file mode 100644 index 0000000..76bdb42 --- /dev/null +++ b/EduNetworkBuilder/Resources/Level5_Practice1.enbx @@ -0,0 +1,4308 @@ + + + + + + Practice1 + + 1024 + 1024 + 60 + host + 5 + 21 + 512 + none + True + False + + firewall0 + 60 + 175 + 670,200 + firewall + False + False + + 192.168.5.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 175 + 176 + firewall0 + lo0 + + lo + 176 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wan + wan0 + + 175 + 179 + firewall0 + wan0 + + wan + 179 + False + + wan0 + + 192.168.5.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 175 + 177 + firewall0 + eth0 + + eth + 177 + False + + eth0 + + 192.168.1.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 175 + 178 + firewall0 + eth1 + + eth + 178 + False + + eth1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + google.com + 60 + 190 + 320,50 + server + False + False + + 8.8.8.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 190 + 191 + server0 + lo0 + + lo + 191 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 190 + 192 + server0 + eth0 + + eth + 192 + False + + eth0 + + 8.8.8.8 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + laptop0 + 60 + 410 + 180,800 + laptop + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 410 + 411 + laptop0 + lo0 + + lo + 411 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 410 + 412 + laptop0 + eth0 + + eth + 412 + True + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan2 + + 410 + 413 + laptop0 + wlan2 + + wlan + 413 + True + + + + wlan2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + laptop1 + 60 + 436 + 20,410 + laptop + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 436 + 437 + laptop1 + lo0 + + lo + 437 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 436 + 438 + laptop1 + eth0 + + eth + 438 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan2 + + 436 + 439 + laptop1 + wlan2 + + wlan + 439 + True + WirelessKey + LAN + + wlan2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch0 + 60 + 132 + 180,690 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 132 + 133 + net_switch0 + lo0 + + lo + 133 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 132 + 134 + net_switch0 + management_interface0 + + management_interface + 134 + False + + management_interface0 + + 192.168.1.13 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 132 + 135 + net_switch0 + port1 + + port + 135 + False + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 132 + 136 + net_switch0 + port2 + + port + 136 + False + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 132 + 137 + net_switch0 + port3 + + port + 137 + False + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 132 + 138 + net_switch0 + port4 + + port + 138 + False + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 132 + 139 + net_switch0 + port5 + + port + 139 + False + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 132 + 140 + net_switch0 + port6 + + port + 140 + False + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 132 + 141 + net_switch0 + port7 + + port + 141 + False + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch1 + 60 + 142 + 736,649 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 142 + 143 + net_switch1 + lo0 + + lo + 143 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 142 + 144 + net_switch1 + management_interface0 + + management_interface + 144 + False + + management_interface0 + + 192.168.1.11 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 142 + 145 + net_switch1 + port1 + + port + 145 + False + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 142 + 146 + net_switch1 + port2 + + port + 146 + False + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 142 + 147 + net_switch1 + port3 + + port + 147 + False + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 142 + 148 + net_switch1 + port4 + + port + 148 + False + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 142 + 149 + net_switch1 + port5 + + port + 149 + False + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 142 + 150 + net_switch1 + port6 + + port + 150 + False + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 142 + 151 + net_switch1 + port7 + + port + 151 + False + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch2 + 60 + 283 + 736,279 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 283 + 284 + net_switch2 + lo0 + + lo + 284 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 283 + 285 + net_switch2 + management_interface0 + + management_interface + 285 + False + + management_interface0 + + 192.168.1.10 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 283 + 286 + net_switch2 + port1 + + port + 286 + False + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 283 + 287 + net_switch2 + port2 + + port + 287 + False + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 283 + 288 + net_switch2 + port3 + + port + 288 + False + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 283 + 289 + net_switch2 + port4 + + port + 289 + False + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 283 + 290 + net_switch2 + port5 + + port + 290 + False + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 283 + 291 + net_switch2 + port6 + + port + 291 + False + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 283 + 292 + net_switch2 + port7 + + port + 292 + False + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch3 + 60 + 388 + 180,300 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 388 + 389 + net_switch3 + lo0 + + lo + 389 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 388 + 390 + net_switch3 + management_interface0 + + management_interface + 390 + False + + + + management_interface0 + + 192.168.1.12 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 388 + 391 + net_switch3 + port1 + + port + 391 + False + + + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 388 + 392 + net_switch3 + port2 + + port + 392 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 388 + 393 + net_switch3 + port3 + + port + 393 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 388 + 394 + net_switch3 + port4 + + port + 394 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 388 + 395 + net_switch3 + port5 + + port + 395 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 388 + 396 + net_switch3 + port6 + + port + 396 + False + + + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 388 + 397 + net_switch3 + port7 + + port + 397 + False + + + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc0 + 60 + 109 + 40,630 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 109 + 110 + pc0 + lo0 + + lo + 110 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 109 + 111 + pc0 + eth0 + + eth + 111 + False + + eth0 + + 192.168.1.22 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc1 + 60 + 112 + 40,770 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 112 + 113 + pc1 + lo0 + + lo + 113 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 112 + 114 + pc1 + eth0 + + eth + 114 + False + + eth0 + + 192.168.1.23 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc2 + 60 + 115 + 820,510 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 115 + 116 + pc2 + lo0 + + lo + 116 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 115 + 117 + pc2 + eth0 + + eth + 117 + False + + eth0 + + 192.168.1.20 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc3 + 60 + 118 + 820,800 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 118 + 119 + pc3 + lo0 + + lo + 119 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 118 + 120 + pc3 + eth0 + + eth + 120 + False + + eth0 + + 192.168.1.21 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc4 + 60 + 398 + 30,200 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 398 + 399 + pc4 + lo0 + + lo + 399 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 398 + 400 + pc4 + eth0 + + eth + 400 + True + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc5 + 60 + 401 + 20,310 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 401 + 402 + pc5 + lo0 + + lo + 402 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 401 + 403 + pc5 + eth0 + + eth + 403 + True + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc6 + 60 + 404 + 830,300 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 404 + 405 + pc6 + lo0 + + lo + 405 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 404 + 406 + pc6 + eth0 + + eth + 406 + True + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc7 + 60 + 407 + 670,790 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 407 + 408 + pc7 + lo0 + + lo + 408 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 407 + 409 + pc7 + eth0 + + eth + 409 + True + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + router0 + 60 + 182 + 670,50 + router + False + False + + 192.168.7.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 182 + 183 + router0 + lo0 + + lo + 183 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 182 + 184 + router0 + eth0 + + eth + 184 + False + + eth0 + + 192.168.5.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 182 + 185 + router0 + eth1 + + eth + 185 + False + + eth1 + + 192.168.7.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + router1 + 60 + 186 + 510,50 + router + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 186 + 187 + router1 + lo0 + + lo + 187 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 186 + 188 + router1 + eth0 + + eth + 188 + False + + eth0 + + 8.8.8.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 186 + 189 + router1 + eth1 + + eth + 189 + False + + eth1 + + 192.168.7.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + 192.168.5.0 + 255.255.255.0 + 192.168.7.2 + route + + + + server0 + 60 + 302 + 820,190 + server + False + True + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 302 + 303 + server0 + lo0 + + lo + 303 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 302 + 304 + server0 + eth0 + + eth + 304 + False + + eth0 + + 192.168.1.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + 127.0.0.1 + 0.0.0.0 + 0.0.0.0 + route + + + 192.168.1.2 + 192.168.1.50 + 192.168.1.70 + route + + + + server1 + 60 + 472 + 180,190 + server + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 472 + 473 + server1 + lo0 + + lo + 473 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 472 + 474 + server1 + eth0 + + eth + 474 + False + + eth0 + + 192.168.1.3 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + tree0 + 60 + 100 + 350,760 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 100 + 101 + tree0 + lo0 + + lo + 101 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 100 + 102 + tree0 + eth0 + + eth + 102 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree1 + 60 + 103 + 390,610 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 103 + 104 + tree1 + lo0 + + lo + 104 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 103 + 105 + tree1 + eth0 + + eth + 105 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree10 + 60 + 361 + 530,570 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 361 + 362 + tree10 + lo0 + + lo + 362 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 361 + 363 + tree10 + eth0 + + eth + 363 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree11 + 60 + 364 + 510,840 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 364 + 365 + tree11 + lo0 + + lo + 365 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 364 + 366 + tree11 + eth0 + + eth + 366 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree12 + 60 + 367 + 580,210 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 367 + 368 + tree12 + lo0 + + lo + 368 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 367 + 369 + tree12 + eth0 + + eth + 369 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree13 + 60 + 370 + 260,210 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 370 + 371 + tree13 + lo0 + + lo + 371 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 370 + 372 + tree13 + eth0 + + eth + 372 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree14 + 60 + 373 + 590,390 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 373 + 374 + tree14 + lo0 + + lo + 374 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 373 + 375 + tree14 + eth0 + + eth + 375 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree15 + 60 + 376 + 260,380 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 376 + 377 + tree15 + lo0 + + lo + 377 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 376 + 378 + tree15 + eth0 + + eth + 378 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree2 + 60 + 106 + 470,720 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 106 + 107 + tree2 + lo0 + + lo + 107 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 106 + 108 + tree2 + eth0 + + eth + 108 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree3 + 60 + 225 + 320,660 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 225 + 226 + tree3 + lo0 + + lo + 226 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 225 + 227 + tree3 + eth0 + + eth + 227 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree4 + 60 + 228 + 510,650 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 228 + 229 + tree4 + lo0 + + lo + 229 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 228 + 230 + tree4 + eth0 + + eth + 230 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree5 + 60 + 314 + 360,300 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 314 + 315 + tree5 + lo0 + + lo + 315 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 314 + 316 + tree5 + eth0 + + eth + 316 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree6 + 60 + 317 + 470,290 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 317 + 318 + tree6 + lo0 + + lo + 318 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 317 + 319 + tree6 + eth0 + + eth + 319 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree7 + 60 + 320 + 370,430 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 320 + 321 + tree7 + lo0 + + lo + 321 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 320 + 322 + tree7 + eth0 + + eth + 322 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree8 + 60 + 323 + 450,410 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 323 + 324 + tree8 + lo0 + + lo + 324 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 323 + 325 + tree8 + eth0 + + eth + 325 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree9 + 60 + 358 + 300,570 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 358 + 359 + tree9 + lo0 + + lo + 359 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 358 + 360 + tree9 + eth0 + + eth + 360 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wap0 + 60 + 121 + 640,550 + wap + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 121 + 124 + wap0 + lo0 + + lo + 124 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 121 + 125 + wap0 + eth1 + + eth + 125 + False + + eth1 + + 192.168.1.20 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport2 + + 121 + 126 + wap0 + wport2 + + wport + 126 + False + OfficeKey + OfficeNet + + wport2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport3 + + 121 + 127 + wap0 + wport3 + + wport + 127 + False + OfficeKey + OfficeNet + + wport3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport4 + + 121 + 128 + wap0 + wport4 + + wport + 128 + False + OfficeKey + OfficeNet + + wport4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport5 + + 121 + 129 + wap0 + wport5 + + wport + 129 + False + OfficeKey + OfficeNet + + wport5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport6 + + 121 + 130 + wap0 + wport6 + + wport + 130 + False + OfficeKey + OfficeNet + + wport6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport7 + + 121 + 131 + wap0 + wport7 + + wport + 131 + False + OfficeKey + OfficeNet + + wport7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wap1 + 60 + 414 + 110,390 + wap + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 414 + 417 + wap1 + lo0 + + lo + 417 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 414 + 418 + wap1 + eth1 + + eth + 418 + False + + + + eth1 + + 192.168.1.22 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport2 + + 414 + 419 + wap1 + wport2 + + wport + 419 + False + WirelessKey + LAN + + wport2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport3 + + 414 + 420 + wap1 + wport3 + + wport + 420 + False + WirelessKey + LAN + + wport3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport4 + + 414 + 421 + wap1 + wport4 + + wport + 421 + False + WirelessKey + LAN + + wport4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport5 + + 414 + 422 + wap1 + wport5 + + wport + 422 + False + WirelessKey + LAN + + wport5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport6 + + 414 + 423 + wap1 + wport6 + + wport + 423 + False + WirelessKey + LAN + + wport6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport7 + + 414 + 424 + wap1 + wport7 + + wport + 424 + False + WirelessKey + LAN + + wport7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wbridge0 + 60 + 152 + 181,519 + wbridge + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 152 + 155 + wbridge0 + lo0 + + lo + 155 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan1 + + 152 + 156 + wbridge0 + wlan1 + + wlan + 156 + False + OfficeKey + OfficeNet + + wlan1 + + 192.168.1.21 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 152 + 157 + wbridge0 + port2 + + port + 157 + False + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 152 + 158 + wbridge0 + port3 + + port + 158 + False + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 152 + 159 + wbridge0 + port4 + + port + 159 + False + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 152 + 160 + wbridge0 + port5 + + port + 160 + False + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + + 175 + 179 + firewall0 + wan0 + + + 182 + 184 + router0 + eth0 + + firewall0_link_router0 + normal + 247 + + + + 190 + 192 + server0 + eth0 + + + 186 + 188 + router1 + eth0 + + google.com_link_router1 + normal + 193 + + + + 410 + 412 + laptop0 + eth0 + + + 132 + 138 + net_switch0 + port4 + + laptop0_link_net_switch0 + normal + 455 + + + + 436 + 439 + laptop1 + wlan2 + + + 414 + 419 + wap1 + wport2 + + laptop1_link_wap1 + wireless + 441 + + + + 132 + 135 + net_switch0 + port1 + + + 152 + 160 + wbridge0 + port5 + + net_switch0_link_wbridge0 + normal + 169 + + + + 142 + 150 + net_switch1 + port6 + + + 283 + 292 + net_switch2 + port7 + + net_switch1_link_net_switch2 + normal + 294 + + + + 283 + 286 + net_switch2 + port1 + + + 175 + 177 + firewall0 + eth0 + + net_switch2_link_firewall0 + normal + 296 + + + + 283 + 288 + net_switch2 + port3 + + + 404 + 406 + pc6 + eth0 + + net_switch2_link_pc6 + normal + 450 + + + + 283 + 287 + net_switch2 + port2 + + + 302 + 304 + server0 + eth0 + + net_switch2_link_server0 + normal + 306 + + + + 109 + 111 + pc0 + eth0 + + + 132 + 136 + net_switch0 + port2 + + pc0_link_net_switch0 + normal + 171 + + + + 112 + 114 + pc1 + eth0 + + + 132 + 137 + net_switch0 + port3 + + pc1_link_net_switch0 + normal + 173 + + + + 115 + 117 + pc2 + eth0 + + + 142 + 145 + net_switch1 + port1 + + pc2_link_net_switch1 + normal + 163 + + + + 118 + 120 + pc3 + eth0 + + + 142 + 146 + net_switch1 + port2 + + pc3_link_net_switch1 + normal + 165 + + + + 398 + 400 + pc4 + eth0 + + + 388 + 391 + net_switch3 + port1 + + pc4_link_net_switch3 + normal + 429 + + + + 401 + 403 + pc5 + eth0 + + + 388 + 392 + net_switch3 + port2 + + pc5_link_net_switch3 + normal + 431 + + + + 407 + 409 + pc7 + eth0 + + + 142 + 147 + net_switch1 + port3 + + pc7_link_net_switch1 + normal + 447 + + + + 182 + 185 + router0 + eth1 + + + 186 + 189 + router1 + eth1 + + router0_link_router1 + normal + 249 + + + + 121 + 125 + wap0 + eth1 + + + 142 + 151 + net_switch1 + port7 + + wap0_link_net_switch1 + normal + 167 + + + + 414 + 418 + wap1 + eth1 + + + 388 + 396 + net_switch3 + port6 + + wap1_link_net_switch3 + normal + 433 + + + + 152 + 159 + wbridge0 + port4 + + + 388 + 397 + net_switch3 + port7 + + wbridge0_link_net_switch3 + normal + 425 + + + + 388 + 395 + net_switch3 + port5 + + + 472 + 474 + server1 + eth0 + + net_switch3_link_server1 + normal + 476 + + + + 152 + 156 + wbridge0 + wlan1 + + + 121 + 126 + wap0 + wport2 + + + wireless + 511 + + + Grass + rectangle + 3, 7, 1013, 1004 + LightGreen + LightGreen + + + LeftBldg + rectangle + 20, 170, 250, 700 + SaddleBrown + SaddleBrown + + + RightBldg + rectangle + 650, 170, 250, 700 + SaddleBrown + SaddleBrown + + + LB_RWall + rectangle + 255, 170, 15, 700 + Gray + Gray + + + RB_RWall + rectangle + 650, 170, 15, 700 + Gray + Gray + + + LB_TWall + rectangle + 20, 170, 15, 700 + Gray + Gray + + + RB_TWall + rectangle + 885, 170, 15, 700 + Gray + Gray + + + LB_BWall + rectangle + 20, 870, 250, 15 + Gray + Gray + + + RB_BWall + rectangle + 650, 870, 250, 15 + Gray + Gray + + + LB_LWall + rectangle + 20, 170, 250, 15 + Gray + Gray + + + RB_LWall + rectangle + 650, 170, 250, 15 + Gray + Gray + + + CenterCement + rectangle + 326, 200, 262, 377 + Gray + Gray + + + CenterPark + rectangle + 359, 270, 188, 247 + LightGreen + LightGreen + + + LWindow + rectangle + 260, 500, 5, 100 + Blue + Blue + + + R_Window + rectangle + 655, 500, 5, 100 + Blue + Blue + + + LSidewalk + rectangle + 255, 300, 100, 80 + Gray + Gray + + + RSidewalk + rectangle + 550, 300, 100, 80 + Gray + Gray + + + LDoor + rectangle + 255, 300, 10, 80 + SaddleBrown + SaddleBrown + + + RDoor + rectangle + 655, 300, 10, 80 + SaddleBrown + SaddleBrown + + Default + + \ No newline at end of file diff --git a/EduNetworkBuilder/Resources/Level5_Practice2.enbx b/EduNetworkBuilder/Resources/Level5_Practice2.enbx new file mode 100644 index 0000000..355ef3d --- /dev/null +++ b/EduNetworkBuilder/Resources/Level5_Practice2.enbx @@ -0,0 +1,4389 @@ + + + + + + Practice2 + + 1024 + 1024 + 60 + host + 5 + 22 + 509 + none + True + False + + firewall0 + 60 + 175 + 670,200 + firewall + False + False + + 192.168.5.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 175 + 176 + firewall0 + lo0 + + lo + 176 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wan + wan0 + + 175 + 179 + firewall0 + wan0 + + wan + 179 + False + + + + wan0 + + 192.168.5.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 175 + 177 + firewall0 + eth0 + + eth + 177 + False + + + + eth0 + + 192.168.1.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 175 + 178 + firewall0 + eth1 + + eth + 178 + False + + + + eth1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + google.com + 60 + 190 + 330,50 + server + False + False + + 8.8.8.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 190 + 191 + server0 + lo0 + + lo + 191 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 190 + 192 + server0 + eth0 + + eth + 192 + False + + + + eth0 + + 8.8.8.8 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + laptop0 + 60 + 410 + 180,800 + laptop + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 410 + 411 + laptop0 + lo0 + + lo + 411 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 410 + 412 + laptop0 + eth0 + + eth + 412 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan2 + + 410 + 413 + laptop0 + wlan2 + + wlan + 413 + True + + wlan2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + laptop1 + 60 + 436 + 20,420 + laptop + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 436 + 437 + laptop1 + lo0 + + lo + 437 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 436 + 438 + laptop1 + eth0 + + eth + 438 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan2 + + 436 + 439 + laptop1 + wlan2 + + wlan + 439 + True + WirelessKey + LAN + + wlan2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch0 + 60 + 132 + 180,690 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 132 + 133 + net_switch0 + lo0 + + lo + 133 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 132 + 134 + net_switch0 + management_interface0 + + management_interface + 134 + False + + + + management_interface0 + + 192.168.1.13 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 132 + 135 + net_switch0 + port1 + + port + 135 + False + + + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 132 + 136 + net_switch0 + port2 + + port + 136 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 132 + 137 + net_switch0 + port3 + + port + 137 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 132 + 138 + net_switch0 + port4 + + port + 138 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 132 + 139 + net_switch0 + port5 + + port + 139 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 132 + 140 + net_switch0 + port6 + + port + 140 + False + + + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 132 + 141 + net_switch0 + port7 + + port + 141 + False + + + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch1 + 60 + 142 + 736,649 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 142 + 143 + net_switch1 + lo0 + + lo + 143 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 142 + 144 + net_switch1 + management_interface0 + + management_interface + 144 + False + + + + management_interface0 + + 192.168.1.11 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 142 + 145 + net_switch1 + port1 + + port + 145 + False + + + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 142 + 146 + net_switch1 + port2 + + port + 146 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 142 + 147 + net_switch1 + port3 + + port + 147 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 142 + 148 + net_switch1 + port4 + + port + 148 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 142 + 149 + net_switch1 + port5 + + port + 149 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 142 + 150 + net_switch1 + port6 + + port + 150 + False + + + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 142 + 151 + net_switch1 + port7 + + port + 151 + False + + + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch2 + 60 + 283 + 736,279 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 283 + 284 + net_switch2 + lo0 + + lo + 284 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 283 + 285 + net_switch2 + management_interface0 + + management_interface + 285 + False + + + + management_interface0 + + 192.168.1.10 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 283 + 286 + net_switch2 + port1 + + port + 286 + False + + + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 283 + 287 + net_switch2 + port2 + + port + 287 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 283 + 288 + net_switch2 + port3 + + port + 288 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 283 + 289 + net_switch2 + port4 + + port + 289 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 283 + 290 + net_switch2 + port5 + + port + 290 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 283 + 291 + net_switch2 + port6 + + port + 291 + False + + + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 283 + 292 + net_switch2 + port7 + + port + 292 + False + + + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch3 + 60 + 388 + 180,300 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 388 + 389 + net_switch3 + lo0 + + lo + 389 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 388 + 390 + net_switch3 + management_interface0 + + management_interface + 390 + False + + management_interface0 + + 192.168.1.12 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 388 + 391 + net_switch3 + port1 + + port + 391 + False + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 388 + 392 + net_switch3 + port2 + + port + 392 + False + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 388 + 393 + net_switch3 + port3 + + port + 393 + False + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 388 + 394 + net_switch3 + port4 + + port + 394 + False + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 388 + 395 + net_switch3 + port5 + + port + 395 + False + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 388 + 396 + net_switch3 + port6 + + port + 396 + False + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 388 + 397 + net_switch3 + port7 + + port + 397 + False + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc0 + 60 + 109 + 40,630 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 109 + 110 + pc0 + lo0 + + lo + 110 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 109 + 111 + pc0 + eth0 + + eth + 111 + False + + + + eth0 + + 192.168.1.22 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc1 + 60 + 112 + 40,770 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 112 + 113 + pc1 + lo0 + + lo + 113 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 112 + 114 + pc1 + eth0 + + eth + 114 + False + + + + eth0 + + 192.168.1.23 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc2 + 60 + 115 + 820,510 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 115 + 116 + pc2 + lo0 + + lo + 116 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 115 + 117 + pc2 + eth0 + + eth + 117 + False + + + + eth0 + + 192.168.1.20 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc3 + 60 + 118 + 820,800 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 118 + 119 + pc3 + lo0 + + lo + 119 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 118 + 120 + pc3 + eth0 + + eth + 120 + False + + + + eth0 + + 192.168.1.21 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc4 + 60 + 398 + 30,200 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 398 + 399 + pc4 + lo0 + + lo + 399 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 398 + 400 + pc4 + eth0 + + eth + 400 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc5 + 60 + 401 + 20,310 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 401 + 402 + pc5 + lo0 + + lo + 402 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 401 + 403 + pc5 + eth0 + + eth + 403 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc6 + 60 + 404 + 830,300 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 404 + 405 + pc6 + lo0 + + lo + 405 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 404 + 406 + pc6 + eth0 + + eth + 406 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc7 + 60 + 407 + 670,790 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 407 + 408 + pc7 + lo0 + + lo + 408 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 407 + 409 + pc7 + eth0 + + eth + 409 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + router0 + 60 + 182 + 670,50 + router + False + False + + 192.168.7.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 182 + 183 + router0 + lo0 + + lo + 183 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 182 + 184 + router0 + eth0 + + eth + 184 + False + + + + eth0 + + 192.168.5.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 182 + 185 + router0 + eth1 + + eth + 185 + False + + + + eth1 + + 192.168.7.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + router1 + 60 + 186 + 510,50 + router + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 186 + 187 + router1 + lo0 + + lo + 187 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 186 + 188 + router1 + eth0 + + eth + 188 + False + + + + eth0 + + 8.8.8.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 186 + 189 + router1 + eth1 + + eth + 189 + False + + + + eth1 + + 192.168.7.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + 192.168.5.0 + 255.255.255.0 + 192.168.7.2 + route + + + + server0 + 60 + 302 + 820,190 + server + False + True + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 302 + 303 + server0 + lo0 + + lo + 303 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 302 + 304 + server0 + eth0 + + eth + 304 + False + + + + eth0 + + 192.168.1.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + 127.0.0.1 + 0.0.0.0 + 0.0.0.0 + route + + + 192.168.1.2 + 192.168.1.50 + 192.168.1.70 + route + + + + server1 + 60 + 472 + 180,190 + server + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 472 + 473 + server1 + lo0 + + lo + 473 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 472 + 474 + server1 + eth0 + + eth + 474 + False + + + + eth0 + + 192.168.1.3 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + tree0 + 60 + 100 + 350,760 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 100 + 101 + tree0 + lo0 + + lo + 101 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 100 + 102 + tree0 + eth0 + + eth + 102 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree1 + 60 + 103 + 390,610 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 103 + 104 + tree1 + lo0 + + lo + 104 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 103 + 105 + tree1 + eth0 + + eth + 105 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree10 + 60 + 361 + 530,570 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 361 + 362 + tree10 + lo0 + + lo + 362 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 361 + 363 + tree10 + eth0 + + eth + 363 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree11 + 60 + 364 + 510,840 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 364 + 365 + tree11 + lo0 + + lo + 365 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 364 + 366 + tree11 + eth0 + + eth + 366 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree12 + 60 + 367 + 580,210 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 367 + 368 + tree12 + lo0 + + lo + 368 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 367 + 369 + tree12 + eth0 + + eth + 369 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree13 + 60 + 370 + 260,210 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 370 + 371 + tree13 + lo0 + + lo + 371 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 370 + 372 + tree13 + eth0 + + eth + 372 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree14 + 60 + 373 + 590,390 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 373 + 374 + tree14 + lo0 + + lo + 374 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 373 + 375 + tree14 + eth0 + + eth + 375 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree15 + 60 + 376 + 260,380 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 376 + 377 + tree15 + lo0 + + lo + 377 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 376 + 378 + tree15 + eth0 + + eth + 378 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree2 + 60 + 106 + 470,720 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 106 + 107 + tree2 + lo0 + + lo + 107 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 106 + 108 + tree2 + eth0 + + eth + 108 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree3 + 60 + 225 + 320,660 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 225 + 226 + tree3 + lo0 + + lo + 226 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 225 + 227 + tree3 + eth0 + + eth + 227 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree4 + 60 + 228 + 510,650 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 228 + 229 + tree4 + lo0 + + lo + 229 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 228 + 230 + tree4 + eth0 + + eth + 230 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree5 + 60 + 314 + 360,300 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 314 + 315 + tree5 + lo0 + + lo + 315 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 314 + 316 + tree5 + eth0 + + eth + 316 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree6 + 60 + 317 + 470,290 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 317 + 318 + tree6 + lo0 + + lo + 318 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 317 + 319 + tree6 + eth0 + + eth + 319 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree7 + 60 + 320 + 370,430 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 320 + 321 + tree7 + lo0 + + lo + 321 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 320 + 322 + tree7 + eth0 + + eth + 322 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree8 + 60 + 323 + 450,410 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 323 + 324 + tree8 + lo0 + + lo + 324 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 323 + 325 + tree8 + eth0 + + eth + 325 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree9 + 60 + 358 + 300,570 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 358 + 359 + tree9 + lo0 + + lo + 359 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 358 + 360 + tree9 + eth0 + + eth + 360 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wap0 + 60 + 121 + 660,520 + wap + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 121 + 124 + wap0 + lo0 + + lo + 124 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 121 + 125 + wap0 + eth1 + + eth + 125 + False + + + + eth1 + + 192.168.1.20 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport2 + + 121 + 126 + wap0 + wport2 + + wport + 126 + False + OfficeKey + OfficeNet + + wport2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport3 + + 121 + 127 + wap0 + wport3 + + wport + 127 + False + OfficeKey + OfficeNet + + wport3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport4 + + 121 + 128 + wap0 + wport4 + + wport + 128 + False + OfficeKey + OfficeNet + + wport4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport5 + + 121 + 129 + wap0 + wport5 + + wport + 129 + False + OfficeKey + OfficeNet + + wport5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport6 + + 121 + 130 + wap0 + wport6 + + wport + 130 + False + OfficeKey + OfficeNet + + wport6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport7 + + 121 + 131 + wap0 + wport7 + + wport + 131 + False + OfficeKey + OfficeNet + + wport7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wap1 + 60 + 414 + 110,390 + wap + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 414 + 417 + wap1 + lo0 + + lo + 417 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 414 + 418 + wap1 + eth1 + + eth + 418 + False + + eth1 + + 192.168.1.22 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport2 + + 414 + 419 + wap1 + wport2 + + wport + 419 + False + WirelessKey + LAN + + wport2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport3 + + 414 + 420 + wap1 + wport3 + + wport + 420 + False + WirelessKey + LAN + + wport3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport4 + + 414 + 421 + wap1 + wport4 + + wport + 421 + False + WirelessKey + LAN + + wport4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport5 + + 414 + 422 + wap1 + wport5 + + wport + 422 + False + WirelessKey + LAN + + wport5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport6 + + 414 + 423 + wap1 + wport6 + + wport + 423 + False + WirelessKey + LAN + + wport6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport7 + + 414 + 424 + wap1 + wport7 + + wport + 424 + False + WirelessKey + LAN + + wport7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wbridge0 + 60 + 152 + 180,520 + wbridge + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 152 + 155 + wbridge0 + lo0 + + lo + 155 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan1 + + 152 + 156 + wbridge0 + wlan1 + + wlan + 156 + False + WirelessKey + LAN + + wlan1 + + 192.168.1.21 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 152 + 157 + wbridge0 + port2 + + port + 157 + False + WirelessKey + LAN + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 152 + 158 + wbridge0 + port3 + + port + 158 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 152 + 159 + wbridge0 + port4 + + port + 159 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 152 + 160 + wbridge0 + port5 + + port + 160 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + + 175 + 179 + firewall0 + wan0 + + + 182 + 184 + router0 + eth0 + + firewall0_link_router0 + normal + 247 + + + + 190 + 192 + server0 + eth0 + + + 186 + 188 + router1 + eth0 + + google.com_link_router1 + normal + 193 + + + + 410 + 412 + laptop0 + eth0 + + + 132 + 138 + net_switch0 + port4 + + laptop0_link_net_switch0 + normal + 455 + + + + 436 + 439 + laptop1 + wlan2 + + + 414 + 419 + wap1 + wport2 + + laptop1_link_wap1 + wireless + 441 + + + + 132 + 135 + net_switch0 + port1 + + + 152 + 160 + wbridge0 + port5 + + net_switch0_link_wbridge0 + normal + 169 + + + + 142 + 150 + net_switch1 + port6 + + + 283 + 292 + net_switch2 + port7 + + net_switch1_link_net_switch2 + normal + 294 + + + + 283 + 286 + net_switch2 + port1 + + + 175 + 177 + firewall0 + eth0 + + net_switch2_link_firewall0 + normal + 296 + + + + 283 + 288 + net_switch2 + port3 + + + 404 + 406 + pc6 + eth0 + + net_switch2_link_pc6 + normal + 450 + + + + 283 + 287 + net_switch2 + port2 + + + 302 + 304 + server0 + eth0 + + net_switch2_link_server0 + normal + 306 + + + + 388 + 395 + net_switch3 + port5 + + + 472 + 474 + server1 + eth0 + + net_switch3_link_server1 + normal + 476 + + + + 109 + 111 + pc0 + eth0 + + + 132 + 136 + net_switch0 + port2 + + pc0_link_net_switch0 + normal + 171 + + + + 112 + 114 + pc1 + eth0 + + + 132 + 137 + net_switch0 + port3 + + pc1_link_net_switch0 + normal + 173 + + + + 115 + 117 + pc2 + eth0 + + + 142 + 145 + net_switch1 + port1 + + pc2_link_net_switch1 + normal + 163 + + + + 118 + 120 + pc3 + eth0 + + + 142 + 146 + net_switch1 + port2 + + pc3_link_net_switch1 + normal + 165 + + + + 398 + 400 + pc4 + eth0 + + + 388 + 391 + net_switch3 + port1 + + pc4_link_net_switch3 + normal + 429 + + + + 401 + 403 + pc5 + eth0 + + + 388 + 392 + net_switch3 + port2 + + pc5_link_net_switch3 + normal + 431 + + + + 407 + 409 + pc7 + eth0 + + + 142 + 147 + net_switch1 + port3 + + pc7_link_net_switch1 + normal + 447 + + + + 182 + 185 + router0 + eth1 + + + 186 + 189 + router1 + eth1 + + router0_link_router1 + normal + 249 + + + + 121 + 125 + wap0 + eth1 + + + 142 + 151 + net_switch1 + port7 + + wap0_link_net_switch1 + normal + 167 + + + + 414 + 418 + wap1 + eth1 + + + 388 + 396 + net_switch3 + port6 + + wap1_link_net_switch3 + normal + 433 + + + + 152 + 159 + wbridge0 + port4 + + + 388 + 397 + net_switch3 + port7 + + wbridge0_link_net_switch3 + normal + 425 + + + + 152 + 156 + wbridge0 + wlan1 + + + 414 + 420 + wap1 + wport3 + + + wireless + 508 + + + server0 + server1 + SuccessfullyPings + + + Grass + rectangle + 3, 7, 1013, 1004 + LightGreen + LightGreen + + + LeftBldg + rectangle + 20, 170, 250, 700 + SaddleBrown + SaddleBrown + + + RightBldg + rectangle + 650, 170, 250, 700 + SaddleBrown + SaddleBrown + + + LB_RWall + rectangle + 255, 170, 15, 700 + Gray + Gray + + + RB_RWall + rectangle + 650, 170, 15, 700 + Gray + Gray + + + LB_TWall + rectangle + 20, 170, 15, 700 + Gray + Gray + + + RB_TWall + rectangle + 885, 170, 15, 700 + Gray + Gray + + + LB_BWall + rectangle + 20, 870, 250, 15 + Gray + Gray + + + RB_BWall + rectangle + 650, 870, 250, 15 + Gray + Gray + + + LB_LWall + rectangle + 20, 170, 250, 15 + Gray + Gray + + + RB_LWall + rectangle + 650, 170, 250, 15 + Gray + Gray + + + CenterCement + rectangle + 326, 200, 262, 377 + Gray + Gray + + + CenterPark + rectangle + 359, 270, 188, 247 + LightGreen + LightGreen + + + LWindow + rectangle + 260, 500, 5, 100 + Blue + Blue + + + R_Window + rectangle + 655, 500, 5, 100 + Blue + Blue + + + LSidewalk + rectangle + 255, 300, 100, 80 + Gray + Gray + + + RSidewalk + rectangle + 550, 300, 100, 80 + Gray + Gray + + + LDoor + rectangle + 255, 300, 10, 80 + SaddleBrown + SaddleBrown + + + RDoor + rectangle + 655, 300, 10, 80 + SaddleBrown + SaddleBrown + + Default + + \ No newline at end of file diff --git a/EduNetworkBuilder/Resources/Level5_Practice3.enbx b/EduNetworkBuilder/Resources/Level5_Practice3.enbx new file mode 100644 index 0000000..97d4f3c --- /dev/null +++ b/EduNetworkBuilder/Resources/Level5_Practice3.enbx @@ -0,0 +1,4396 @@ + + + + + + Practice3 + + 1024 + 1024 + 60 + host + 5 + 23 + 505 + none + True + False + + firewall0 + 60 + 175 + 670,200 + firewall + False + False + + 192.168.5.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 175 + 176 + firewall0 + lo0 + + lo + 176 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wan + wan0 + + 175 + 179 + firewall0 + wan0 + + wan + 179 + False + + + + wan0 + + 192.168.5.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 175 + 177 + firewall0 + eth0 + + eth + 177 + False + + + + eth0 + + 192.168.1.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 175 + 178 + firewall0 + eth1 + + eth + 178 + False + + + + eth1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + google.com + 60 + 190 + 330,50 + server + False + False + + 8.8.8.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 190 + 191 + server0 + lo0 + + lo + 191 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 190 + 192 + server0 + eth0 + + eth + 192 + False + + + + eth0 + + 8.8.8.8 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + laptop0 + 60 + 410 + 180,800 + laptop + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 410 + 411 + laptop0 + lo0 + + lo + 411 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 410 + 412 + laptop0 + eth0 + + eth + 412 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan2 + + 410 + 413 + laptop0 + wlan2 + + wlan + 413 + True + + wlan2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + laptop1 + 60 + 436 + 40,480 + laptop + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 436 + 437 + laptop1 + lo0 + + lo + 437 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 436 + 438 + laptop1 + eth0 + + eth + 438 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan2 + + 436 + 439 + laptop1 + wlan2 + + wlan + 439 + True + WirelessKey + LAN + + wlan2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch0 + 60 + 132 + 180,690 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 132 + 133 + net_switch0 + lo0 + + lo + 133 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 132 + 134 + net_switch0 + management_interface0 + + management_interface + 134 + False + + + + management_interface0 + + 192.168.1.13 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 132 + 135 + net_switch0 + port1 + + port + 135 + False + + + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 132 + 136 + net_switch0 + port2 + + port + 136 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 132 + 137 + net_switch0 + port3 + + port + 137 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 132 + 138 + net_switch0 + port4 + + port + 138 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 132 + 139 + net_switch0 + port5 + + port + 139 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 132 + 140 + net_switch0 + port6 + + port + 140 + False + + + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 132 + 141 + net_switch0 + port7 + + port + 141 + False + + + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch1 + 60 + 142 + 736,649 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 142 + 143 + net_switch1 + lo0 + + lo + 143 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 142 + 144 + net_switch1 + management_interface0 + + management_interface + 144 + False + + + + management_interface0 + + 192.168.1.11 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 142 + 145 + net_switch1 + port1 + + port + 145 + False + + + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 142 + 146 + net_switch1 + port2 + + port + 146 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 142 + 147 + net_switch1 + port3 + + port + 147 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 142 + 148 + net_switch1 + port4 + + port + 148 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 142 + 149 + net_switch1 + port5 + + port + 149 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 142 + 150 + net_switch1 + port6 + + port + 150 + False + + + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 142 + 151 + net_switch1 + port7 + + port + 151 + False + + + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch2 + 60 + 283 + 736,279 + net_switch + False + False + True + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 283 + 284 + net_switch2 + lo0 + + lo + 284 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 283 + 285 + net_switch2 + management_interface0 + + management_interface + 285 + False + + + + management_interface0 + + 192.168.1.10 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 283 + 286 + net_switch2 + port1 + + port + 286 + False + + + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 283 + 287 + net_switch2 + port2 + + port + 287 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 283 + 288 + net_switch2 + port3 + + port + 288 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 283 + 289 + net_switch2 + port4 + + port + 289 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 283 + 290 + net_switch2 + port5 + + port + 290 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 283 + 291 + net_switch2 + port6 + + port + 291 + False + + + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 283 + 292 + net_switch2 + port7 + + port + 292 + False + + + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch3 + 60 + 388 + 180,300 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 388 + 389 + net_switch3 + lo0 + + lo + 389 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 388 + 390 + net_switch3 + management_interface0 + + management_interface + 390 + False + + management_interface0 + + 192.168.1.12 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 388 + 391 + net_switch3 + port1 + + port + 391 + False + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 388 + 392 + net_switch3 + port2 + + port + 392 + False + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 388 + 393 + net_switch3 + port3 + + port + 393 + False + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 388 + 394 + net_switch3 + port4 + + port + 394 + False + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 388 + 395 + net_switch3 + port5 + + port + 395 + False + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 388 + 396 + net_switch3 + port6 + + port + 396 + False + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 388 + 397 + net_switch3 + port7 + + port + 397 + False + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc0 + 60 + 109 + 40,630 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 109 + 110 + pc0 + lo0 + + lo + 110 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 109 + 111 + pc0 + eth0 + + eth + 111 + False + + + + eth0 + + 192.168.1.22 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc1 + 60 + 112 + 40,770 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 112 + 113 + pc1 + lo0 + + lo + 113 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 112 + 114 + pc1 + eth0 + + eth + 114 + False + + + + eth0 + + 192.168.1.23 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc2 + 60 + 115 + 820,510 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 115 + 116 + pc2 + lo0 + + lo + 116 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 115 + 117 + pc2 + eth0 + + eth + 117 + False + + + + eth0 + + 192.168.1.20 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc3 + 60 + 118 + 820,800 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 118 + 119 + pc3 + lo0 + + lo + 119 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 118 + 120 + pc3 + eth0 + + eth + 120 + False + + + + eth0 + + 192.168.1.21 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc4 + 60 + 398 + 30,200 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 398 + 399 + pc4 + lo0 + + lo + 399 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 398 + 400 + pc4 + eth0 + + eth + 400 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc5 + 60 + 401 + 30,320 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 401 + 402 + pc5 + lo0 + + lo + 402 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 401 + 403 + pc5 + eth0 + + eth + 403 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc6 + 60 + 404 + 830,300 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 404 + 405 + pc6 + lo0 + + lo + 405 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 404 + 406 + pc6 + eth0 + + eth + 406 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc7 + 60 + 407 + 670,790 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 407 + 408 + pc7 + lo0 + + lo + 408 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 407 + 409 + pc7 + eth0 + + eth + 409 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + router0 + 60 + 182 + 670,50 + router + False + False + + 192.168.7.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 182 + 183 + router0 + lo0 + + lo + 183 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 182 + 184 + router0 + eth0 + + eth + 184 + False + + + + eth0 + + 192.168.5.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 182 + 185 + router0 + eth1 + + eth + 185 + False + + + + eth1 + + 192.168.7.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + router1 + 60 + 186 + 510,50 + router + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 186 + 187 + router1 + lo0 + + lo + 187 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 186 + 188 + router1 + eth0 + + eth + 188 + False + + + + eth0 + + 8.8.8.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 186 + 189 + router1 + eth1 + + eth + 189 + False + + + + eth1 + + 192.168.7.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + 192.168.5.0 + 255.255.255.0 + 192.168.7.2 + route + + + + server0 + 60 + 302 + 820,190 + server + False + True + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 302 + 303 + server0 + lo0 + + lo + 303 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 302 + 304 + server0 + eth0 + + eth + 304 + False + + + + eth0 + + 192.168.1.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + 127.0.0.1 + 0.0.0.0 + 0.0.0.0 + route + + + 192.168.1.2 + 192.168.1.50 + 192.168.1.70 + route + + + + server1 + 60 + 472 + 180,190 + server + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 472 + 473 + server1 + lo0 + + lo + 473 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 472 + 474 + server1 + eth0 + + eth + 474 + False + + + + eth0 + + 192.168.1.3 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + tree0 + 60 + 100 + 350,760 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 100 + 101 + tree0 + lo0 + + lo + 101 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 100 + 102 + tree0 + eth0 + + eth + 102 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree1 + 60 + 103 + 390,610 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 103 + 104 + tree1 + lo0 + + lo + 104 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 103 + 105 + tree1 + eth0 + + eth + 105 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree10 + 60 + 361 + 530,570 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 361 + 362 + tree10 + lo0 + + lo + 362 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 361 + 363 + tree10 + eth0 + + eth + 363 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree11 + 60 + 364 + 510,840 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 364 + 365 + tree11 + lo0 + + lo + 365 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 364 + 366 + tree11 + eth0 + + eth + 366 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree12 + 60 + 367 + 580,210 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 367 + 368 + tree12 + lo0 + + lo + 368 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 367 + 369 + tree12 + eth0 + + eth + 369 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree13 + 60 + 370 + 260,210 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 370 + 371 + tree13 + lo0 + + lo + 371 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 370 + 372 + tree13 + eth0 + + eth + 372 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree14 + 60 + 373 + 590,390 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 373 + 374 + tree14 + lo0 + + lo + 374 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 373 + 375 + tree14 + eth0 + + eth + 375 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree15 + 60 + 376 + 260,380 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 376 + 377 + tree15 + lo0 + + lo + 377 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 376 + 378 + tree15 + eth0 + + eth + 378 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree2 + 60 + 106 + 470,720 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 106 + 107 + tree2 + lo0 + + lo + 107 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 106 + 108 + tree2 + eth0 + + eth + 108 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree3 + 60 + 225 + 320,660 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 225 + 226 + tree3 + lo0 + + lo + 226 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 225 + 227 + tree3 + eth0 + + eth + 227 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree4 + 60 + 228 + 510,650 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 228 + 229 + tree4 + lo0 + + lo + 229 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 228 + 230 + tree4 + eth0 + + eth + 230 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree5 + 60 + 314 + 360,300 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 314 + 315 + tree5 + lo0 + + lo + 315 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 314 + 316 + tree5 + eth0 + + eth + 316 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree6 + 60 + 317 + 470,290 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 317 + 318 + tree6 + lo0 + + lo + 318 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 317 + 319 + tree6 + eth0 + + eth + 319 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree7 + 60 + 320 + 370,430 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 320 + 321 + tree7 + lo0 + + lo + 321 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 320 + 322 + tree7 + eth0 + + eth + 322 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree8 + 60 + 323 + 450,410 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 323 + 324 + tree8 + lo0 + + lo + 324 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 323 + 325 + tree8 + eth0 + + eth + 325 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree9 + 60 + 358 + 300,570 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 358 + 359 + tree9 + lo0 + + lo + 359 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 358 + 360 + tree9 + eth0 + + eth + 360 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wap0 + 60 + 121 + 660,520 + wap + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 121 + 124 + wap0 + lo0 + + lo + 124 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 121 + 125 + wap0 + eth1 + + eth + 125 + False + + + + eth1 + + 192.168.1.20 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport2 + + 121 + 126 + wap0 + wport2 + + wport + 126 + False + OfficeKey + OfficeNet + + wport2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport3 + + 121 + 127 + wap0 + wport3 + + wport + 127 + False + OfficeKey + OfficeNet + + wport3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport4 + + 121 + 128 + wap0 + wport4 + + wport + 128 + False + OfficeKey + OfficeNet + + wport4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport5 + + 121 + 129 + wap0 + wport5 + + wport + 129 + False + OfficeKey + OfficeNet + + wport5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport6 + + 121 + 130 + wap0 + wport6 + + wport + 130 + False + OfficeKey + OfficeNet + + wport6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport7 + + 121 + 131 + wap0 + wport7 + + wport + 131 + False + OfficeKey + OfficeNet + + wport7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wap1 + 60 + 414 + 110,390 + wap + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 414 + 417 + wap1 + lo0 + + lo + 417 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 414 + 418 + wap1 + eth1 + + eth + 418 + False + + eth1 + + 192.168.1.22 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport2 + + 414 + 419 + wap1 + wport2 + + wport + 419 + False + WirelessKey + LAN + + wport2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport3 + + 414 + 420 + wap1 + wport3 + + wport + 420 + False + WirelessKey + LAN + + wport3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport4 + + 414 + 421 + wap1 + wport4 + + wport + 421 + False + WirelessKey + LAN + + wport4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport5 + + 414 + 422 + wap1 + wport5 + + wport + 422 + False + WirelessKey + LAN + + wport5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport6 + + 414 + 423 + wap1 + wport6 + + wport + 423 + False + WirelessKey + LAN + + wport6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport7 + + 414 + 424 + wap1 + wport7 + + wport + 424 + False + WirelessKey + LAN + + wport7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wbridge0 + 60 + 152 + 180,520 + wbridge + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 152 + 155 + wbridge0 + lo0 + + lo + 155 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan1 + + 152 + 156 + wbridge0 + wlan1 + + wlan + 156 + False + OfficeKey + OfficeNet + + wlan1 + + 192.168.1.21 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 152 + 157 + wbridge0 + port2 + + port + 157 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 152 + 158 + wbridge0 + port3 + + port + 158 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 152 + 159 + wbridge0 + port4 + + port + 159 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 152 + 160 + wbridge0 + port5 + + port + 160 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + + 175 + 179 + firewall0 + wan0 + + + 182 + 184 + router0 + eth0 + + firewall0_link_router0 + normal + 247 + + + + 190 + 192 + server0 + eth0 + + + 186 + 188 + router1 + eth0 + + google.com_link_router1 + normal + 193 + + + + 410 + 412 + laptop0 + eth0 + + + 132 + 138 + net_switch0 + port4 + + laptop0_link_net_switch0 + normal + 455 + + + + 436 + 439 + laptop1 + wlan2 + + + 414 + 419 + wap1 + wport2 + + laptop1_link_wap1 + wireless + 441 + + + + 132 + 135 + net_switch0 + port1 + + + 152 + 160 + wbridge0 + port5 + + net_switch0_link_wbridge0 + normal + 169 + + + + 142 + 150 + net_switch1 + port6 + + + 283 + 292 + net_switch2 + port7 + + net_switch1_link_net_switch2 + normal + 294 + + + + 283 + 286 + net_switch2 + port1 + + + 175 + 177 + firewall0 + eth0 + + net_switch2_link_firewall0 + normal + 296 + + + + 283 + 288 + net_switch2 + port3 + + + 404 + 406 + pc6 + eth0 + + net_switch2_link_pc6 + normal + 450 + + + + 283 + 287 + net_switch2 + port2 + + + 302 + 304 + server0 + eth0 + + net_switch2_link_server0 + normal + 306 + + + + 109 + 111 + pc0 + eth0 + + + 132 + 136 + net_switch0 + port2 + + pc0_link_net_switch0 + normal + 171 + + + + 112 + 114 + pc1 + eth0 + + + 132 + 137 + net_switch0 + port3 + + pc1_link_net_switch0 + normal + 173 + + + + 115 + 117 + pc2 + eth0 + + + 142 + 145 + net_switch1 + port1 + + pc2_link_net_switch1 + normal + 163 + + + + 118 + 120 + pc3 + eth0 + + + 142 + 146 + net_switch1 + port2 + + pc3_link_net_switch1 + normal + 165 + + + + 398 + 400 + pc4 + eth0 + + + 388 + 391 + net_switch3 + port1 + + pc4_link_net_switch3 + normal + 429 + + + + 401 + 403 + pc5 + eth0 + + + 388 + 392 + net_switch3 + port2 + + pc5_link_net_switch3 + normal + 431 + + + + 407 + 409 + pc7 + eth0 + + + 142 + 147 + net_switch1 + port3 + + pc7_link_net_switch1 + normal + 447 + + + + 182 + 185 + router0 + eth1 + + + 186 + 189 + router1 + eth1 + + router0_link_router1 + normal + 249 + + + + 121 + 125 + wap0 + eth1 + + + 142 + 151 + net_switch1 + port7 + + wap0_link_net_switch1 + normal + 167 + + + + 414 + 418 + wap1 + eth1 + + + 388 + 396 + net_switch3 + port6 + + wap1_link_net_switch3 + normal + 433 + + + + 152 + 159 + wbridge0 + port4 + + + 388 + 397 + net_switch3 + port7 + + wbridge0_link_net_switch3 + normal + 425 + + + + 388 + 395 + net_switch3 + port5 + + + 472 + 474 + server1 + eth0 + + net_switch3_link_server1 + normal + 476 + + + + 152 + 156 + wbridge0 + wlan1 + + + 121 + 126 + wap0 + wport2 + + + wireless + 504 + + + net_switch2 + net_switch2 + DeviceBlowsUpWithPower + + + pc1 + server0 + SuccessfullyPings + + Power + + Grass + rectangle + 3, 7, 1013, 1004 + LightGreen + LightGreen + + + LeftBldg + rectangle + 20, 170, 250, 700 + SaddleBrown + SaddleBrown + + + RightBldg + rectangle + 650, 170, 250, 700 + SaddleBrown + SaddleBrown + + + LB_RWall + rectangle + 255, 170, 15, 700 + Gray + Gray + + + RB_RWall + rectangle + 650, 170, 15, 700 + Gray + Gray + + + LB_TWall + rectangle + 20, 170, 15, 700 + Gray + Gray + + + RB_TWall + rectangle + 885, 170, 15, 700 + Gray + Gray + + + LB_BWall + rectangle + 20, 870, 250, 15 + Gray + Gray + + + RB_BWall + rectangle + 650, 870, 250, 15 + Gray + Gray + + + LB_LWall + rectangle + 20, 170, 250, 15 + Gray + Gray + + + RB_LWall + rectangle + 650, 170, 250, 15 + Gray + Gray + + + CenterCement + rectangle + 326, 200, 262, 377 + Gray + Gray + + + CenterPark + rectangle + 359, 270, 188, 247 + LightGreen + LightGreen + + + LWindow + rectangle + 260, 500, 5, 100 + Blue + Blue + + + R_Window + rectangle + 655, 500, 5, 100 + Blue + Blue + + + LSidewalk + rectangle + 255, 300, 100, 80 + Gray + Gray + + + RSidewalk + rectangle + 550, 300, 100, 80 + Gray + Gray + + + LDoor + rectangle + 255, 300, 10, 80 + SaddleBrown + SaddleBrown + + + RDoor + rectangle + 655, 300, 10, 80 + SaddleBrown + SaddleBrown + + Default + + \ No newline at end of file diff --git a/EduNetworkBuilder/Resources/Level5_Practice4.enbx b/EduNetworkBuilder/Resources/Level5_Practice4.enbx new file mode 100644 index 0000000..1cb6420 --- /dev/null +++ b/EduNetworkBuilder/Resources/Level5_Practice4.enbx @@ -0,0 +1,4399 @@ + + + + + + Generic Office - Wireless + + 1024 + 1024 + 60 + host + 5 + 10 + 522 + none + True + False + + firewall0 + 60 + 175 + 670,200 + firewall + False + False + + 192.168.5.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 175 + 176 + firewall0 + lo0 + + lo + 176 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wan + wan0 + + 175 + 179 + firewall0 + wan0 + + wan + 179 + False + + + + wan0 + + 192.168.5.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 175 + 177 + firewall0 + eth0 + + eth + 177 + False + + + + eth0 + + 192.168.1.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 175 + 178 + firewall0 + eth1 + + eth + 178 + False + + + + eth1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + google.com + 60 + 190 + 330,50 + server + False + False + + 8.8.8.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 190 + 191 + server0 + lo0 + + lo + 191 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 190 + 192 + server0 + eth0 + + eth + 192 + False + + + + eth0 + + 8.8.8.8 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + laptop0 + 60 + 410 + 180,800 + laptop + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 410 + 411 + laptop0 + lo0 + + lo + 411 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 410 + 412 + laptop0 + eth0 + + eth + 412 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan2 + + 410 + 413 + laptop0 + wlan2 + + wlan + 413 + True + + wlan2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + laptop1 + 60 + 436 + 170,410 + laptop + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 436 + 437 + laptop1 + lo0 + + lo + 437 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 436 + 438 + laptop1 + eth0 + + eth + 438 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan2 + + 436 + 439 + laptop1 + wlan2 + + wlan + 439 + True + WirelessKey + LAN + + wlan2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch0 + 60 + 132 + 90,670 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 132 + 133 + net_switch0 + lo0 + + lo + 133 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 132 + 134 + net_switch0 + management_interface0 + + management_interface + 134 + False + + + + management_interface0 + + 192.168.1.13 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 132 + 135 + net_switch0 + port1 + + port + 135 + False + + + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 132 + 136 + net_switch0 + port2 + + port + 136 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 132 + 137 + net_switch0 + port3 + + port + 137 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 132 + 138 + net_switch0 + port4 + + port + 138 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 132 + 139 + net_switch0 + port5 + + port + 139 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 132 + 140 + net_switch0 + port6 + + port + 140 + False + + + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 132 + 141 + net_switch0 + port7 + + port + 141 + False + + + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch1 + 60 + 142 + 736,649 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 142 + 143 + net_switch1 + lo0 + + lo + 143 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 142 + 144 + net_switch1 + management_interface0 + + management_interface + 144 + False + + + + management_interface0 + + 192.168.1.11 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 142 + 145 + net_switch1 + port1 + + port + 145 + False + + + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 142 + 146 + net_switch1 + port2 + + port + 146 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 142 + 147 + net_switch1 + port3 + + port + 147 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 142 + 148 + net_switch1 + port4 + + port + 148 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 142 + 149 + net_switch1 + port5 + + port + 149 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 142 + 150 + net_switch1 + port6 + + port + 150 + False + + + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 142 + 151 + net_switch1 + port7 + + port + 151 + False + + + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch2 + 60 + 283 + 736,279 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 283 + 284 + net_switch2 + lo0 + + lo + 284 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 283 + 285 + net_switch2 + management_interface0 + + management_interface + 285 + False + + + + management_interface0 + + 192.168.1.10 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 283 + 286 + net_switch2 + port1 + + port + 286 + False + + + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 283 + 287 + net_switch2 + port2 + + port + 287 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 283 + 288 + net_switch2 + port3 + + port + 288 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 283 + 289 + net_switch2 + port4 + + port + 289 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 283 + 290 + net_switch2 + port5 + + port + 290 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 283 + 291 + net_switch2 + port6 + + port + 291 + False + + + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 283 + 292 + net_switch2 + port7 + + port + 292 + False + + + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch3 + 60 + 388 + 90,290 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 388 + 389 + net_switch3 + lo0 + + lo + 389 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 388 + 390 + net_switch3 + management_interface0 + + management_interface + 390 + False + + management_interface0 + + 192.168.1.12 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 388 + 391 + net_switch3 + port1 + + port + 391 + False + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 388 + 392 + net_switch3 + port2 + + port + 392 + False + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 388 + 393 + net_switch3 + port3 + + port + 393 + False + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 388 + 394 + net_switch3 + port4 + + port + 394 + False + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 388 + 395 + net_switch3 + port5 + + port + 395 + False + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 388 + 396 + net_switch3 + port6 + + port + 396 + False + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 388 + 397 + net_switch3 + port7 + + port + 397 + False + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc0 + 60 + 109 + 170,640 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 109 + 110 + pc0 + lo0 + + lo + 110 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 109 + 111 + pc0 + eth0 + + eth + 111 + False + + + + eth0 + + 192.168.1.22 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc1 + 60 + 112 + 40,770 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 112 + 113 + pc1 + lo0 + + lo + 113 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 112 + 114 + pc1 + eth0 + + eth + 114 + False + + + + eth0 + + 192.168.1.23 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc2 + 60 + 115 + 820,510 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 115 + 116 + pc2 + lo0 + + lo + 116 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 115 + 117 + pc2 + eth0 + + eth + 117 + False + + + + eth0 + + 192.168.1.20 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc3 + 60 + 118 + 820,800 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 118 + 119 + pc3 + lo0 + + lo + 119 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 118 + 120 + pc3 + eth0 + + eth + 120 + False + + + + eth0 + + 192.168.1.21 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc4 + 60 + 398 + 30,200 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 398 + 399 + pc4 + lo0 + + lo + 399 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 398 + 400 + pc4 + eth0 + + eth + 400 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc5 + 60 + 401 + 20,310 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 401 + 402 + pc5 + lo0 + + lo + 402 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 401 + 403 + pc5 + eth0 + + eth + 403 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc6 + 60 + 404 + 830,300 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 404 + 405 + pc6 + lo0 + + lo + 405 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 404 + 406 + pc6 + eth0 + + eth + 406 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc7 + 60 + 407 + 670,790 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 407 + 408 + pc7 + lo0 + + lo + 408 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 407 + 409 + pc7 + eth0 + + eth + 409 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + router0 + 60 + 182 + 670,50 + router + False + False + + 192.168.7.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 182 + 183 + router0 + lo0 + + lo + 183 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 182 + 184 + router0 + eth0 + + eth + 184 + False + + + + eth0 + + 192.168.5.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 182 + 185 + router0 + eth1 + + eth + 185 + False + + + + eth1 + + 192.168.7.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + router1 + 60 + 186 + 510,50 + router + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 186 + 187 + router1 + lo0 + + lo + 187 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 186 + 188 + router1 + eth0 + + eth + 188 + False + + + + eth0 + + 8.8.8.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 186 + 189 + router1 + eth1 + + eth + 189 + False + + + + eth1 + + 192.168.7.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + 192.168.5.0 + 255.255.255.0 + 192.168.7.2 + route + + + + server0 + 60 + 302 + 820,190 + server + False + True + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 302 + 303 + server0 + lo0 + + lo + 303 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 302 + 304 + server0 + eth0 + + eth + 304 + False + + + + eth0 + + 192.168.1.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + 127.0.0.1 + 0.0.0.0 + 0.0.0.0 + route + + + 192.168.1.2 + 192.168.1.50 + 192.168.1.70 + route + + + + server1 + 60 + 472 + 180,190 + server + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 472 + 473 + server1 + lo0 + + lo + 473 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 472 + 474 + server1 + eth0 + + eth + 474 + False + + + + eth0 + + 192.168.1.3 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + tree0 + 60 + 100 + 350,760 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 100 + 101 + tree0 + lo0 + + lo + 101 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 100 + 102 + tree0 + eth0 + + eth + 102 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree1 + 60 + 103 + 390,610 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 103 + 104 + tree1 + lo0 + + lo + 104 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 103 + 105 + tree1 + eth0 + + eth + 105 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree10 + 60 + 361 + 530,570 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 361 + 362 + tree10 + lo0 + + lo + 362 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 361 + 363 + tree10 + eth0 + + eth + 363 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree11 + 60 + 364 + 510,840 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 364 + 365 + tree11 + lo0 + + lo + 365 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 364 + 366 + tree11 + eth0 + + eth + 366 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree12 + 60 + 367 + 580,210 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 367 + 368 + tree12 + lo0 + + lo + 368 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 367 + 369 + tree12 + eth0 + + eth + 369 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree13 + 60 + 370 + 260,210 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 370 + 371 + tree13 + lo0 + + lo + 371 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 370 + 372 + tree13 + eth0 + + eth + 372 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree14 + 60 + 373 + 590,390 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 373 + 374 + tree14 + lo0 + + lo + 374 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 373 + 375 + tree14 + eth0 + + eth + 375 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree15 + 60 + 376 + 260,380 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 376 + 377 + tree15 + lo0 + + lo + 377 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 376 + 378 + tree15 + eth0 + + eth + 378 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree2 + 60 + 106 + 470,720 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 106 + 107 + tree2 + lo0 + + lo + 107 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 106 + 108 + tree2 + eth0 + + eth + 108 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree3 + 60 + 225 + 320,660 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 225 + 226 + tree3 + lo0 + + lo + 226 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 225 + 227 + tree3 + eth0 + + eth + 227 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree4 + 60 + 228 + 510,650 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 228 + 229 + tree4 + lo0 + + lo + 229 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 228 + 230 + tree4 + eth0 + + eth + 230 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree5 + 60 + 314 + 360,300 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 314 + 315 + tree5 + lo0 + + lo + 315 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 314 + 316 + tree5 + eth0 + + eth + 316 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree6 + 60 + 317 + 470,290 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 317 + 318 + tree6 + lo0 + + lo + 318 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 317 + 319 + tree6 + eth0 + + eth + 319 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree7 + 60 + 320 + 370,430 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 320 + 321 + tree7 + lo0 + + lo + 321 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 320 + 322 + tree7 + eth0 + + eth + 322 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree8 + 60 + 323 + 450,410 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 323 + 324 + tree8 + lo0 + + lo + 324 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 323 + 325 + tree8 + eth0 + + eth + 325 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree9 + 60 + 358 + 300,570 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 358 + 359 + tree9 + lo0 + + lo + 359 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 358 + 360 + tree9 + eth0 + + eth + 360 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wap0 + 60 + 121 + 680,490 + wap + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 121 + 124 + wap0 + lo0 + + lo + 124 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 121 + 125 + wap0 + eth1 + + eth + 125 + False + + + + eth1 + + 192.168.1.20 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport2 + + 121 + 126 + wap0 + wport2 + + wport + 126 + False + OfficeKey + OfficeNet + + wport2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport3 + + 121 + 127 + wap0 + wport3 + + wport + 127 + False + OfficeKey + OfficeNet + + wport3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport4 + + 121 + 128 + wap0 + wport4 + + wport + 128 + False + OfficeKey + OfficeNet + + wport4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport5 + + 121 + 129 + wap0 + wport5 + + wport + 129 + False + OfficeKey + OfficeNet + + wport5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport6 + + 121 + 130 + wap0 + wport6 + + wport + 130 + False + OfficeKey + OfficeNet + + wport6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport7 + + 121 + 131 + wap0 + wport7 + + wport + 131 + False + OfficeKey + OfficeNet + + wport7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wap1 + 60 + 414 + 170,340 + wap + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 414 + 417 + wap1 + lo0 + + lo + 417 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 414 + 418 + wap1 + eth1 + + eth + 418 + False + + eth1 + + 192.168.1.22 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport2 + + 414 + 419 + wap1 + wport2 + + wport + 419 + False + WirelessKey + LAN + + wport2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport3 + + 414 + 420 + wap1 + wport3 + + wport + 420 + False + WirelessKey + LAN + + wport3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport4 + + 414 + 421 + wap1 + wport4 + + wport + 421 + False + WirelessKey + LAN + + wport4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport5 + + 414 + 422 + wap1 + wport5 + + wport + 422 + False + WirelessKey + LAN + + wport5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport6 + + 414 + 423 + wap1 + wport6 + + wport + 423 + False + WirelessKey + LAN + + wport6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport7 + + 414 + 424 + wap1 + wport7 + + wport + 424 + False + WirelessKey + LAN + + wport7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wbridge0 + 60 + 152 + 90,490 + wbridge + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 152 + 155 + wbridge0 + lo0 + + lo + 155 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan1 + + 152 + 156 + wbridge0 + wlan1 + + wlan + 156 + False + OfficeKey + OfficeNet + + wlan1 + + 192.168.1.21 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 152 + 157 + wbridge0 + port2 + + port + 157 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 152 + 158 + wbridge0 + port3 + + port + 158 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 152 + 159 + wbridge0 + port4 + + port + 159 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 152 + 160 + wbridge0 + port5 + + port + 160 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + + 175 + 179 + firewall0 + wan0 + + + 182 + 184 + router0 + eth0 + + firewall0_link_router0 + normal + 247 + + + + 190 + 192 + server0 + eth0 + + + 186 + 188 + router1 + eth0 + + google.com_link_router1 + normal + 193 + + + + 410 + 412 + laptop0 + eth0 + + + 132 + 138 + net_switch0 + port4 + + laptop0_link_net_switch0 + normal + 455 + + + + 436 + 439 + laptop1 + wlan2 + + + 414 + 419 + wap1 + wport2 + + laptop1_link_wap1 + wireless + 441 + + + + 132 + 135 + net_switch0 + port1 + + + 152 + 160 + wbridge0 + port5 + + net_switch0_link_wbridge0 + normal + 169 + + + + 142 + 150 + net_switch1 + port6 + + + 283 + 292 + net_switch2 + port7 + + net_switch1_link_net_switch2 + normal + 294 + + + + 283 + 286 + net_switch2 + port1 + + + 175 + 177 + firewall0 + eth0 + + net_switch2_link_firewall0 + normal + 296 + + + + 283 + 288 + net_switch2 + port3 + + + 404 + 406 + pc6 + eth0 + + net_switch2_link_pc6 + normal + 450 + + + + 283 + 287 + net_switch2 + port2 + + + 302 + 304 + server0 + eth0 + + net_switch2_link_server0 + normal + 306 + + + + 109 + 111 + pc0 + eth0 + + + 132 + 136 + net_switch0 + port2 + + pc0_link_net_switch0 + normal + 171 + + + + 112 + 114 + pc1 + eth0 + + + 132 + 137 + net_switch0 + port3 + + pc1_link_net_switch0 + normal + 173 + + + + 115 + 117 + pc2 + eth0 + + + 142 + 145 + net_switch1 + port1 + + pc2_link_net_switch1 + normal + 163 + + + + 118 + 120 + pc3 + eth0 + + + 142 + 146 + net_switch1 + port2 + + pc3_link_net_switch1 + normal + 165 + + + + 398 + 400 + pc4 + eth0 + + + 388 + 391 + net_switch3 + port1 + + pc4_link_net_switch3 + normal + 429 + + + + 401 + 403 + pc5 + eth0 + + + 388 + 392 + net_switch3 + port2 + + pc5_link_net_switch3 + normal + 431 + + + + 407 + 409 + pc7 + eth0 + + + 142 + 147 + net_switch1 + port3 + + pc7_link_net_switch1 + normal + 447 + + + + 182 + 185 + router0 + eth1 + + + 186 + 189 + router1 + eth1 + + router0_link_router1 + normal + 249 + + + + 121 + 125 + wap0 + eth1 + + + 142 + 151 + net_switch1 + port7 + + wap0_link_net_switch1 + normal + 167 + + + + 414 + 418 + wap1 + eth1 + + + 388 + 396 + net_switch3 + port6 + + wap1_link_net_switch3 + normal + 433 + + + + 152 + 159 + wbridge0 + port4 + + + 388 + 397 + net_switch3 + port7 + + wbridge0_link_net_switch3 + normal + 425 + + + + 388 + 395 + net_switch3 + port5 + + + 472 + 474 + server1 + eth0 + + net_switch3_link_server1 + normal + 476 + + + + 152 + 156 + wbridge0 + wlan1 + + + 121 + 126 + wap0 + wport2 + + + wireless + 521 + + + wbridge0 + LeftBldg + LockLocation + + + wap0 + RightBldg + LockLocation + + + server0 + server1 + SuccessfullyPings + + + Grass + rectangle + 3, 7, 1013, 1004 + LightGreen + LightGreen + + + LeftBldg + rectangle + 20, 170, 250, 700 + SaddleBrown + SaddleBrown + + + RightBldg + rectangle + 650, 170, 250, 700 + SaddleBrown + SaddleBrown + + + LB_RWall + rectangle + 255, 170, 15, 700 + Gray + Gray + + + RB_RWall + rectangle + 650, 170, 15, 700 + Gray + Gray + + + LB_TWall + rectangle + 20, 170, 15, 700 + Gray + Gray + + + RB_TWall + rectangle + 885, 170, 15, 700 + Gray + Gray + + + LB_BWall + rectangle + 20, 870, 250, 15 + Gray + Gray + + + RB_BWall + rectangle + 650, 870, 250, 15 + Gray + Gray + + + LB_LWall + rectangle + 20, 170, 250, 15 + Gray + Gray + + + RB_LWall + rectangle + 650, 170, 250, 15 + Gray + Gray + + + CenterCement + rectangle + 326, 200, 262, 377 + Gray + Gray + + + CenterPark + rectangle + 359, 270, 188, 247 + LightGreen + LightGreen + + + LWindow + rectangle + 260, 500, 5, 100 + Blue + Blue + + + R_Window + rectangle + 655, 500, 5, 100 + Blue + Blue + + + LSidewalk + rectangle + 255, 300, 100, 80 + Gray + Gray + + + RSidewalk + rectangle + 550, 300, 100, 80 + Gray + Gray + + + LDoor + rectangle + 255, 300, 10, 80 + SaddleBrown + SaddleBrown + + + RDoor + rectangle + 655, 300, 10, 80 + SaddleBrown + SaddleBrown + + Default + + \ No newline at end of file diff --git a/EduNetworkBuilder/Resources/Level5_Practice5.enbx b/EduNetworkBuilder/Resources/Level5_Practice5.enbx new file mode 100644 index 0000000..8a42432 --- /dev/null +++ b/EduNetworkBuilder/Resources/Level5_Practice5.enbx @@ -0,0 +1,4484 @@ + + + + + + Practice5 + + 1024 + 1024 + 60 + host + 5 + 25 + 514 + none + True + False + + copier0 + 60 + 502 + 50,500 + copier + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 502 + 503 + copier0 + lo0 + + lo + 503 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 502 + 504 + copier0 + eth0 + + eth + 504 + False + + + + eth0 + + 192.168.1.5 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + firewall0 + 60 + 175 + 670,200 + firewall + False + False + + 192.168.5.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 175 + 176 + firewall0 + lo0 + + lo + 176 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wan + wan0 + + 175 + 179 + firewall0 + wan0 + + wan + 179 + False + + + + wan0 + + 192.168.5.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 175 + 177 + firewall0 + eth0 + + eth + 177 + False + + + + eth0 + + 192.168.1.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 175 + 178 + firewall0 + eth1 + + eth + 178 + False + + + + eth1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + google.com + 60 + 190 + 330,50 + server + False + False + + 8.8.8.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 190 + 191 + server0 + lo0 + + lo + 191 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 190 + 192 + server0 + eth0 + + eth + 192 + False + + + + eth0 + + 8.8.8.8 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + laptop0 + 60 + 410 + 180,800 + laptop + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 410 + 411 + laptop0 + lo0 + + lo + 411 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 410 + 412 + laptop0 + eth0 + + eth + 412 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan2 + + 410 + 413 + laptop0 + wlan2 + + wlan + 413 + True + + wlan2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + laptop1 + 60 + 436 + 20,420 + laptop + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 436 + 437 + laptop1 + lo0 + + lo + 437 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 436 + 438 + laptop1 + eth0 + + eth + 438 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan2 + + 436 + 439 + laptop1 + wlan2 + + wlan + 439 + True + WirelessKey + LAN + + wlan2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch0 + 60 + 132 + 180,690 + net_switch + False + False + True + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 132 + 133 + net_switch0 + lo0 + + lo + 133 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 132 + 134 + net_switch0 + management_interface0 + + management_interface + 134 + False + + + + management_interface0 + + 192.168.1.13 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 132 + 135 + net_switch0 + port1 + + port + 135 + False + + + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 132 + 136 + net_switch0 + port2 + + port + 136 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 132 + 137 + net_switch0 + port3 + + port + 137 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 132 + 138 + net_switch0 + port4 + + port + 138 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 132 + 139 + net_switch0 + port5 + + port + 139 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 132 + 140 + net_switch0 + port6 + + port + 140 + False + + + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 132 + 141 + net_switch0 + port7 + + port + 141 + False + + + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch1 + 60 + 142 + 736,649 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 142 + 143 + net_switch1 + lo0 + + lo + 143 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 142 + 144 + net_switch1 + management_interface0 + + management_interface + 144 + False + + + + management_interface0 + + 192.168.1.11 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 142 + 145 + net_switch1 + port1 + + port + 145 + False + + + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 142 + 146 + net_switch1 + port2 + + port + 146 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 142 + 147 + net_switch1 + port3 + + port + 147 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 142 + 148 + net_switch1 + port4 + + port + 148 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 142 + 149 + net_switch1 + port5 + + port + 149 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 142 + 150 + net_switch1 + port6 + + port + 150 + False + + + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 142 + 151 + net_switch1 + port7 + + port + 151 + False + + + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch2 + 60 + 283 + 736,279 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 283 + 284 + net_switch2 + lo0 + + lo + 284 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 283 + 285 + net_switch2 + management_interface0 + + management_interface + 285 + False + + + + management_interface0 + + 192.168.1.10 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 283 + 286 + net_switch2 + port1 + + port + 286 + False + + + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 283 + 287 + net_switch2 + port2 + + port + 287 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 283 + 288 + net_switch2 + port3 + + port + 288 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 283 + 289 + net_switch2 + port4 + + port + 289 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 283 + 290 + net_switch2 + port5 + + port + 290 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 283 + 291 + net_switch2 + port6 + + port + 291 + False + + + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 283 + 292 + net_switch2 + port7 + + port + 292 + False + + + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch3 + 60 + 388 + 180,300 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 388 + 389 + net_switch3 + lo0 + + lo + 389 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 388 + 390 + net_switch3 + management_interface0 + + management_interface + 390 + False + + management_interface0 + + 192.168.1.12 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 388 + 391 + net_switch3 + port1 + + port + 391 + False + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 388 + 392 + net_switch3 + port2 + + port + 392 + False + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 388 + 393 + net_switch3 + port3 + + port + 393 + False + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 388 + 394 + net_switch3 + port4 + + port + 394 + False + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 388 + 395 + net_switch3 + port5 + + port + 395 + False + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 388 + 396 + net_switch3 + port6 + + port + 396 + False + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 388 + 397 + net_switch3 + port7 + + port + 397 + False + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc0 + 60 + 109 + 40,630 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 109 + 110 + pc0 + lo0 + + lo + 110 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 109 + 111 + pc0 + eth0 + + eth + 111 + False + + + + eth0 + + 192.168.1.22 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc1 + 60 + 112 + 40,770 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 112 + 113 + pc1 + lo0 + + lo + 113 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 112 + 114 + pc1 + eth0 + + eth + 114 + False + + + + eth0 + + 192.168.1.23 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc2 + 60 + 115 + 820,510 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 115 + 116 + pc2 + lo0 + + lo + 116 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 115 + 117 + pc2 + eth0 + + eth + 117 + False + + + + eth0 + + 192.168.1.20 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc3 + 60 + 118 + 820,760 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 118 + 119 + pc3 + lo0 + + lo + 119 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 118 + 120 + pc3 + eth0 + + eth + 120 + False + + + + eth0 + + 192.168.1.21 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc4 + 60 + 398 + 30,200 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 398 + 399 + pc4 + lo0 + + lo + 399 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 398 + 400 + pc4 + eth0 + + eth + 400 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc5 + 60 + 401 + 20,310 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 401 + 402 + pc5 + lo0 + + lo + 402 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 401 + 403 + pc5 + eth0 + + eth + 403 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc6 + 60 + 404 + 820,350 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 404 + 405 + pc6 + lo0 + + lo + 405 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 404 + 406 + pc6 + eth0 + + eth + 406 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc7 + 60 + 407 + 670,790 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 407 + 408 + pc7 + lo0 + + lo + 408 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 407 + 409 + pc7 + eth0 + + eth + 409 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + router0 + 60 + 182 + 670,50 + router + False + False + + 192.168.7.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 182 + 183 + router0 + lo0 + + lo + 183 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 182 + 184 + router0 + eth0 + + eth + 184 + False + + + + eth0 + + 192.168.5.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 182 + 185 + router0 + eth1 + + eth + 185 + False + + + + eth1 + + 192.168.7.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + router1 + 60 + 186 + 510,50 + router + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 186 + 187 + router1 + lo0 + + lo + 187 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 186 + 188 + router1 + eth0 + + eth + 188 + False + + + + eth0 + + 8.8.8.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 186 + 189 + router1 + eth1 + + eth + 189 + False + + + + eth1 + + 192.168.7.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + 192.168.5.0 + 255.255.255.0 + 192.168.7.2 + route + + + + server0 + 60 + 302 + 820,190 + server + False + True + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 302 + 303 + server0 + lo0 + + lo + 303 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 302 + 304 + server0 + eth0 + + eth + 304 + False + + + + eth0 + + 192.168.1.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + 127.0.0.1 + 0.0.0.0 + 0.0.0.0 + route + + + 192.168.1.2 + 192.168.1.50 + 192.168.1.70 + route + + + + server1 + 60 + 472 + 180,190 + server + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 472 + 473 + server1 + lo0 + + lo + 473 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 472 + 474 + server1 + eth0 + + eth + 474 + False + + + + eth0 + + 192.168.1.3 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + tree0 + 60 + 100 + 350,760 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 100 + 101 + tree0 + lo0 + + lo + 101 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 100 + 102 + tree0 + eth0 + + eth + 102 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree1 + 60 + 103 + 390,610 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 103 + 104 + tree1 + lo0 + + lo + 104 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 103 + 105 + tree1 + eth0 + + eth + 105 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree10 + 60 + 361 + 530,570 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 361 + 362 + tree10 + lo0 + + lo + 362 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 361 + 363 + tree10 + eth0 + + eth + 363 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree11 + 60 + 364 + 510,840 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 364 + 365 + tree11 + lo0 + + lo + 365 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 364 + 366 + tree11 + eth0 + + eth + 366 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree12 + 60 + 367 + 580,210 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 367 + 368 + tree12 + lo0 + + lo + 368 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 367 + 369 + tree12 + eth0 + + eth + 369 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree13 + 60 + 370 + 260,210 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 370 + 371 + tree13 + lo0 + + lo + 371 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 370 + 372 + tree13 + eth0 + + eth + 372 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree14 + 60 + 373 + 590,390 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 373 + 374 + tree14 + lo0 + + lo + 374 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 373 + 375 + tree14 + eth0 + + eth + 375 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree15 + 60 + 376 + 260,380 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 376 + 377 + tree15 + lo0 + + lo + 377 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 376 + 378 + tree15 + eth0 + + eth + 378 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree2 + 60 + 106 + 470,720 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 106 + 107 + tree2 + lo0 + + lo + 107 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 106 + 108 + tree2 + eth0 + + eth + 108 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree3 + 60 + 225 + 320,660 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 225 + 226 + tree3 + lo0 + + lo + 226 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 225 + 227 + tree3 + eth0 + + eth + 227 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree4 + 60 + 228 + 510,650 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 228 + 229 + tree4 + lo0 + + lo + 229 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 228 + 230 + tree4 + eth0 + + eth + 230 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree5 + 60 + 314 + 360,300 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 314 + 315 + tree5 + lo0 + + lo + 315 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 314 + 316 + tree5 + eth0 + + eth + 316 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree6 + 60 + 317 + 470,290 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 317 + 318 + tree6 + lo0 + + lo + 318 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 317 + 319 + tree6 + eth0 + + eth + 319 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree7 + 60 + 320 + 370,430 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 320 + 321 + tree7 + lo0 + + lo + 321 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 320 + 322 + tree7 + eth0 + + eth + 322 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree8 + 60 + 323 + 450,410 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 323 + 324 + tree8 + lo0 + + lo + 324 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 323 + 325 + tree8 + eth0 + + eth + 325 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree9 + 60 + 358 + 300,570 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 358 + 359 + tree9 + lo0 + + lo + 359 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 358 + 360 + tree9 + eth0 + + eth + 360 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wap0 + 60 + 121 + 660,520 + wap + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 121 + 124 + wap0 + lo0 + + lo + 124 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 121 + 125 + wap0 + eth1 + + eth + 125 + False + + + + eth1 + + 192.168.1.20 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport2 + + 121 + 126 + wap0 + wport2 + + wport + 126 + False + OfficeKey + OfficeNet + + wport2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport3 + + 121 + 127 + wap0 + wport3 + + wport + 127 + False + OfficeKey + OfficeNet + + wport3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport4 + + 121 + 128 + wap0 + wport4 + + wport + 128 + False + OfficeKey + OfficeNet + + wport4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport5 + + 121 + 129 + wap0 + wport5 + + wport + 129 + False + OfficeKey + OfficeNet + + wport5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport6 + + 121 + 130 + wap0 + wport6 + + wport + 130 + False + OfficeKey + OfficeNet + + wport6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport7 + + 121 + 131 + wap0 + wport7 + + wport + 131 + False + OfficeKey + OfficeNet + + wport7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wap1 + 60 + 414 + 110,390 + wap + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 414 + 417 + wap1 + lo0 + + lo + 417 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 414 + 418 + wap1 + eth1 + + eth + 418 + False + + eth1 + + 192.168.1.22 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport2 + + 414 + 419 + wap1 + wport2 + + wport + 419 + False + WirelessKey + LAN + + wport2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport3 + + 414 + 420 + wap1 + wport3 + + wport + 420 + False + WirelessKey + LAN + + wport3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport4 + + 414 + 421 + wap1 + wport4 + + wport + 421 + False + WirelessKey + LAN + + wport4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport5 + + 414 + 422 + wap1 + wport5 + + wport + 422 + False + WirelessKey + LAN + + wport5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport6 + + 414 + 423 + wap1 + wport6 + + wport + 423 + False + WirelessKey + LAN + + wport6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport7 + + 414 + 424 + wap1 + wport7 + + wport + 424 + False + WirelessKey + LAN + + wport7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wbridge0 + 60 + 152 + 180,520 + wbridge + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 152 + 155 + wbridge0 + lo0 + + lo + 155 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan1 + + 152 + 156 + wbridge0 + wlan1 + + wlan + 156 + False + OfficeKey + OfficeNet + + wlan1 + + 192.168.1.21 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 152 + 157 + wbridge0 + port2 + + port + 157 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 152 + 158 + wbridge0 + port3 + + port + 158 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 152 + 159 + wbridge0 + port4 + + port + 159 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 152 + 160 + wbridge0 + port5 + + port + 160 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + + 502 + 504 + copier0 + eth0 + + + 152 + 157 + wbridge0 + port2 + + + normal + 505 + + + + 175 + 179 + firewall0 + wan0 + + + 182 + 184 + router0 + eth0 + + firewall0_link_router0 + normal + 247 + + + + 190 + 192 + server0 + eth0 + + + 186 + 188 + router1 + eth0 + + google.com_link_router1 + normal + 193 + + + + 410 + 412 + laptop0 + eth0 + + + 132 + 138 + net_switch0 + port4 + + laptop0_link_net_switch0 + normal + 455 + + + + 436 + 439 + laptop1 + wlan2 + + + 414 + 419 + wap1 + wport2 + + laptop1_link_wap1 + wireless + 441 + + + + 132 + 135 + net_switch0 + port1 + + + 152 + 160 + wbridge0 + port5 + + net_switch0_link_wbridge0 + normal + 169 + + + + 142 + 150 + net_switch1 + port6 + + + 283 + 292 + net_switch2 + port7 + + net_switch1_link_net_switch2 + normal + 294 + + + + 283 + 286 + net_switch2 + port1 + + + 175 + 177 + firewall0 + eth0 + + net_switch2_link_firewall0 + normal + 296 + + + + 283 + 288 + net_switch2 + port3 + + + 404 + 406 + pc6 + eth0 + + net_switch2_link_pc6 + normal + 450 + + + + 283 + 287 + net_switch2 + port2 + + + 302 + 304 + server0 + eth0 + + net_switch2_link_server0 + normal + 306 + + + + 388 + 395 + net_switch3 + port5 + + + 472 + 474 + server1 + eth0 + + net_switch3_link_server1 + normal + 476 + + + + 109 + 111 + pc0 + eth0 + + + 132 + 136 + net_switch0 + port2 + + pc0_link_net_switch0 + normal + 171 + + + + 115 + 117 + pc2 + eth0 + + + 142 + 145 + net_switch1 + port1 + + pc2_link_net_switch1 + normal + 163 + + + + 118 + 120 + pc3 + eth0 + + + 142 + 146 + net_switch1 + port2 + + pc3_link_net_switch1 + normal + 165 + + + + 398 + 400 + pc4 + eth0 + + + 388 + 391 + net_switch3 + port1 + + pc4_link_net_switch3 + normal + 429 + + + + 401 + 403 + pc5 + eth0 + + + 388 + 392 + net_switch3 + port2 + + pc5_link_net_switch3 + normal + 431 + + + + 407 + 409 + pc7 + eth0 + + + 142 + 147 + net_switch1 + port3 + + pc7_link_net_switch1 + normal + 447 + + + + 182 + 185 + router0 + eth1 + + + 186 + 189 + router1 + eth1 + + router0_link_router1 + normal + 249 + + + + 121 + 125 + wap0 + eth1 + + + 142 + 151 + net_switch1 + port7 + + wap0_link_net_switch1 + normal + 167 + + + + 414 + 418 + wap1 + eth1 + + + 388 + 396 + net_switch3 + port6 + + wap1_link_net_switch3 + normal + 433 + + + + 152 + 159 + wbridge0 + port4 + + + 388 + 397 + net_switch3 + port7 + + wbridge0_link_net_switch3 + normal + 425 + + + + 112 + 114 + pc1 + eth0 + + + 132 + 137 + net_switch0 + port3 + + + broken + 512 + + + + 152 + 156 + wbridge0 + wlan1 + + + 121 + 126 + wap0 + wport2 + + + wireless + 513 + + + wap0 + RightBldg + LockLocation + + + wbridge0 + LeftBldg + LockLocation + + + pc1 + server0 + SuccessfullyPings + + + Grass + rectangle + 3, 7, 1013, 1004 + LightGreen + LightGreen + + + LeftBldg + rectangle + 20, 170, 250, 700 + SaddleBrown + SaddleBrown + + + RightBldg + rectangle + 650, 170, 250, 700 + SaddleBrown + SaddleBrown + + + LB_RWall + rectangle + 255, 170, 15, 700 + Gray + Gray + + + RB_RWall + rectangle + 650, 170, 15, 700 + Gray + Gray + + + LB_TWall + rectangle + 20, 170, 15, 700 + Gray + Gray + + + RB_TWall + rectangle + 885, 170, 15, 700 + Gray + Gray + + + LB_BWall + rectangle + 20, 870, 250, 15 + Gray + Gray + + + RB_BWall + rectangle + 650, 870, 250, 15 + Gray + Gray + + + LB_LWall + rectangle + 20, 170, 250, 15 + Gray + Gray + + + RB_LWall + rectangle + 650, 170, 250, 15 + Gray + Gray + + + CenterCement + rectangle + 326, 200, 262, 377 + Gray + Gray + + + CenterPark + rectangle + 359, 270, 188, 247 + LightGreen + LightGreen + + + LWindow + rectangle + 260, 500, 5, 100 + Blue + Blue + + + R_Window + rectangle + 655, 500, 5, 100 + Blue + Blue + + + LSidewalk + rectangle + 255, 300, 100, 80 + Gray + Gray + + + RSidewalk + rectangle + 550, 300, 100, 80 + Gray + Gray + + + LDoor + rectangle + 255, 300, 10, 80 + SaddleBrown + SaddleBrown + + + RDoor + rectangle + 655, 300, 10, 80 + SaddleBrown + SaddleBrown + + Default + + \ No newline at end of file diff --git a/EduNetworkBuilder/Resources/Level5_Practice6.enbx b/EduNetworkBuilder/Resources/Level5_Practice6.enbx new file mode 100644 index 0000000..d44fff1 --- /dev/null +++ b/EduNetworkBuilder/Resources/Level5_Practice6.enbx @@ -0,0 +1,4694 @@ + + + + + + Practice6 + + 1024 + 1024 + 60 + host + 5 + 26 + 546 + none + True + False + + firewall0 + 60 + 175 + 670,200 + firewall + False + False + + 192.168.5.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 175 + 176 + firewall0 + lo0 + + lo + 176 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wan + wan0 + + 175 + 179 + firewall0 + wan0 + + wan + 179 + False + + + + wan0 + + 192.168.5.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 175 + 177 + firewall0 + eth0 + + eth + 177 + False + + + + eth0 + + 192.168.1.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 175 + 178 + firewall0 + eth1 + + eth + 178 + False + + + + eth1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + google.com + 60 + 190 + 330,50 + server + False + False + + 8.8.8.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 190 + 191 + server0 + lo0 + + lo + 191 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 190 + 192 + server0 + eth0 + + eth + 192 + False + + + + eth0 + + 8.8.8.8 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + laptop0 + 60 + 410 + 180,790 + laptop + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 410 + 411 + laptop0 + lo0 + + lo + 411 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan2 + + 410 + 413 + laptop0 + wlan2 + + wlan + 413 + True + WirelessKey + LAN + + wlan2 + + 192.168.1.50 + 255.255.255.0 + 192.168.1.1 + route + + Untagged + + + + + laptop1 + 60 + 436 + 30,190 + laptop + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 436 + 437 + laptop1 + lo0 + + lo + 437 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 436 + 438 + laptop1 + eth0 + + eth + 438 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan2 + + 436 + 439 + laptop1 + wlan2 + + wlan + 439 + True + WirelessKey + LAN + + wlan2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch0 + 60 + 132 + 180,690 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 132 + 133 + net_switch0 + lo0 + + lo + 133 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 132 + 134 + net_switch0 + management_interface0 + + management_interface + 134 + False + + + + management_interface0 + + 192.168.1.13 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 132 + 135 + net_switch0 + port1 + + port + 135 + False + + + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 132 + 136 + net_switch0 + port2 + + port + 136 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 132 + 137 + net_switch0 + port3 + + port + 137 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 132 + 138 + net_switch0 + port4 + + port + 138 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 132 + 139 + net_switch0 + port5 + + port + 139 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 132 + 140 + net_switch0 + port6 + + port + 140 + False + + + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 132 + 141 + net_switch0 + port7 + + port + 141 + False + + + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch1 + 60 + 142 + 736,649 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 142 + 143 + net_switch1 + lo0 + + lo + 143 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 142 + 144 + net_switch1 + management_interface0 + + management_interface + 144 + False + + + + management_interface0 + + 192.168.1.11 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 142 + 145 + net_switch1 + port1 + + port + 145 + False + + + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 142 + 146 + net_switch1 + port2 + + port + 146 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 142 + 147 + net_switch1 + port3 + + port + 147 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 142 + 148 + net_switch1 + port4 + + port + 148 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 142 + 149 + net_switch1 + port5 + + port + 149 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 142 + 150 + net_switch1 + port6 + + port + 150 + False + + + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 142 + 151 + net_switch1 + port7 + + port + 151 + False + + + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch2 + 60 + 283 + 736,279 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 283 + 284 + net_switch2 + lo0 + + lo + 284 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 283 + 285 + net_switch2 + management_interface0 + + management_interface + 285 + False + + + + management_interface0 + + 192.168.1.10 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 283 + 286 + net_switch2 + port1 + + port + 286 + False + + + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 283 + 287 + net_switch2 + port2 + + port + 287 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 283 + 288 + net_switch2 + port3 + + port + 288 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 283 + 289 + net_switch2 + port4 + + port + 289 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 283 + 290 + net_switch2 + port5 + + port + 290 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 283 + 291 + net_switch2 + port6 + + port + 291 + False + + + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 283 + 292 + net_switch2 + port7 + + port + 292 + False + + + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + net_switch3 + 60 + 388 + 180,300 + net_switch + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 388 + 389 + net_switch3 + lo0 + + lo + 389 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + management_interface + management_interface0 + + 388 + 390 + net_switch3 + management_interface0 + + management_interface + 390 + False + + management_interface0 + + 192.168.1.12 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port1 + + 388 + 391 + net_switch3 + port1 + + port + 391 + False + + port1 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 388 + 392 + net_switch3 + port2 + + port + 392 + False + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 388 + 393 + net_switch3 + port3 + + port + 393 + False + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 388 + 394 + net_switch3 + port4 + + port + 394 + False + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 388 + 395 + net_switch3 + port5 + + port + 395 + False + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port6 + + 388 + 396 + net_switch3 + port6 + + port + 396 + False + + port6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port7 + + 388 + 397 + net_switch3 + port7 + + port + 397 + False + + port7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc0 + 60 + 109 + 40,630 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 109 + 110 + pc0 + lo0 + + lo + 110 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 109 + 111 + pc0 + eth0 + + eth + 111 + False + + + + eth0 + + 192.168.1.22 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc1 + 60 + 112 + 40,770 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 112 + 113 + pc1 + lo0 + + lo + 113 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 112 + 114 + pc1 + eth0 + + eth + 114 + False + + + + eth0 + + 192.168.1.23 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc2 + 60 + 115 + 820,510 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 115 + 116 + pc2 + lo0 + + lo + 116 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 115 + 117 + pc2 + eth0 + + eth + 117 + False + + + + eth0 + + 192.168.1.20 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc3 + 60 + 118 + 820,800 + pc + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 118 + 119 + pc3 + lo0 + + lo + 119 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 118 + 120 + pc3 + eth0 + + eth + 120 + False + + + + eth0 + + 192.168.1.21 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + pc4 + 60 + 398 + 20,410 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 398 + 399 + pc4 + lo0 + + lo + 399 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 398 + 400 + pc4 + eth0 + + eth + 400 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc5 + 60 + 401 + 20,310 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 401 + 402 + pc5 + lo0 + + lo + 402 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 401 + 403 + pc5 + eth0 + + eth + 403 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc6 + 60 + 404 + 830,300 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 404 + 405 + pc6 + lo0 + + lo + 405 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 404 + 406 + pc6 + eth0 + + eth + 406 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + pc7 + 60 + 407 + 820,650 + pc + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 407 + 408 + pc7 + lo0 + + lo + 408 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 407 + 409 + pc7 + eth0 + + eth + 409 + True + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + router0 + 60 + 182 + 670,50 + router + False + False + + 192.168.7.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 182 + 183 + router0 + lo0 + + lo + 183 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 182 + 184 + router0 + eth0 + + eth + 184 + False + + + + eth0 + + 192.168.5.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 182 + 185 + router0 + eth1 + + eth + 185 + False + + + + eth1 + + 192.168.7.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + router1 + 60 + 186 + 510,50 + router + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 186 + 187 + router1 + lo0 + + lo + 187 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 186 + 188 + router1 + eth0 + + eth + 188 + False + + + + eth0 + + 8.8.8.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 186 + 189 + router1 + eth1 + + eth + 189 + False + + + + eth1 + + 192.168.7.1 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + 192.168.5.0 + 255.255.255.0 + 192.168.7.2 + route + + + + server0 + 60 + 302 + 820,190 + server + False + True + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 302 + 303 + server0 + lo0 + + lo + 303 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 302 + 304 + server0 + eth0 + + eth + 304 + False + + + + eth0 + + 192.168.1.2 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + 127.0.0.1 + 0.0.0.0 + 0.0.0.0 + route + + + 192.168.1.2 + 192.168.1.50 + 192.168.1.70 + route + + + + server1 + 60 + 472 + 180,190 + server + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 472 + 473 + server1 + lo0 + + lo + 473 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 472 + 474 + server1 + eth0 + + eth + 474 + False + + + + eth0 + + 192.168.1.3 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + + tree0 + 60 + 100 + 350,760 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 100 + 101 + tree0 + lo0 + + lo + 101 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 100 + 102 + tree0 + eth0 + + eth + 102 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree1 + 60 + 103 + 390,610 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 103 + 104 + tree1 + lo0 + + lo + 104 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 103 + 105 + tree1 + eth0 + + eth + 105 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree10 + 60 + 361 + 530,570 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 361 + 362 + tree10 + lo0 + + lo + 362 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 361 + 363 + tree10 + eth0 + + eth + 363 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree11 + 60 + 364 + 510,840 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 364 + 365 + tree11 + lo0 + + lo + 365 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 364 + 366 + tree11 + eth0 + + eth + 366 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree12 + 60 + 367 + 580,210 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 367 + 368 + tree12 + lo0 + + lo + 368 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 367 + 369 + tree12 + eth0 + + eth + 369 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree13 + 60 + 370 + 260,210 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 370 + 371 + tree13 + lo0 + + lo + 371 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 370 + 372 + tree13 + eth0 + + eth + 372 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree14 + 60 + 373 + 590,390 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 373 + 374 + tree14 + lo0 + + lo + 374 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 373 + 375 + tree14 + eth0 + + eth + 375 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree15 + 60 + 376 + 260,380 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 376 + 377 + tree15 + lo0 + + lo + 377 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 376 + 378 + tree15 + eth0 + + eth + 378 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree2 + 60 + 106 + 470,720 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 106 + 107 + tree2 + lo0 + + lo + 107 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 106 + 108 + tree2 + eth0 + + eth + 108 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree3 + 60 + 225 + 320,660 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 225 + 226 + tree3 + lo0 + + lo + 226 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 225 + 227 + tree3 + eth0 + + eth + 227 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree4 + 60 + 228 + 510,650 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 228 + 229 + tree4 + lo0 + + lo + 229 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 228 + 230 + tree4 + eth0 + + eth + 230 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree5 + 60 + 314 + 360,300 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 314 + 315 + tree5 + lo0 + + lo + 315 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 314 + 316 + tree5 + eth0 + + eth + 316 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree6 + 60 + 317 + 470,290 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 317 + 318 + tree6 + lo0 + + lo + 318 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 317 + 319 + tree6 + eth0 + + eth + 319 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree7 + 60 + 320 + 370,430 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 320 + 321 + tree7 + lo0 + + lo + 321 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 320 + 322 + tree7 + eth0 + + eth + 322 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree8 + 60 + 323 + 450,410 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 323 + 324 + tree8 + lo0 + + lo + 324 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 323 + 325 + tree8 + eth0 + + eth + 325 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree9 + 60 + 358 + 300,570 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 358 + 359 + tree9 + lo0 + + lo + 359 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 358 + 360 + tree9 + eth0 + + eth + 360 + False + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wap0 + 60 + 121 + 660,520 + wap + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 121 + 124 + wap0 + lo0 + + lo + 124 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 121 + 125 + wap0 + eth1 + + eth + 125 + False + + + + eth1 + + 192.168.1.20 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport2 + + 121 + 126 + wap0 + wport2 + + wport + 126 + False + OfficeKey + OfficeNet + + wport2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport3 + + 121 + 127 + wap0 + wport3 + + wport + 127 + False + OfficeKey + OfficeNet + + wport3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport4 + + 121 + 128 + wap0 + wport4 + + wport + 128 + False + OfficeKey + OfficeNet + + wport4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport5 + + 121 + 129 + wap0 + wport5 + + wport + 129 + False + OfficeKey + OfficeNet + + wport5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport6 + + 121 + 130 + wap0 + wport6 + + wport + 130 + False + OfficeKey + OfficeNet + + wport6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport7 + + 121 + 131 + wap0 + wport7 + + wport + 131 + False + OfficeKey + OfficeNet + + wport7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wap1 + 60 + 414 + 120,190 + wap + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 414 + 417 + wap1 + lo0 + + lo + 417 + False + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 414 + 418 + wap1 + eth1 + + eth + 418 + False + + eth1 + + 192.168.1.22 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport2 + + 414 + 419 + wap1 + wport2 + + wport + 419 + False + WirelessKey + LAN + + wport2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport3 + + 414 + 420 + wap1 + wport3 + + wport + 420 + False + WirelessKey + LAN + + wport3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport4 + + 414 + 421 + wap1 + wport4 + + wport + 421 + False + WirelessKey + LAN + + wport4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport5 + + 414 + 422 + wap1 + wport5 + + wport + 422 + False + WirelessKey + LAN + + wport5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport6 + + 414 + 423 + wap1 + wport6 + + wport + 423 + False + WirelessKey + LAN + + wport6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport7 + + 414 + 424 + wap1 + wport7 + + wport + 424 + False + WirelessKey + LAN + + wport7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wap2 + 60 + 508 + 650,790 + wap + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 508 + 511 + wap2 + lo0 + + lo + 511 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth1 + + 508 + 512 + wap2 + eth1 + + eth + 512 + False + + + + eth1 + + 192.168.1.23 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport2 + + 508 + 513 + wap2 + wport2 + + wport + 513 + False + WirelessKey + LAN + + wport2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport3 + + 508 + 514 + wap2 + wport3 + + wport + 514 + False + WirelessKey + LAN + + wport3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport4 + + 508 + 515 + wap2 + wport4 + + wport + 515 + False + WirelessKey + LAN + + wport4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport5 + + 508 + 516 + wap2 + wport5 + + wport + 516 + False + WirelessKey + LAN + + wport5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport6 + + 508 + 517 + wap2 + wport6 + + wport + 517 + False + WirelessKey + LAN + + wport6 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wport + wport7 + + 508 + 518 + wap2 + wport7 + + wport + 518 + False + WirelessKey + LAN + + wport7 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + wbridge0 + 60 + 152 + 180,520 + wbridge + False + False + + 192.168.1.1 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 152 + 155 + wbridge0 + lo0 + + lo + 155 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + wlan + wlan1 + + 152 + 156 + wbridge0 + wlan1 + + wlan + 156 + False + OfficeKey + OfficeNet + + wlan1 + + 192.168.1.21 + 255.255.255.0 + 0.0.0.0 + ip + + Untagged + + + + port + port2 + + 152 + 157 + wbridge0 + port2 + + port + 157 + False + + + + port2 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port3 + + 152 + 158 + wbridge0 + port3 + + port + 158 + False + + + + port3 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port4 + + 152 + 159 + wbridge0 + port4 + + port + 159 + False + + + + port4 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + port + port5 + + 152 + 160 + wbridge0 + port5 + + port + 160 + False + + + + port5 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + tree16 + 60 + 543 + 410,800 + tree + False + False + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + gw + + + lo + lo0 + + 543 + 544 + tree16 + lo0 + + lo + 544 + False + + + + lo0 + + 127.0.0.1 + 255.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + eth + eth0 + + 543 + 545 + tree16 + eth0 + + eth + 545 + False + + + + eth0 + + 0.0.0.0 + 0.0.0.0 + 0.0.0.0 + ip + + Untagged + + + + + + 175 + 179 + firewall0 + wan0 + + + 182 + 184 + router0 + eth0 + + firewall0_link_router0 + normal + 247 + + + + 190 + 192 + server0 + eth0 + + + 186 + 188 + router1 + eth0 + + google.com_link_router1 + normal + 193 + + + + 436 + 439 + laptop1 + wlan2 + + + 414 + 419 + wap1 + wport2 + + laptop1_link_wap1 + wireless + 441 + + + + 132 + 135 + net_switch0 + port1 + + + 152 + 160 + wbridge0 + port5 + + net_switch0_link_wbridge0 + normal + 169 + + + + 142 + 150 + net_switch1 + port6 + + + 283 + 292 + net_switch2 + port7 + + net_switch1_link_net_switch2 + normal + 294 + + + + 283 + 286 + net_switch2 + port1 + + + 175 + 177 + firewall0 + eth0 + + net_switch2_link_firewall0 + normal + 296 + + + + 283 + 288 + net_switch2 + port3 + + + 404 + 406 + pc6 + eth0 + + net_switch2_link_pc6 + normal + 450 + + + + 283 + 287 + net_switch2 + port2 + + + 302 + 304 + server0 + eth0 + + net_switch2_link_server0 + normal + 306 + + + + 388 + 395 + net_switch3 + port5 + + + 472 + 474 + server1 + eth0 + + net_switch3_link_server1 + normal + 476 + + + + 109 + 111 + pc0 + eth0 + + + 132 + 136 + net_switch0 + port2 + + pc0_link_net_switch0 + normal + 171 + + + + 112 + 114 + pc1 + eth0 + + + 132 + 137 + net_switch0 + port3 + + pc1_link_net_switch0 + normal + 173 + + + + 115 + 117 + pc2 + eth0 + + + 142 + 145 + net_switch1 + port1 + + pc2_link_net_switch1 + normal + 163 + + + + 118 + 120 + pc3 + eth0 + + + 142 + 146 + net_switch1 + port2 + + pc3_link_net_switch1 + normal + 165 + + + + 398 + 400 + pc4 + eth0 + + + 388 + 391 + net_switch3 + port1 + + pc4_link_net_switch3 + normal + 429 + + + + 401 + 403 + pc5 + eth0 + + + 388 + 392 + net_switch3 + port2 + + pc5_link_net_switch3 + normal + 431 + + + + 407 + 409 + pc7 + eth0 + + + 142 + 147 + net_switch1 + port3 + + pc7_link_net_switch1 + normal + 447 + + + + 182 + 185 + router0 + eth1 + + + 186 + 189 + router1 + eth1 + + router0_link_router1 + normal + 249 + + + + 121 + 125 + wap0 + eth1 + + + 142 + 151 + net_switch1 + port7 + + wap0_link_net_switch1 + normal + 167 + + + + 414 + 418 + wap1 + eth1 + + + 388 + 396 + net_switch3 + port6 + + wap1_link_net_switch3 + normal + 433 + + + + 152 + 159 + wbridge0 + port4 + + + 388 + 397 + net_switch3 + port7 + + wbridge0_link_net_switch3 + normal + 425 + + + + 508 + 512 + wap2 + eth1 + + + 142 + 149 + net_switch1 + port5 + + + normal + 536 + + + + 410 + 413 + laptop0 + wlan2 + + + 508 + 513 + wap2 + wport2 + + + wireless + 541 + + + + 152 + 156 + wbridge0 + wlan1 + + + 121 + 126 + wap0 + wport2 + + + wireless + 542 + + + wap2 + -- + LockLocation + + + wap1 + -- + LockLocation + + + laptop0 + LeftBldg + LockLocation + + + laptop0 + server0 + SuccessfullyPings + + + laptop0 + google.com + SuccessfullyPings + + + Grass + rectangle + 3, 7, 1013, 1004 + LightGreen + LightGreen + + + LeftBldg + rectangle + 20, 170, 250, 700 + SaddleBrown + SaddleBrown + + + RightBldg + rectangle + 650, 170, 250, 700 + SaddleBrown + SaddleBrown + + + LB_RWall + rectangle + 255, 170, 15, 700 + Gray + Gray + + + RB_RWall + rectangle + 650, 170, 15, 700 + Gray + Gray + + + LB_TWall + rectangle + 20, 170, 15, 700 + Gray + Gray + + + RB_TWall + rectangle + 885, 170, 15, 700 + Gray + Gray + + + LB_BWall + rectangle + 20, 870, 250, 15 + Gray + Gray + + + RB_BWall + rectangle + 650, 870, 250, 15 + Gray + Gray + + + LB_LWall + rectangle + 20, 170, 250, 15 + Gray + Gray + + + RB_LWall + rectangle + 650, 170, 250, 15 + Gray + Gray + + + CenterCement + rectangle + 326, 200, 262, 377 + Gray + Gray + + + CenterPark + rectangle + 359, 270, 188, 247 + LightGreen + LightGreen + + + LWindow + rectangle + 260, 500, 5, 100 + Blue + Blue + + + R_Window + rectangle + 655, 500, 5, 100 + Blue + Blue + + + LSidewalk + rectangle + 255, 300, 100, 80 + Gray + Gray + + + RSidewalk + rectangle + 550, 300, 100, 80 + Gray + Gray + + + LDoor + rectangle + 255, 300, 10, 80 + SaddleBrown + SaddleBrown + + + RDoor + rectangle + 655, 300, 10, 80 + SaddleBrown + SaddleBrown + + Default + + \ No newline at end of file diff --git a/EduNetworkBuilder/Resources/ReleaseNotes.rtf b/EduNetworkBuilder/Resources/ReleaseNotes.rtf index 8fda6cb..640e033 100644 --- a/EduNetworkBuilder/Resources/ReleaseNotes.rtf +++ b/EduNetworkBuilder/Resources/ReleaseNotes.rtf @@ -159,11 +159,12 @@ Normal Table;}}{\*\listtable{\list\listtemplateid-678110632\listhybrid{\listleve ;}\listid1903905976}}{\*\listoverridetable{\listoverride\listid300036472\listoverridecount0\ls1}{\listoverride\listid1535926840\listoverridecount0\ls2}{\listoverride\listid569733219\listoverridecount0\ls3}{\listoverride\listid1059207521 \listoverridecount0\ls4}{\listoverride\listid159203163\listoverridecount0\ls5}{\listoverride\listid272565942\listoverridecount0\ls6}{\listoverride\listid1574776731\listoverridecount0\ls7}{\listoverride\listid1332484604\listoverridecount0\ls8} {\listoverride\listid237788805\listoverridecount0\ls9}{\listoverride\listid1164392343\listoverridecount0\ls10}{\listoverride\listid1272543532\listoverridecount0\ls11}{\listoverride\listid1729453556\listoverridecount0\ls12}{\listoverride\listid1903905976 -\listoverridecount0\ls13}}{\*\rsidtbl \rsid1715044\rsid2361093\rsid3230122\rsid3738219\rsid3954092\rsid4002608\rsid4148115\rsid4201155\rsid4674322\rsid4984628\rsid4995504\rsid5902490\rsid6243721\rsid6709067\rsid7089617\rsid7091827\rsid7425313\rsid7431196 -\rsid7475506\rsid8135144\rsid8154512\rsid8807737\rsid8871995\rsid9005806\rsid9076344\rsid9125153\rsid9187300\rsid9664289\rsid11235612\rsid11358317\rsid12019296\rsid12193239\rsid12329139\rsid12389542\rsid12727249\rsid12727595\rsid13122645\rsid13307397 -\rsid13454907\rsid13783353\rsid14170698\rsid14353560\rsid14427571\rsid14508595\rsid14577306\rsid14746156\rsid14829014\rsid15677065\rsid15949156\rsid16005564\rsid16457871}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1\mlMargin0\mrMargin0 -\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim0}{\info{\operator tim.young@lightsys.org}{\creatim\yr2017\mo3\dy14\hr9\min58}{\revtim\yr2018\mo3\dy19\hr11\min53}{\version51}{\edmins51}{\nofpages12}{\nofwords2872}{\nofchars13269}{\nofcharsws15805}{\vern93}} -{\*\userprops {\propname amzn:id}\proptype30{\staticval 5d8f9aa3-7362-4e9d-ad7a-41823ad84e09}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}}\paperw12240\paperh15840\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect +\listoverridecount0\ls13}}{\*\rsidtbl \rsid1715044\rsid2361093\rsid2634409\rsid3230122\rsid3738219\rsid3954092\rsid4002608\rsid4148115\rsid4201155\rsid4674322\rsid4984628\rsid4995504\rsid5902490\rsid6243721\rsid6709067\rsid7089617\rsid7091827\rsid7425313 +\rsid7431196\rsid7475506\rsid8135144\rsid8154512\rsid8807737\rsid8871995\rsid9005806\rsid9076344\rsid9125153\rsid9187300\rsid9664289\rsid11235612\rsid11358317\rsid12019296\rsid12193239\rsid12329139\rsid12389542\rsid12727249\rsid12727595\rsid13122645 +\rsid13307397\rsid13454907\rsid13783353\rsid14170698\rsid14353560\rsid14427571\rsid14508595\rsid14577306\rsid14746156\rsid14829014\rsid15677065\rsid15949156\rsid16005564\rsid16457871}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msmallFrac0\mdispDef1 +\mlMargin0\mrMargin0\mdefJc1\mwrapIndent1440\mintLim0\mnaryLim0}{\info{\operator tim.young@lightsys.org}{\creatim\yr2017\mo3\dy14\hr9\min58}{\revtim\yr2018\mo3\dy19\hr13\min34}{\version52}{\edmins52}{\nofpages12}{\nofwords2424}{\nofchars13821} +{\nofcharsws16213}{\vern93}}{\*\userprops {\propname amzn:id}\proptype30{\staticval 5d8f9aa3-7362-4e9d-ad7a-41823ad84e09}}{\*\xmlnstbl {\xmlns1 http://schemas.microsoft.com/office/word/2003/wordml}} +\paperw12240\paperh15840\margl1440\margr1440\margt1440\margb1440\gutter0\ltrsect \widowctrl\ftnbj\aenddoc\trackmoves0\trackformatting1\donotembedsysfont0\relyonvml0\donotembedlingdata1\grfdocevents0\validatexml0\showplaceholdtext0\ignoremixedcontent0\saveinvalidxml0\showxmlerrors0\horzdoc\dghspace120\dgvspace120\dghorigin1701 \dgvorigin1984\dghshow0\dgvshow3\jcompress\viewkind1\viewscale80\rsidroot14577306 \nouicompat \fet0{\*\wgrffmtfilter 2450}\nofeaturethrottle1\ilfomacatclnup0\ltrpar \sectd \ltrsect\linex0\sectdefaultcl\sftnbj {\*\pnseclvl1 \pnucrm\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl2\pnucltr\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl3\pndec\pnstart1\pnindent720\pnhang {\pntxta .}}{\*\pnseclvl4\pnlcltr\pnstart1\pnindent720\pnhang {\pntxta )}}{\*\pnseclvl5 @@ -173,10 +174,10 @@ Normal Table;}}{\*\listtable{\list\listtemplateid-678110632\listhybrid{\listleve \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid4002608\charrsid4002608 \hich\af39\dbch\af31505\loch\f39 * Fix a traversal class not serializable error}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid4002608 \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid15949156 \hich\af39\dbch\af31505\loch\f39 * Close the file -> load toolstrip menu after a load\hich\af39\dbch\af31505\loch\f39 . It had remained annoyingly open. -\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid11358317 \hich\af39\dbch\af31505\loch\f39 * Added a bunch of \loch\af39\dbch\af31505\hich\f39 \'93\hich\af39\dbch\af31505\loch\f39 practice\loch\af39\dbch\af31505\hich\f39 \'94 -\hich\af39\dbch\af31505\loch\f39 puzzles. These are \hich\af39\dbch\af31505\loch\f39 -for practicing troubleshooting. They do not give you a lot of information about what the problem is; you need to do a bit more testing and trying things to figure them out.}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 -\f39\lang9\langfe1033\langnp9\insrsid11358317\charrsid4002608 +\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid11358317 \hich\af39\dbch\af31505\loch\f39 \hich\f39 * Added a bunch of \'93\loch\f39 \hich\f39 practice\'94\loch\f39 + puzzles. These are for practicing troubleshooting. They do not give you a lot of information about what the problem is; you need to do a bit more testing and trying things to figure them o\hich\af39\dbch\af31505\loch\f39 ut. +\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid2634409 \hich\af39\dbch\af31505\loch\f39 * Added a bunch of level5 practice puzzles. More ph\hich\af39\dbch\af31505\loch\f39 ysical networking and wireless than routing issues.}{ +\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid2634409\charrsid4002608 \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid6709067 \hich\af39\dbch\af31505\loch\f39 Version 1.0.47 \par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid3738219 {\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid8807737\charrsid8807737 \hich\af39\dbch\af31505\loch\f39 * YAY!}{ \rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid8807737 \hich\af39\dbch\af31505\loch\f39 The long-awaited ctrl-z / ctrl-y works. Undo / redo.}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 @@ -184,7 +185,7 @@ for practicing troubleshooting. They do not give you a lot of information about \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid1715044\charrsid1715044 \hich\af39\dbch\af31505\loch\f39 *}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid1715044 \hich\af39\dbch\af31505\loch\f39 Lock a device to a location \par \hich\af39\dbch\af31505\loch\f39 * Add a tree. Wireless packets cannot go through a tree. -\par \hich\af39\dbch\af31505\loch\f39 * Add background shapes. So we can draw a building and \hich\af39\dbch\af31505\loch\f39 have understandable line of sight. +\par \hich\af39\dbch\af31505\loch\f39 * Add background shapes. So we can draw a building and have understandable line of sigh\hich\af39\dbch\af31505\loch\f39 t. \par \hich\af39\dbch\af31505\loch\f39 * Add a wireless line of sight puzzle. \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid7091827 \hich\af39\dbch\af31505\loch\f39 * Went through old puzzles and locked some items in their locations. Makes some puzzles need to be solved the way the puzzle was intended to be solved.}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid7091827\charrsid1715044 @@ -192,13 +193,13 @@ for practicing troubleshooting. They do not give you a lot of information about \par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid3738219 {\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid3738219 \hich\af39\dbch\af31505\loch\f39 * Added a froz \hich\af39\dbch\af31505\loch\f39 en device. Fix it with a reboot. (power off / power on) \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid14427571 \hich\af39\dbch\af31505\loch\f39 * Added a bad power-supply (device catches fire when powered on. Need to replace the device to fix) -\par \hich\af39\dbch\af31505\loch\f39 * Added bad electricity. (device continues to catch fire, even after being replaced, until a UPS is added) +\par \hich\af39\dbch\af31505\loch\f39 * Added bad electricity. (device continues to catch fire, even after being replaced, until a UPS \hich\af39\dbch\af31505\loch\f39 is added) \par \hich\af39\dbch\af31505\loch\f39 * Can right-c}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid7425313 \hich\af39\dbch\af31505\loch\f39 lick a network wire. Delete, }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid14427571 \hich\af39\dbch\af31505\loch\f39 edit}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid7425313 \hich\af39\dbch\af31505\loch\f39 , replace}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid14427571 . \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid14746156 \hich\af39\dbch\af31505\loch\f39 * Added frozen device, bad power-supply and Needs UPS as ways to randomly break networks. -\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid13122645 \hich\af39\dbch\af31505\loch\f39 *\hich\af39\dbch\af31505\loch\f39 Optimize the redrawing of the screen packets. Speeded it up considerably -\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid13783353 \hich\af39\dbch\af31505\loch\f39 * Add puzzles for frozen device, bad power-supply, and needs a UPS.}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 +\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid13122645 \hich\af39\dbch\af31505\loch\f39 * Optimize the redrawing of the screen packets. Speeded it up considerably +\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid13783353 \hich\af39\dbch\af31505\loch\f39 * Add puzzles for froz\hich\af39\dbch\af31505\loch\f39 en device, bad power-supply, and needs a UPS.}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid13783353\charrsid9005806 \par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid9005806 {\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid9005806 \hich\af39\dbch\af31505\loch\f39 Version 1.0.45 \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid9005806\charrsid9005806 \hich\af39\dbch\af31505\loch\f39 *}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid9005806 \hich\af39\dbch\af31505\loch\f39 }{ @@ -219,54 +220,54 @@ for practicing troubleshooting. They do not give you a lot of information about \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid9076344\charrsid9076344 \hich\af39\dbch\af31505\loch\f39 Added }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid9076344 \hich\af39\dbch\af31505\loch\f39 the title }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid9076344\charrsid9076344 \hich\af39\dbch\af31505\loch\f39 to the translation window}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid9076344 \hich\af39\dbch\af31505\loch\f39 . Puzzle titles can now be translated. -\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid6243721 \hich\af39\dbch\af31505\loch\f39 * Use the translated titles for the puzzle names on the puzzle selection box}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 -\f39\lang9\langfe1033\langnp9\insrsid6243721\charrsid9076344 +\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid6243721 \hich\af39\dbch\af31505\loch\f39 * \hich\af39\dbch\af31505\loch\f39 Use the translated titles for the puzzle names on the puzzle selection box}{\rtlch\fcs1 \ab\af39 +\ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid6243721\charrsid9076344 \par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid4148115 {\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid14829014 \hich\af39\dbch\af31505\loch\f39 Version 1.0.42 -\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid14829014\charrsid14829014 \hich\af39\dbch\af31505\loch\f39 * Fixed some bugs\hich\af39\dbch\af31505\loch\f39 with working in French}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 -\f39\lang9\langfe1033\langnp9\insrsid14829014 \hich\af39\dbch\af31505\loch\f39 \hich\f39 \endash \loch\f39 puzzles would not show +\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid14829014\charrsid14829014 \hich\af39\dbch\af31505\loch\f39 * Fixed some bugs with working in French}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid14829014 +\hich\af39\dbch\af31505\loch\f39 \hich\f39 \endash \loch\f39 puzzles would not show \par \hich\af39\dbch\af31505\loch\f39 * Fixed bug in French \hich\f39 \endash \loch\f39 \hich\f39 \'93\loch\f39 \hich\f39 Ping to\'94\loch\f39 would not work -\par \hich\af39\dbch\af31505\loch\f39 * Added a translation box when working on puzzles. Ctrl-click the network mes\hich\af39\dbch\af31505\loch\f39 -sage in the options window to pull up a translation box. Look at two languages simultaneously. Has save button to save your changes from there.}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid14829014\charrsid14829014 +\par \hich\af39\dbch\af31505\loch\f39 +* Added a translation box when working on puzzles. Ctrl-click the network message in the options window to pull up a translation box. Look at two languages simultaneously. Has save button to save your changes from there.}{\rtlch\fcs1 \ab\af39 +\ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid14829014\charrsid14829014 \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid4148115 \hich\af39\dbch\af31505\loch\f39 Version 1.0.41 -\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid14353560 {\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid14353560 \hich\af39\dbch\af31505\loch\f39 -* Have the ability to randomly break a network. If you want to just test your brain for fun, o\hich\af39\dbch\af31505\loch\f39 r if you are a teacher and just want to generate some homework of some sort. This can help.}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 +\par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid14353560 {\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid14353560 \hich\af39\dbch\af31505\loch\f39 * Have the abilit +\hich\af39\dbch\af31505\loch\f39 y to randomly break a network. If you want to just test your brain for fun, or if you are a teacher and just want to generate some homework of some sort. This can help.}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid14353560\charrsid4148115 \par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid9664289 {\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid4148115\charrsid4148115 \hich\af39\dbch\af31505\loch\f39 * }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid4148115 \hich\af39\dbch\af31505\loch\f39 Added another solved }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12193239 \hich\af39\dbch\af31505\loch\f39 network (Internet}{ \rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid14353560 \hich\af39\dbch\af31505\loch\f39 HomeAndOffice}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12193239 \hich\af39\dbch\af31505\loch\f39 )}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid4148115 -\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid4674322 \hich\af39\dbch\af31505\loch\f39 * Give us more options for viewing text under devices. This lets us see things much more cleanly. -\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12389542 \hich\af39\dbch\af31505\loch\f39 * Allow d\hich\af39\dbch\af31505\loch\f39 ifferent captioning systems. Hostname only, IP only, host + IP, none, full +\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid4674322 \hich\af39\dbch\af31505\loch\f39 * Give us more options for vie\hich\af39\dbch\af31505\loch\f39 wing text under devices. This lets us see things much more cleanly. +\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12389542 \hich\af39\dbch\af31505\loch\f39 * Allow different captioning systems. Hostname only, IP only, host + IP, none, full \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid7089617 \hich\af39\dbch\af31505\loch\f39 * firewall rules can now affect VPN traffic. You can block from a VPN to the office VLAN, for example. Also, can block guest VLAN from pinging something across the VPN. \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid4984628 \hich\af39\dbch\af31505\loch\f39 Version 1.0.40 \par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid4984628 {\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid4984628 \hich\af39\dbch\af31505\loch\f39 -* Jumping ahead version numbers. Adding Educational Mode (see doc on the wiki for a description of the basic functionality added) }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid4984628\charrsid4984628 -\hich\af39\dbch\af31505\loch\f39 https://git.solidcharity.com/timy/EduNetworkBuilder/wikis/Teacherdoc}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid4984628 +* Jumping ahead version numbers. Adding Educational Mode (see doc on \hich\af39\dbch\af31505\loch\f39 the wiki for a description of the basic functionality added) }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 +\f39\lang9\langfe1033\langnp9\insrsid4984628\charrsid4984628 \hich\af39\dbch\af31505\loch\f39 https://git.solidcharity.com/timy/EduNetworkBuilder/wikis/Teacherdoc}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid4984628 \par \hich\af39\dbch\af31505\loch\f39 * Added the ability to make msi files for better deployment in multi-user settings \par \hich\af39\dbch\af31505\loch\f39 * Adjusted drag functionality so we do not jostle devices around accidentally \par \hich\af39\dbch\af31505\loch\f39 * Fixed bug when trying to ping wireless devices by name \par \hich\af39\dbch\af31505\loch\f39 * Fixed a bug pinging 0.0.0.0 -\par \hich\af39\dbch\af31505\loch\f39 * Fixed \hich\af39\dbch\af31505\loch\f39 lots of other bugs}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid4984628\charrsid4984628 +\par \hich\af39\dbch\af31505\loch\f39 * Fixed lots of other bugs}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid4984628\charrsid4984628 \par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid9664289 {\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid13454907 \hich\af39\dbch\af31505\loch\f39 Version 1.0.33}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid9664289 \par }\pard \ltrpar\ql \li0\ri0\sa200\sl276\slmult1\nowidctlpar\wrapdefault\faauto\rin0\lin0\itap0\pararsid14170698 {\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid3954092 \hich\af39\dbch\af31505\loch\f39 -* Fixed a major bug in settings that would blow up new installs. +* Fixed a major bug in settings that would blow u\hich\af39\dbch\af31505\loch\f39 p new installs. \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid9664289\charrsid9664289 \hich\af39\dbch\af31505\loch\f39 *}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid9664289 \hich\af39\dbch\af31505\loch\f39 \hich\f39 ctrl-right-click a device to add \'93\loch\f39 \hich\f39 hide\'94\loch\f39 to the context menu. \par \hich\af39\dbch\af31505\loch\f39 * From the puzzle menu you can ctrl-alt click items to mark them as solved. \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid16457871 \hich\af39\dbch\af31505\loch\f39 *}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid9125153 \hich\af39\dbch\af31505\loch\f39 }{\rtlch\fcs1 \ab\af39 -\ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid16457871 \hich\af39\dbch\af31505\loch\f39 Display bad subn\hich\af39\dbch\af31505\loch\f39 et masks (that cannot be displayed using CIDR notation) as /? -\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid9125153 \hich\af39\dbch\af31505\loch\f39 \hich\f39 -* Allow pings from devices that are locked. A bug made it so we could not change the address we wanted to ping to; all ip-addresses were locked, even a \'93\loch\f39 \hich\f39 ping to\'94\loch\f39 address. -\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12727249 \hich\af39\dbch\af31505\loch\f39 * Minor bug: If we pin\hich\af39\dbch\af31505\loch\f39 -g a local IP that does not exist, the error message we were getting was the wrong error message. Fixed that. +\ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid16457871 \hich\af39\dbch\af31505\loch\f39 Display bad subnet masks (that cannot be displayed using CIDR notation) as /? +\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid9125153 \hich\af39\dbch\af31505\loch\f39 * Allow pings from de\hich\af39\dbch\af31505\loch\f39 \hich\f39 +vices that are locked. A bug made it so we could not change the address we wanted to ping to; all ip-addresses were locked, even a \'93\loch\f39 \hich\f39 ping to\'94\loch\f39 address. +\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12727249 \hich\af39\dbch\af31505\loch\f39 * Minor bug: If we ping a local IP that does not exist, the error message we were getting was the wrong e\hich\af39\dbch\af31505\loch\f39 +rror message. Fixed that. \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid4995504 \hich\af39\dbch\af31505\loch\f39 * When wireless device is powered off, remove all wireless links. Links connected to WLAN had been reconnected. Fixed that. -\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid11235612 \hich\af39\dbch\af31505\loch\f39 * Cannot go into the\hich\af39\dbch\af31505\loch\f39 \hich\f39 - network options if we have loaded the network from resources. This way we cannot \'93\loch\f39 \hich\f39 cheat\'94\loch\f39 - by changing the network options. This is in preparation for setting this up for school use. Making it harder for students to cheat on homework assignments.}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid11235612\charrsid9664289 - -\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid14170698 \hich\af39\dbch\af31505\loch\f39 Version\hich\af39\dbch\af31505\loch\f39 1.0.32 +\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid11235612 \hich\af39\dbch\af31505\loch\f39 * Cannot go into the network options if we have loaded the network from resources. This way we cannot \loch\af39\dbch\af31505\hich\f39 \'93 +\loch\f39 \hich\f39 cheat\'94\loch\f39 by changing the network options. This is in preparation for setting this up for school use. Making it harder for students to cheat on homework assignments.}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 +\f39\lang9\langfe1033\langnp9\insrsid11235612\charrsid9664289 +\par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \b\f39\lang9\langfe1033\langnp9\insrsid14170698 \hich\af39\dbch\af31505\loch\f39 Version 1.0.32 \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid14170698\charrsid14170698 \hich\af39\dbch\af31505\loch\f39 *}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid14170698 \hich\af39\dbch\af31505\loch\f39 Allow dragging of items \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12727595 \hich\af39\dbch\af31505\loch\f39 * Select multiple items for dragging by using a nice big drag-box.}{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 @@ -274,7 +275,7 @@ g a local IP that does not exist, the error message we were getting was the wron \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid12727595 \hich\af39\dbch\af31505\loch\f39 * Highlight the multiple items if selecting them \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid15677065 \hich\af39\dbch\af31505\loch\f39 * Allow the ESC key to clear the selected items. \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid16005564 \hich\af39\dbch\af31505\loch\f39 * Can right-click and delete of multiple selected items -\par \hich\af39\dbch\af31505\loch\f39 * Can right-click and change color of multiple selected items +\par \hich\af39\dbch\af31505\loch\f39 * Can right-click and change color \hich\af39\dbch\af31505\loch\f39 of multiple selected items \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid8871995 \hich\af39\dbch\af31505\loch\f39 * Fixed some tracert bugs \par }{\rtlch\fcs1 \ab\af39 \ltrch\fcs0 \f39\lang9\langfe1033\langnp9\insrsid7431196 \hich\af39\dbch\af31505\loch\f39 * lots of minor fixes so is more stable on Linux \par \hich\af39\dbch\af31505\loch\f39 * Saves settings in ~/.conf/EduNetworkbuilder_config.xml file on Linux @@ -630,8 +631,8 @@ fffffffffffffffffdfffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff -ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e50000000000000000000000005073 -1cdea2bfd301feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 +ffffffffffffffffffffffffffffffff52006f006f007400200045006e00740072007900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000016000500ffffffffffffffffffffffff0c6ad98892f1d411a65f0040963251e5000000000000000000000000d062 +93e4b0bfd301feffffff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000105000000000000}} \ No newline at end of file