Network: Ring

From SOFTICE

Jump to: navigation, search

Contents

Developed by:

Synopsis

This network is used to introduce students to subnetting.

[Network Diagram] Ring

Image:Ring.jpg

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
       }
}

References

  • [1] The MLN Manual