Adding context help to puzzles, routing context help, and some help topics.
This commit is contained in:
parent
c78d194b20
commit
7d9f369a28
@ -48,7 +48,7 @@ namespace EduNetworkBuilder
|
||||
public enum HelpTopics {
|
||||
None, DHCP, DHCPServer, Firewall, Gateway, Help, IPAddress, Link, Subnet, Ping,
|
||||
VPN, Hub, Switch, ARP, StaticRoute, Subnetting, WhenToSubnet, ComparingAddresses, MACAddress,
|
||||
Network, Packet, NIC, Interface
|
||||
Network, Packet, NIC, Interface, Router
|
||||
}
|
||||
public enum PuzzleNames
|
||||
{
|
||||
|
@ -84,7 +84,18 @@ Mask:\par
|
||||
|
||||
\pard\widctlpar\sa200\sl276\slmult1\fs22\lang9 The mask has 24 ones in a row. So it could also be represented as /24. When it is compared, the first thing that happens is the subnet is masked out. In the mask, the final set of numbers are zeroes. The numbers where the mask is a 0 is dropped. The resulting number is: 192.168.0.0. This is called the "Network Address." We do the same thing for both the source and destination IP. Then we compare the Network Address of both of them. If they have the same network address, then they are considered to be on the same network. If they do not have the same network address, they are considered to be on different networks.\par
|
||||
\b VPNs:\par
|
||||
\b0 A VPN stands for a "Virtual Private Network." It is used to make a secure connection between computers or networks, usually across the Internet. It is usually used in the context of either someone working from home and wanting to access printers or file-shares off the office network. Or, two different networks wish to be connected (two offices in different states, etc).\b\par
|
||||
\b0 A VPN stands for a "Virtual Private Network." It is used to make a secure connection between computers or networks, usually across the Internet. It is usually used in the context of either someone working from home and wanting to access printers or file-shares off the office network. Or, two different networks wish to be connected (two offices in different states, etc).\par
|
||||
\b DEVICES:\par
|
||||
Hubs:\par
|
||||
\b0 A Hub is a very simple networking device. When a packet comes into a hub, the packet is sent out of the rest of the network wires (links) attached to it. The packet is not sent out of the wire that it came in on.\b\par
|
||||
Switches:\par
|
||||
\b0 A switch is like a hub, except that it has some brains to it. A packet coming into a switch is sent out only to the destination it was intended to go to. The first time a packet comes to a particular destination, the switch needs to figure out where that destination is. So the first packet is sent everywhere. When the destination responds, the switch now knows where the destination is, so the packet is only sent out that one port from then on.\par
|
||||
The switches in this simulation have some features of a "managed switch", in that they pretend they have spanning tree turned on. Spanning tree helps if you have a network loop (see the network loop puzzles for an example of what happens.) Spanning-tree finds the quickest path through a series of switches from source to destination, ignoring the other paths.\b\par
|
||||
Routers:\par
|
||||
\b0 A router is a network device that recieves a packet and sends it onward to the next destination. You may need to configure the routes on the router (see the topic on Static Routes). It will have some basic routes set based on the interfaces configured on the device. Anything that is considered "local" has a basic route defined for it.\par
|
||||
\b Firewall:\par
|
||||
\b0 A firewall has some ports that work as routers, but it can also have WAN ports. A WAN port does not allow incoming packets. Anything coming into the firewall that is destined for inside the firewall is blocked. In a real firewall, you would have the option to do port-forwarding, which would allow incoming traffic to go to a particular destination. We do not have any way to communicate between devices except "ping", which we usually do not port-forward for. So this simulation does not do port-forwarding.\par
|
||||
The firewall can also do VPNs (see the help topic on VPNs for more information). The VPN allows devices behind one firewall to talk to devices behind another firewall.\b \par
|
||||
ADVANCED TOPICS:\b0\par
|
||||
\b Subnetting: \b0 (Based heavily off of LordFlasheart's post, "Subnetting Made Easy" here: {{\field{\*\fldinst{HYPERLINK http://www.techexams.net/forums/ccna-ccent/38772-subnetting-made-easy.html }}{\fldrslt{http://www.techexams.net/forums/ccna-ccent/38772-subnetting-made-easy.html\ul0\cf0}}}}\f0\fs22\par
|
||||
An IP address is made up of 32 bits, split into 4 octets (octet = 8 bits). Some bits are reserved for identifying the network and the other bits are left to identify the host.\par
|
||||
|
@ -2,8 +2,8 @@
|
||||
<EduNetworkBuilder>
|
||||
<!--This is a network file for EduNetworkBuilder.-->
|
||||
<Network>
|
||||
<message>To learn how this program works, first we will acquaint you with the 'Help.' Most of the puzzles you do, you will want to do with as little help as possible. But, there is help when you need it. For this puzzle, click one of the four help-levels (round buttons) on the right. Then mouse-over the PC and see the messages. When you have moused-over for all the buttons (and pressed the ? box), this puzzle will be completed.</message>
|
||||
<title>Learn how help works</title>
|
||||
<en_message>To learn how this program works, first we will acquaint you with the 'Help.' Most of the puzzles you do, you will want to do with as little help as possible. But, there is help when you need it. For this puzzle, click one of the four help-levels (round buttons) on the right. Then mouse-over the PC and see the messages. When you have moused-over for all the buttons (and pressed the ? box), this puzzle will be completed.</en_message>
|
||||
<en_title>Learn how help works</en_title>
|
||||
<height>1024</height>
|
||||
<width>1024</width>
|
||||
<itemsize>100</itemsize>
|
||||
@ -38,6 +38,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>101</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -60,6 +61,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>102</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -96,6 +98,11 @@
|
||||
<dhost>?Button</dhost>
|
||||
<thetest>HelpRequest</thetest>
|
||||
</nettest>
|
||||
<nettest>
|
||||
<shost>Help</shost>
|
||||
<dhost>Read</dhost>
|
||||
<thetest>ReadContextHelp</thetest>
|
||||
</nettest>
|
||||
<tag>Help</tag>
|
||||
</Network>
|
||||
</EduNetworkBuilder>
|
@ -2,10 +2,10 @@
|
||||
<EduNetworkBuilder>
|
||||
<!--This is a network file for EduNetworkBuilder.-->
|
||||
<Network>
|
||||
<message>This puzzle shows the difference between a hub and a switch.
|
||||
<en_message>This puzzle shows the difference between a hub and a switch.
|
||||
Have each of the servers ping the computers on the same lan as themselves, and have those computers ping the server.
|
||||
The switch learns which device is attached to it and only sends the packet to that computer, while the hub sends the packet to every device on the subnet.</message>
|
||||
<title>Switch vs Hub</title>
|
||||
The switch learns which device is attached to it and only sends the packet to that computer, while the hub sends the packet to every device on the subnet.</en_message>
|
||||
<en_title>Switch vs Hub</en_title>
|
||||
<height>1024</height>
|
||||
<width>1024</width>
|
||||
<itemsize>100</itemsize>
|
||||
@ -40,6 +40,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>161</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -62,6 +63,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>management_interface</nictype>
|
||||
<uniqueidentifier>162</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>management_interface0</nicname>
|
||||
<myip>
|
||||
@ -84,6 +86,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>163</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port1</nicname>
|
||||
<myip>
|
||||
@ -106,6 +109,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>164</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port2</nicname>
|
||||
<myip>
|
||||
@ -128,6 +132,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>165</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port3</nicname>
|
||||
<myip>
|
||||
@ -150,6 +155,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>166</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port4</nicname>
|
||||
<myip>
|
||||
@ -172,6 +178,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>167</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port5</nicname>
|
||||
<myip>
|
||||
@ -194,6 +201,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>168</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port6</nicname>
|
||||
<myip>
|
||||
@ -216,6 +224,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>169</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port7</nicname>
|
||||
<myip>
|
||||
@ -253,6 +262,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>113</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -275,6 +285,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>management_interface</nictype>
|
||||
<uniqueidentifier>114</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>management_interface0</nicname>
|
||||
<myip>
|
||||
@ -297,6 +308,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>115</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port1</nicname>
|
||||
<myip>
|
||||
@ -319,6 +331,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>116</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port2</nicname>
|
||||
<myip>
|
||||
@ -341,6 +354,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>117</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port3</nicname>
|
||||
<myip>
|
||||
@ -363,6 +377,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>118</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port4</nicname>
|
||||
<myip>
|
||||
@ -385,6 +400,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>119</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port5</nicname>
|
||||
<myip>
|
||||
@ -407,6 +423,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>120</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port6</nicname>
|
||||
<myip>
|
||||
@ -429,6 +446,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>121</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port7</nicname>
|
||||
<myip>
|
||||
@ -466,6 +484,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>107</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -488,6 +507,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>108</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -525,6 +545,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>156</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -547,6 +568,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>157</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -584,6 +606,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>133</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -606,6 +629,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>134</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -628,6 +652,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>135</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth1</nicname>
|
||||
<myip>
|
||||
@ -677,6 +702,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>137</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -699,6 +725,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>138</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -721,6 +748,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>139</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth1</nicname>
|
||||
<myip>
|
||||
@ -770,6 +798,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>141</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -792,6 +821,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>142</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -814,6 +844,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>143</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth1</nicname>
|
||||
<myip>
|
||||
@ -875,6 +906,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>101</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -897,6 +929,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>102</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -946,6 +979,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>104</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -968,6 +1002,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>105</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -1005,6 +1040,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nicname>eth0</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>146</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -1021,6 +1057,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nicname>port2</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>171</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -1037,6 +1074,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nicname>eth0</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>148</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -1053,6 +1091,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nicname>eth0</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>147</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -1069,6 +1108,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nicname>eth1</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>173</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -1085,6 +1125,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nicname>port1</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>144</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -1101,6 +1142,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nicname>port2</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>145</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -1117,6 +1159,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<nicname>port3</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>172</uniqueidentifier>
|
||||
</link>
|
||||
<nettest>
|
||||
@ -1140,5 +1183,7 @@ The switch learns which device is attached to it and only sends the packet to th
|
||||
<thetest>SuccessfullyPings</thetest>
|
||||
</nettest>
|
||||
<tag>Ping</tag>
|
||||
<tag>Hub</tag>
|
||||
<tag>Switch</tag>
|
||||
</Network>
|
||||
</EduNetworkBuilder>
|
@ -1,16 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<EduNetworkBuilder>
|
||||
<!--This is a network file for EduNetworkBuilder.-->
|
||||
<Network>
|
||||
<message>pc0 needs an IP that is local to the other two computers. Double-click PC0, double-click the IP-Address (0.0.0.0) and put a good IP address there.</message>
|
||||
<title>IP Puzzle</title>
|
||||
<en_message>pc0 needs an IP that is local to the other two computers. Double-click PC0, double-click the IP-Address (0.0.0.0) and put a good IP address there.</en_message>
|
||||
<en_title>IP Puzzle</en_title>
|
||||
<height>1024</height>
|
||||
<width>1024</width>
|
||||
<itemsize>100</itemsize>
|
||||
<showlabels>True</showlabels>
|
||||
<uniqueidentifier>122</uniqueidentifier>
|
||||
<level>0</level>
|
||||
<sortorder>03.00</sortorder>
|
||||
<sortorder>3</sortorder>
|
||||
<uniqueidentifier>122</uniqueidentifier>
|
||||
<startinghelplevel>full</startinghelplevel>
|
||||
<device>
|
||||
<hostname>net_switch0</hostname>
|
||||
@ -38,6 +38,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>101</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -60,6 +61,7 @@
|
||||
<nictype>management_interface</nictype>
|
||||
<uniqueidentifier>102</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>management_interface0</nicname>
|
||||
<myip>
|
||||
@ -82,6 +84,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>103</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port1</nicname>
|
||||
<myip>
|
||||
@ -104,6 +107,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>104</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port2</nicname>
|
||||
<myip>
|
||||
@ -126,6 +130,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>105</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port3</nicname>
|
||||
<myip>
|
||||
@ -148,6 +153,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>106</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port4</nicname>
|
||||
<myip>
|
||||
@ -170,6 +176,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>107</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port5</nicname>
|
||||
<myip>
|
||||
@ -192,6 +199,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>108</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port6</nicname>
|
||||
<myip>
|
||||
@ -214,6 +222,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>109</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port7</nicname>
|
||||
<myip>
|
||||
@ -251,6 +260,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>111</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -273,6 +283,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>112</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -310,6 +321,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>114</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -332,6 +344,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>115</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -369,6 +382,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>117</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -391,6 +405,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>118</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -416,6 +431,7 @@
|
||||
<nicname>eth0</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>119</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -432,6 +448,7 @@
|
||||
<nicname>eth0</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>120</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -448,6 +465,7 @@
|
||||
<nicname>port3</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>121</uniqueidentifier>
|
||||
</link>
|
||||
<nettest>
|
||||
@ -460,6 +478,6 @@
|
||||
<dhost>pc2</dhost>
|
||||
<thetest>NeedsLocalIPTo</thetest>
|
||||
</nettest>
|
||||
<tag>IP</tag>
|
||||
<tag>IPAddress</tag>
|
||||
</Network>
|
||||
</EduNetworkBuilder>
|
@ -1,16 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<EduNetworkBuilder>
|
||||
<!--This is a network file for EduNetworkBuilder.-->
|
||||
<Network>
|
||||
<message>Plug in the network to the computer that needs it. Click on the link icon (the line) and drag the pointer from the switch to the computer. When you release the mouse button, the link window will pop up. Choose the ports you want to connect, and you should be finished.</message>
|
||||
<title>Plug in network</title>
|
||||
<en_message>Plug in the network to the computer that needs it. Click on the link icon (the line) and drag the pointer from the switch to the computer. When you release the mouse button, the link window will pop up. Choose the ports you want to connect, and you should be finished.</en_message>
|
||||
<en_title>Plug in network</en_title>
|
||||
<height>1024</height>
|
||||
<width>1024</width>
|
||||
<itemsize>100</itemsize>
|
||||
<showlabels>True</showlabels>
|
||||
<uniqueidentifier>118</uniqueidentifier>
|
||||
<level>0</level>
|
||||
<sortorder>01.00</sortorder>
|
||||
<sortorder>1</sortorder>
|
||||
<uniqueidentifier>118</uniqueidentifier>
|
||||
<startinghelplevel>full</startinghelplevel>
|
||||
<device>
|
||||
<hostname>net_switch0</hostname>
|
||||
@ -38,6 +38,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>101</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -60,6 +61,7 @@
|
||||
<nictype>management_interface</nictype>
|
||||
<uniqueidentifier>102</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>management_interface0</nicname>
|
||||
<myip>
|
||||
@ -82,6 +84,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>103</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port1</nicname>
|
||||
<myip>
|
||||
@ -104,6 +107,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>104</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port2</nicname>
|
||||
<myip>
|
||||
@ -126,6 +130,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>105</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port3</nicname>
|
||||
<myip>
|
||||
@ -148,6 +153,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>106</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port4</nicname>
|
||||
<myip>
|
||||
@ -170,6 +176,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>107</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port5</nicname>
|
||||
<myip>
|
||||
@ -192,6 +199,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>108</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port6</nicname>
|
||||
<myip>
|
||||
@ -214,6 +222,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>109</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port7</nicname>
|
||||
<myip>
|
||||
@ -251,6 +260,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>111</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -273,6 +283,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>112</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -310,6 +321,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>114</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -332,6 +344,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>115</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -357,6 +370,7 @@
|
||||
<nicname>port1</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>116</uniqueidentifier>
|
||||
</link>
|
||||
<nettest>
|
||||
|
@ -1,16 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<EduNetworkBuilder>
|
||||
<!--This is a network file for EduNetworkBuilder.-->
|
||||
<Network>
|
||||
<message>There is no switch. Add one and link the devices to it. Click on the switch and add it to the network (make sure you add a switch and not a hub). Then, drag links from the switch to the computers, choosing the ports to connect.</message>
|
||||
<title>No Switch</title>
|
||||
<en_message>There is no switch. Add one and link the devices to it. Click on the switch and add it to the network (make sure you add a switch and not a hub). Then, drag links from the switch to the computers, choosing the ports to connect.</en_message>
|
||||
<en_title>No Switch</en_title>
|
||||
<height>1024</height>
|
||||
<width>1024</width>
|
||||
<itemsize>100</itemsize>
|
||||
<showlabels>False</showlabels>
|
||||
<uniqueidentifier>119</uniqueidentifier>
|
||||
<level>0</level>
|
||||
<sortorder>02.00</sortorder>
|
||||
<sortorder>2</sortorder>
|
||||
<uniqueidentifier>119</uniqueidentifier>
|
||||
<startinghelplevel>full</startinghelplevel>
|
||||
<device>
|
||||
<hostname>pc0</hostname>
|
||||
@ -38,6 +38,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>101</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -60,6 +61,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>102</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -97,6 +99,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>104</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -119,6 +122,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>105</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -156,6 +160,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>117</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -178,6 +183,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>118</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -205,5 +211,6 @@
|
||||
<thetest>NeedsLinkToDevice</thetest>
|
||||
</nettest>
|
||||
<tag>Link</tag>
|
||||
<tag>Switch</tag>
|
||||
</Network>
|
||||
</EduNetworkBuilder>
|
@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<EduNetworkBuilder>
|
||||
<!--This is a network file for EduNetworkBuilder.-->
|
||||
<Network>
|
||||
<message>Right-click PC0 and ping laptop0 and laptop1. You can put either the IP address or host-name of the device you are trying to ping in the box that pops up asking you for an IP. </message>
|
||||
<title>Ping Test</title>
|
||||
<en_message>Right-click PC0 and ping laptop0 and laptop1. You can put either the IP address or host-name of the device you are trying to ping in the box that pops up asking you for an IP. </en_message>
|
||||
<en_title>Ping Test</en_title>
|
||||
<height>1024</height>
|
||||
<width>1024</width>
|
||||
<itemsize>100</itemsize>
|
||||
@ -38,6 +38,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>104</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -60,6 +61,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>105</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -97,6 +99,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>124</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -119,6 +122,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>125</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -156,6 +160,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>110</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -178,6 +183,7 @@
|
||||
<nictype>management_interface</nictype>
|
||||
<uniqueidentifier>111</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>management_interface0</nicname>
|
||||
<myip>
|
||||
@ -200,6 +206,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>112</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port1</nicname>
|
||||
<myip>
|
||||
@ -222,6 +229,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>113</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port2</nicname>
|
||||
<myip>
|
||||
@ -244,6 +252,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>114</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port3</nicname>
|
||||
<myip>
|
||||
@ -266,6 +275,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>115</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port4</nicname>
|
||||
<myip>
|
||||
@ -288,6 +298,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>116</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port5</nicname>
|
||||
<myip>
|
||||
@ -310,6 +321,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>117</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port6</nicname>
|
||||
<myip>
|
||||
@ -332,6 +344,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>118</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port7</nicname>
|
||||
<myip>
|
||||
@ -369,6 +382,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>101</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -391,6 +405,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>102</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -428,6 +443,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>120</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -450,6 +466,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>121</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -472,6 +489,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>122</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth1</nicname>
|
||||
<myip>
|
||||
@ -497,6 +515,7 @@
|
||||
<nicname>port1</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>126</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -513,6 +532,7 @@
|
||||
<nicname>port2</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>127</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -529,6 +549,7 @@
|
||||
<nicname>eth0</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>128</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -545,6 +566,7 @@
|
||||
<nicname>eth0</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>129</uniqueidentifier>
|
||||
</link>
|
||||
<nettest>
|
||||
|
@ -1,16 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<EduNetworkBuilder>
|
||||
<!--This is a network file for EduNetworkBuilder.-->
|
||||
<Network>
|
||||
<message>Tell the PC to do a DHCP request. Right-click on the PC to see the menu, or do it from the 'All' menu.</message>
|
||||
<title>DHCP Request</title>
|
||||
<en_message>Tell the PC to do a DHCP request. Right-click on the PC to see the menu, or do it from the 'All' menu.</en_message>
|
||||
<en_title>DHCP Request</en_title>
|
||||
<height>1024</height>
|
||||
<width>1024</width>
|
||||
<itemsize>100</itemsize>
|
||||
<showlabels>True</showlabels>
|
||||
<uniqueidentifier>118</uniqueidentifier>
|
||||
<level>0</level>
|
||||
<sortorder>03.00</sortorder>
|
||||
<sortorder>3</sortorder>
|
||||
<uniqueidentifier>118</uniqueidentifier>
|
||||
<startinghelplevel>full</startinghelplevel>
|
||||
<device>
|
||||
<hostname>net_switch0</hostname>
|
||||
@ -38,6 +38,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>104</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -60,6 +61,7 @@
|
||||
<nictype>management_interface</nictype>
|
||||
<uniqueidentifier>105</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>management_interface0</nicname>
|
||||
<myip>
|
||||
@ -82,6 +84,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>106</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port1</nicname>
|
||||
<myip>
|
||||
@ -104,6 +107,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>107</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port2</nicname>
|
||||
<myip>
|
||||
@ -126,6 +130,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>108</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port3</nicname>
|
||||
<myip>
|
||||
@ -148,6 +153,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>109</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port4</nicname>
|
||||
<myip>
|
||||
@ -170,6 +176,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>110</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port5</nicname>
|
||||
<myip>
|
||||
@ -192,6 +199,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>111</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port6</nicname>
|
||||
<myip>
|
||||
@ -214,6 +222,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>112</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port7</nicname>
|
||||
<myip>
|
||||
@ -251,6 +260,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>114</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -273,6 +283,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>115</uniqueidentifier>
|
||||
<usesdhcp>True</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -310,6 +321,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>101</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -332,6 +344,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>102</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -369,6 +382,7 @@
|
||||
<nicname>port1</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>116</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -385,6 +399,7 @@
|
||||
<nicname>port2</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>117</uniqueidentifier>
|
||||
</link>
|
||||
<nettest>
|
||||
@ -393,5 +408,6 @@
|
||||
<thetest>NeedsLocalIPTo</thetest>
|
||||
</nettest>
|
||||
<tag>DHCP</tag>
|
||||
<tag>DHCPServer</tag>
|
||||
</Network>
|
||||
</EduNetworkBuilder>
|
@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<EduNetworkBuilder>
|
||||
<!--This is a network file for EduNetworkBuilder.-->
|
||||
<Network>
|
||||
<message>This shows what happens if there is a broken network wire in your network. Ping laptop1 and see where the packet dies. Open one of the devices connected to that link and you will see that, even though the device has a link connected to it, it does not have a "connection light" saying it is connected. (The connection-light is the * at the end of the eth name). You can also edit the network card to see if it thinks it is connected. Remove the broken network wire by right-clicking one of the devices at either end and removing the link. Then add the link again. A successful ping tells you if you got it working.</message>
|
||||
<title>Broken Link</title>
|
||||
<en_message>This shows what happens if there is a broken network wire in your network. Ping laptop1 and see where the packet dies. Open one of the devices connected to that link and you will see that, even though the device has a link connected to it, it does not have a "connection light" saying it is connected. (The connection-light is the * at the end of the eth name). You can also edit the network card to see if it thinks it is connected. Remove the broken network wire by right-clicking one of the devices at either end and removing the link. Then add the link again. A successful ping tells you if you got it working.</en_message>
|
||||
<en_title>Broken Link</en_title>
|
||||
<height>1024</height>
|
||||
<width>1024</width>
|
||||
<itemsize>100</itemsize>
|
||||
@ -38,6 +38,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>104</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -60,6 +61,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>105</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -97,6 +99,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>124</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -119,6 +122,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>125</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -156,6 +160,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>110</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -178,6 +183,7 @@
|
||||
<nictype>management_interface</nictype>
|
||||
<uniqueidentifier>111</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>management_interface0</nicname>
|
||||
<myip>
|
||||
@ -200,6 +206,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>112</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port1</nicname>
|
||||
<myip>
|
||||
@ -222,6 +229,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>113</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port2</nicname>
|
||||
<myip>
|
||||
@ -244,6 +252,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>114</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port3</nicname>
|
||||
<myip>
|
||||
@ -266,6 +275,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>115</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port4</nicname>
|
||||
<myip>
|
||||
@ -288,6 +298,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>116</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port5</nicname>
|
||||
<myip>
|
||||
@ -310,6 +321,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>117</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port6</nicname>
|
||||
<myip>
|
||||
@ -332,6 +344,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>118</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port7</nicname>
|
||||
<myip>
|
||||
@ -369,6 +382,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>101</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -391,6 +405,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>102</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -428,6 +443,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>120</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -450,6 +466,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>121</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -472,6 +489,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>122</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth1</nicname>
|
||||
<myip>
|
||||
@ -561,5 +579,6 @@
|
||||
<dhost>router0</dhost>
|
||||
<thetest>NeedsLinkToDevice</thetest>
|
||||
</nettest>
|
||||
<tag>Link</tag>
|
||||
</Network>
|
||||
</EduNetworkBuilder>
|
@ -1,16 +1,17 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<EduNetworkBuilder>
|
||||
<!--This is a network file for EduNetworkBuilder.-->
|
||||
<Network>
|
||||
<message>PC0 cannot ping one of the other computers. Figure out which one, and change the IP address of that computer so it works.</message>
|
||||
<title>Bad IP</title>
|
||||
<en_message>PC0 cannot ping one of the other computers. Figure out which one, and change the IP address of that computer so it works.</en_message>
|
||||
<en_title>Bad IP</en_title>
|
||||
<height>1024</height>
|
||||
<width>1024</width>
|
||||
<itemsize>100</itemsize>
|
||||
<showlabels>True</showlabels>
|
||||
<uniqueidentifier>126</uniqueidentifier>
|
||||
<level>1</level>
|
||||
<sortorder>01.00</sortorder>
|
||||
<sortorder>1</sortorder>
|
||||
<uniqueidentifier>126</uniqueidentifier>
|
||||
<startinghelplevel>none</startinghelplevel>
|
||||
<device>
|
||||
<hostname>net_switch0</hostname>
|
||||
<size>100</size>
|
||||
@ -37,6 +38,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>113</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -59,6 +61,7 @@
|
||||
<nictype>management_interface</nictype>
|
||||
<uniqueidentifier>114</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>management_interface0</nicname>
|
||||
<myip>
|
||||
@ -81,6 +84,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>115</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port1</nicname>
|
||||
<myip>
|
||||
@ -103,6 +107,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>116</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port2</nicname>
|
||||
<myip>
|
||||
@ -125,6 +130,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>117</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port3</nicname>
|
||||
<myip>
|
||||
@ -147,6 +153,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>118</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port4</nicname>
|
||||
<myip>
|
||||
@ -169,6 +176,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>119</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port5</nicname>
|
||||
<myip>
|
||||
@ -191,6 +199,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>120</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port6</nicname>
|
||||
<myip>
|
||||
@ -213,6 +222,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>121</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port7</nicname>
|
||||
<myip>
|
||||
@ -250,6 +260,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>101</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -272,6 +283,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>102</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -309,6 +321,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>104</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -331,6 +344,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>105</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -368,6 +382,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>107</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -390,6 +405,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>108</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -427,6 +443,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>110</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -449,6 +466,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>111</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -474,6 +492,7 @@
|
||||
<nicname>port1</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>122</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -490,6 +509,7 @@
|
||||
<nicname>port2</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>123</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -506,6 +526,7 @@
|
||||
<nicname>port3</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>124</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -522,6 +543,7 @@
|
||||
<nicname>port4</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>125</uniqueidentifier>
|
||||
</link>
|
||||
<nettest>
|
||||
@ -529,6 +551,6 @@
|
||||
<dhost>pc2</dhost>
|
||||
<thetest>NeedsLocalIPTo</thetest>
|
||||
</nettest>
|
||||
<tag>IP</tag>
|
||||
<tag>IPAddress</tag>
|
||||
</Network>
|
||||
</EduNetworkBuilder>
|
@ -2,8 +2,8 @@
|
||||
<EduNetworkBuilder>
|
||||
<!--This is a network file for EduNetworkBuilder.-->
|
||||
<Network>
|
||||
<message>Computers can only communicate with other computers that are local to them. Gateways must have an IP address that is local to the client. Ping pc0 from pc1 and see if you can spot the error.</message>
|
||||
<title>Bad Gateway</title>
|
||||
<en_message>Computers can only communicate with other computers that are local to them. Gateways must have an IP address that is local to the client. Ping pc0 from pc1 and see if you can spot the error.</en_message>
|
||||
<en_title>Bad Gateway</en_title>
|
||||
<height>1024</height>
|
||||
<width>1024</width>
|
||||
<itemsize>100</itemsize>
|
||||
@ -38,7 +38,6 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>113</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -61,7 +60,6 @@
|
||||
<nictype>management_interface</nictype>
|
||||
<uniqueidentifier>114</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>management_interface0</nicname>
|
||||
<myip>
|
||||
@ -84,7 +82,6 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>115</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port1</nicname>
|
||||
<myip>
|
||||
@ -107,7 +104,6 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>116</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port2</nicname>
|
||||
<myip>
|
||||
@ -130,7 +126,6 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>117</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port3</nicname>
|
||||
<myip>
|
||||
@ -153,7 +148,6 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>118</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port4</nicname>
|
||||
<myip>
|
||||
@ -176,7 +170,6 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>119</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port5</nicname>
|
||||
<myip>
|
||||
@ -199,7 +192,6 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>120</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port6</nicname>
|
||||
<myip>
|
||||
@ -222,7 +214,6 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>121</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port7</nicname>
|
||||
<myip>
|
||||
@ -260,7 +251,6 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>123</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -283,7 +273,6 @@
|
||||
<nictype>management_interface</nictype>
|
||||
<uniqueidentifier>124</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>management_interface0</nicname>
|
||||
<myip>
|
||||
@ -306,7 +295,6 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>125</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port1</nicname>
|
||||
<myip>
|
||||
@ -329,7 +317,6 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>126</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port2</nicname>
|
||||
<myip>
|
||||
@ -352,7 +339,6 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>127</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port3</nicname>
|
||||
<myip>
|
||||
@ -375,7 +361,6 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>128</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port4</nicname>
|
||||
<myip>
|
||||
@ -398,7 +383,6 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>129</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port5</nicname>
|
||||
<myip>
|
||||
@ -421,7 +405,6 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>130</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port6</nicname>
|
||||
<myip>
|
||||
@ -444,7 +427,6 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>131</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port7</nicname>
|
||||
<myip>
|
||||
@ -482,7 +464,6 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>110</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -505,7 +486,6 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>111</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -543,7 +523,6 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>153</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -566,7 +545,6 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>154</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -604,7 +582,6 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>133</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -627,7 +604,6 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>134</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -659,7 +635,6 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>135</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth1</nicname>
|
||||
<myip>
|
||||
@ -709,7 +684,6 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>137</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -732,7 +706,6 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>138</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -755,7 +728,6 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>139</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth1</nicname>
|
||||
<myip>
|
||||
@ -805,7 +777,6 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>141</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -828,7 +799,6 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>142</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -851,7 +821,6 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>143</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth1</nicname>
|
||||
<myip>
|
||||
@ -913,7 +882,6 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>101</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -936,7 +904,6 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>102</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -986,7 +953,6 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>104</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -1009,7 +975,6 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>105</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -1047,6 +1012,7 @@
|
||||
<nicname>port1</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>144</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -1063,6 +1029,7 @@
|
||||
<nicname>eth0</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>148</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -1079,6 +1046,7 @@
|
||||
<nicname>port3</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>151</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -1095,6 +1063,7 @@
|
||||
<nicname>port2</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>150</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -1111,6 +1080,7 @@
|
||||
<nicname>port1</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>149</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -1127,6 +1097,7 @@
|
||||
<nicname>port4</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>159</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -1143,6 +1114,7 @@
|
||||
<nicname>eth0</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>147</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -1159,6 +1131,7 @@
|
||||
<nicname>eth0</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>146</uniqueidentifier>
|
||||
</link>
|
||||
<nettest>
|
||||
@ -1167,5 +1140,7 @@
|
||||
<thetest>SuccessfullyPings</thetest>
|
||||
</nettest>
|
||||
<tag>Gateway</tag>
|
||||
<tag>IPAddress</tag>
|
||||
<tag>ComparingAddresses</tag>
|
||||
</Network>
|
||||
</EduNetworkBuilder>
|
@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<EduNetworkBuilder>
|
||||
<!--This is a network file for EduNetworkBuilder.-->
|
||||
<Network>
|
||||
<message>This puzzle shows you what happens when there are duplicate MAC addresses. This rarely happens, but it used to happen more often than should be statistically probable. Cheap network card vendors used to make batches of cards with the same MAC address, and occasionally someone would buy two of them. The best solution is to replace one of the NICs that has the duplicate MAC address. Ping both pc0 and pc1 from pc2.</message>
|
||||
<title>Duplicate MAC addresses</title>
|
||||
<en_message>This puzzle shows you what happens when there are duplicate MAC addresses. This rarely happens, but it used to happen more often than should be statistically probable. Cheap network card vendors used to make batches of cards with the same MAC address, and occasionally someone would buy two of them. The best solution is to replace one of the NICs that has the duplicate MAC address. Ping both pc0 and pc1 from pc2.</en_message>
|
||||
<en_title>Duplicate MAC addresses</en_title>
|
||||
<height>1024</height>
|
||||
<width>1024</width>
|
||||
<itemsize>100</itemsize>
|
||||
@ -38,6 +38,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>101</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -60,6 +61,7 @@
|
||||
<nictype>management_interface</nictype>
|
||||
<uniqueidentifier>102</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>management_interface0</nicname>
|
||||
<myip>
|
||||
@ -82,6 +84,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>103</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port1</nicname>
|
||||
<myip>
|
||||
@ -104,6 +107,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>104</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port2</nicname>
|
||||
<myip>
|
||||
@ -126,6 +130,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>105</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port3</nicname>
|
||||
<myip>
|
||||
@ -148,6 +153,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>106</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port4</nicname>
|
||||
<myip>
|
||||
@ -170,6 +176,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>107</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port5</nicname>
|
||||
<myip>
|
||||
@ -192,6 +199,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>108</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port6</nicname>
|
||||
<myip>
|
||||
@ -214,6 +222,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>109</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port7</nicname>
|
||||
<myip>
|
||||
@ -251,6 +260,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>121</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -270,10 +280,10 @@
|
||||
<hostname>pc0</hostname>
|
||||
<nicname>eth0</nicname>
|
||||
</myid>
|
||||
<mac>1008b173aa5b</mac>
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>122</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -311,6 +321,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>124</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -330,10 +341,10 @@
|
||||
<hostname>pc1</hostname>
|
||||
<nicname>eth0</nicname>
|
||||
</myid>
|
||||
<mac>1008b173aa5b</mac>
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>125</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -371,6 +382,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>127</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -393,6 +405,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>128</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -418,6 +431,7 @@
|
||||
<nicname>port1</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>129</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -434,6 +448,7 @@
|
||||
<nicname>port2</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>130</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -450,6 +465,7 @@
|
||||
<nicname>port3</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>131</uniqueidentifier>
|
||||
</link>
|
||||
<nettest>
|
||||
@ -462,5 +478,6 @@
|
||||
<dhost>pc1</dhost>
|
||||
<thetest>SuccessfullyPings</thetest>
|
||||
</nettest>
|
||||
<tag>MACAddress</tag>
|
||||
</Network>
|
||||
</EduNetworkBuilder>
|
@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<EduNetworkBuilder>
|
||||
<!--This is a network file for EduNetworkBuilder.-->
|
||||
<Network>
|
||||
@ -766,6 +766,7 @@
|
||||
<thetest>SuccessfullyPings</thetest>
|
||||
</nettest>
|
||||
<tag>Ping</tag>
|
||||
<tag>Router</tag>
|
||||
<tag>Subnets</tag>
|
||||
</Network>
|
||||
</EduNetworkBuilder>
|
@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<EduNetworkBuilder>
|
||||
<!--This is a network file for EduNetworkBuilder.-->
|
||||
<Network>
|
||||
<message>This network has two different subnets using the same switch. The router has two interfaces (IP addresses, both on eth0). One network card functions like two. Ping from the different PCs to machines on the other network.</message>
|
||||
<title>Two Subnets, Shared Network</title>
|
||||
<en_message>This network has two different subnets using the same switch. The router has two interfaces (IP addresses, both on eth0). One network card functions like two. Ping from the different PCs to machines on the other network.</en_message>
|
||||
<en_title>Two Subnets, Shared Network</en_title>
|
||||
<height>1024</height>
|
||||
<width>1024</width>
|
||||
<itemsize>100</itemsize>
|
||||
@ -38,6 +38,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>110</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -60,6 +61,7 @@
|
||||
<nictype>management_interface</nictype>
|
||||
<uniqueidentifier>111</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>management_interface0</nicname>
|
||||
<myip>
|
||||
@ -82,6 +84,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>112</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port1</nicname>
|
||||
<myip>
|
||||
@ -104,6 +107,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>113</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port2</nicname>
|
||||
<myip>
|
||||
@ -126,6 +130,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>114</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port3</nicname>
|
||||
<myip>
|
||||
@ -148,6 +153,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>115</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port4</nicname>
|
||||
<myip>
|
||||
@ -170,6 +176,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>116</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port5</nicname>
|
||||
<myip>
|
||||
@ -192,6 +199,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>117</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port6</nicname>
|
||||
<myip>
|
||||
@ -214,6 +222,7 @@
|
||||
<nictype>port</nictype>
|
||||
<uniqueidentifier>118</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>port7</nicname>
|
||||
<myip>
|
||||
@ -251,6 +260,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>122</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -273,6 +283,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>123</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -310,6 +321,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>125</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -332,6 +344,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>126</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -369,6 +382,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>128</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -391,6 +405,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>129</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -428,6 +443,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>131</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -450,6 +466,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>132</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -487,6 +504,7 @@
|
||||
<nictype>lo</nictype>
|
||||
<uniqueidentifier>138</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>lo0</nicname>
|
||||
<myip>
|
||||
@ -509,6 +527,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>139</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth0</nicname>
|
||||
<myip>
|
||||
@ -540,6 +559,7 @@
|
||||
<nictype>eth</nictype>
|
||||
<uniqueidentifier>140</uniqueidentifier>
|
||||
<usesdhcp>False</usesdhcp>
|
||||
<encryptionkey />
|
||||
<interface>
|
||||
<nicname>eth1</nicname>
|
||||
<myip>
|
||||
@ -565,6 +585,7 @@
|
||||
<nicname>port3</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>133</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -581,6 +602,7 @@
|
||||
<nicname>port4</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>134</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -597,6 +619,7 @@
|
||||
<nicname>port5</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>135</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -613,6 +636,7 @@
|
||||
<nicname>port6</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>136</uniqueidentifier>
|
||||
</link>
|
||||
<link>
|
||||
@ -629,6 +653,7 @@
|
||||
<nicname>eth0</nicname>
|
||||
</DstNic>
|
||||
<hostname />
|
||||
<linktype>normal</linktype>
|
||||
<uniqueidentifier>141</uniqueidentifier>
|
||||
</link>
|
||||
<nettest>
|
||||
@ -662,6 +687,7 @@
|
||||
<thetest>SuccessfullyPings</thetest>
|
||||
</nettest>
|
||||
<tag>Ping</tag>
|
||||
<tag>Subnets</tag>
|
||||
<tag>Router</tag>
|
||||
<tag>Subnet</tag>
|
||||
</Network>
|
||||
</EduNetworkBuilder>
|
@ -697,4 +697,12 @@
|
||||
<value>Read Context Help for:</value>
|
||||
<comment>Generic statement used many places</comment>
|
||||
</data>
|
||||
<data name="H_Router_Key" xml:space="preserve">
|
||||
<value>Routers:</value>
|
||||
<comment>Text from the help document that we jump to</comment>
|
||||
</data>
|
||||
<data name="H_Router_Title" xml:space="preserve">
|
||||
<value>Router</value>
|
||||
<comment>Text used in the program on buttons and the like</comment>
|
||||
</data>
|
||||
</root>
|
Loading…
Reference in New Issue
Block a user