# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
# ___________________________________________________________________________
# this is an example configuration file showing
# how to use a cisco-loadbalanced solution
# as supplied by internet solutions
# ===========================================================================

# The loopback interface
auto lo



iface lo inet loopback



auto eth0 eth1 eth2
# _________________________________
# eth0: The internal network
# =================================
iface eth0 inet static
	address 10.1.1.3
	netmask 255.255.255.0
	network 10.1.1.0
	broadcast 10.1.1.255

# ___________________________________________________________________
# eth1: Directly connected to an Internet Solutions Cisco ADSL Router
# ==================================================================
iface eth1 inet static
	address 196.38.234.195            #one of the 5 ip's given by IS
	netmask 255.255.255.248
	network 196.38.234.192            #subnet for the /28
	broadcast 196.38.234.199          #broadcast for the /28
	balanced_gateway 196.38.234.193   #the IP address of the Cisco
	ping_host apollo.is.co.za	   	  #ip of a STABLE host on the other side of the cisco
	linkname is1                      #Linkname for /etc/ratroute.conf
	up /usr/bin/rateventd -d

# _________________________________________________________________________
# eth2: Directly connected to another Internet Solutions Cisco ADSL Router
# =========================================================================
iface eth2 inet static
	address 196.38.237.130           #one of the 5 ips
	netmask 255.255.255.248
	network 196.38.237.128
	broadcast 196.38.237.135
	balanced_gateway 196.38.237.129  #ip addy of the cisco
	ping_host apollo.is.co.za	   	 #ip of a STABLE host on the other side of the cisco
	linkname is2                     #linkname for /etc/ratroute.conf, important!
	up /usr/bin/rateventd -d

