FreeBSD, Debian, CentOS一个网卡绑定多个IP
1. freebsd:
配置/etc/rc.conf
ifconfig_interface="inet 192.168.1.5 255.255.255.0"
ifconfig_interface_alias0="inet 192.168.1.6 255.255.255.0"
注意interface是网卡设备名.
2. debian
/etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.1.145
netmask 255.255.255.0
network 192.168.1.0
gateway 192.168.1.1
另外一个ip
auto eth0:1
iface eth0:1 inet static
address 192.168.1.146
netmask 255.255.255.0
network 192.168.1.0
gateway 192.168.1.1
3.centos:
/etc/sysconfig/network-scripts/ifcfg-eth0
device=eth0
onboot=yes
hwaddr=00:0c:29:16:39:5f
netmask=255.255.255.0
ipaddr=192.168.1.147
gateway=192.168.1.1
type=ethernet
绑定另外一个ip, 创建另外一个文件, ifcfg-eth0
device=eth0 // 注意还是eth0, 指示此ip绑定到eth0
onboot=yes
hwaddr=00:0c:29:16:39:5f
netmask=255.255.255.0
ipaddr=192.168.1.148
gateway=192.168.1.1
type=ethernet
上一篇: Freebsd 下运行QQ For Linux 的方法
下一篇: Freebsd挂载光驱和软驱