Network: Two Locations
From SOFTICE
|
Developed by:
[edit]
Synopsis
This network is used to introduce students to subnetting, static routing and RIP (Routing Information Protocol).
[edit]
[Network Diagram] Two Locations
[edit]
Configuration
global {
project twoLocations
$console = screen
}
switch lakeland {}
switch tampa {}
switch lakelandTampa {}
superclass hosts {
term $console
kernel = /home/sys/net/bin/linux-2.6.18.1/linux
template = DebianNet-3.1-v2.ext2
size 300M
}
host lakeland {
superclass hosts
cow_filesystem lakeland.cow
network eth0 {
switch lakeland
address 10.0.0.1
netmask 255.255.255.0
}
network eth1 {
switch lakelandTampa
address 10.0.3.1
netmask 255.255.255.0
}
}
host client {
superclass hosts
cow_filesystem client.cow
network eth0 {
switch lakeland
address 10.0.0.2
netmask 255.255.255.0
}
}
host tampa {
superclass hosts
cow_filesystem tampa.cow
network eth0 {
switch tampa
address 10.0.1.1
netmask 255.255.255.0
}
network eth1 {
switch lakelandTampa
address 10.0.3.2
netmask 255.255.255.0
}
}
host server {
superclass hosts
cow_filesystem server.cow
network eth0 {
switch tampa
address 10.0.1.2
netmask 255.255.255.0
}
}
[edit]
References
- [1] The MLN Manual


