Network: Ring
From SOFTICE
Revision as of 13:56, 1 August 2008; MattRideout (Talk | contribs)
(diff) ←Older revision | Current revision | Newer revision→ (diff)
(diff) ←Older revision | Current revision | Newer revision→ (diff)
|
Developed by:
[edit]
Synopsis
This network is used to introduce students to subnetting.
[edit]
[Network Diagram] Ring
[edit]
Configuration
global {
project ring
$console = screen
}
switch lakelandTampa {}
switch lakelandOrlando {}
switch tampaOrlando {}
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 lakelandTampa
address 10.0.3.1
netmask 255.255.255.0
}
network eth1 {
switch lakelandOrlando
address 10.0.4.1
netmask 255.255.255.0
}
}
host tampa {
superclass hosts
cow_filesystem tampa.cow
network eth0 {
switch lakelandTampa
address 10.0.3.2
netmask 255.255.255.0
}
network eth1 {
switch tampaOrlando
address 10.0.5.1
netmask 255.255.255.0
}
}
host orlando {
superclass hosts
cow_filesystem orlando.cow
network eth0 {
switch tampaOrlando
address 10.0.5.2
netmask 255.255.255.0
}
network eth1 {
switch lakelandOrlando
address 10.0.4.2
netmask 255.255.255.0
}
}
[edit]
References
- [1] The MLN Manual


