#cd /etc/sysconfig/network-scripts
#cp ifcfg-eth0 ifcfg-eth0:1
#vi ifcfg-eth0:1
修改IP和设备名
Debian下一个网卡绑定多个ip的方法(NetDC)
修改/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
network 10.16.0.0
broadcast 10.16.255.255
修改/etc/network/ifstate
lo=lo
eth0=eth0
eth0:1=eth0:1
然后/etc/init.d/networking restart就可以了。
一个网卡绑定多ip另一法
在/etc/sysconfig/network-scripts/下创建一个文件:ifcfg-ethX-rangeX ("X"为网卡号)
文件内容:
IPADDR_START=
IPADDR_END=
CLONENUM=0
可以有256个ip
1、新建一个静态的mac-->ip对应表文件:ip-mac,将要绑定的IP和MAC地下写入此文件,格式为 ip mac。[root@ftpsvr ~]# echo '192.168.1.1 00:00:00:00:00:00 ' >/etc/ip-mac
[root@ftpsvr ~]# more /etc/ip-mac
192.168.1.1 00:00:00:00:00:00
2、设置开机自动绑定
[root@ftpsvr ~]# echo 'arp -f /etc/ip-mac ' >>/etc/rc.d/rc.local
3、手动执行一下绑定
[root@ftpsvr ~]# arp -f /etc/ip-mac
4、确认绑定是否成功
[root@ftpsvr ~]# arp
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)