Not sure if this will help, but here's how I did it on my server (don't pay attention to the wrong addresses or masks...):<br><br>auto eth0<br>iface eth0 inet static<br>    address 192.168.1.31<br>    netmask 255.255.240.0<br>
    gateway 192.168.1.1<br>    up route add -host 192.168.1.31 dev eth0<br>    pre-up iptables-restore < /etc/iptables.rules<br><br>auto eth0:1<br>iface eth0:1 inet static<br>    address 192.168.1.32<br>    netmask 255.255.240.0<br>
    gateway 192.168.1.1<br>    up route add -host 192.168.1.32 dev eth0:1<br><br>auto eth0:2<br>iface eth0:2 inet static<br>    address 192.168.1.33<br>    netmask 255.255.240.0<br>    gateway 192.168.1.1<br>    up route add -host 192.168.1.33 dev eth0:2<br>
<br><br>And somehow,  auto eth0:1 ... wouldn't work properly, so i just added the following to /etc/rc.local, to make sure they are brought up:<br>ifup eth0<br>ifup eth0:1<br>ifup eth0:2<br><br><br>