# Configure Loopback
auto lo
   iface lo inet loopback

# Configure eth0
auto eth0
   iface eth0 inet static
   address 192.168.1.100
   netmask 255.255.255.0
   broadcast 192.168.1.255
   hostname $(hostname)

# Configure eth1
auto eth1
   iface eth1 inet static
   address 192.168.2.100
   netmask 255.255.255.0
   broadcast 192.168.2.255
   hostname $(hostname)

# Configure eth2
auto eth2
   iface eth2 inet static
   address 192.168.3.100
   netmask 255.255.255.0
   broadcast 192.168.3.255
   hostname $(hostname)

