Debian搭建

1.单网卡绑定2个IP

修改/etc/network/interfaces
auto eth0
iface eth0 inet static
address 172.16.3.123
netmask 255.255.255.0
network 172.16.3.0
broadcast 172.16.3.255
gateway 172.16.3.1
auto eth0:1
iface eth0:1 inet static
address 10.16.3.123
netmask 255.255.0.0

vim /etc/network/ifstate 
lo=lo
eth0=eth0
eth0:1=eth0:1
没有文档/etc/network/ifstate,手工创建之
#/etc/init.d/networking restart||ifup eth0

原文地址:https://www.cnblogs.com/dejun/p/5684803.html