博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
给网卡设备添加两个IP别名(一个网卡绑定多个ip)
阅读量:6620 次
发布时间:2019-06-25

本文共 3747 字,大约阅读时间需要 12 分钟。

首先执行ifconfig,查看网卡设备名称

[root@localhost conf]# ifconfigens33: flags=4163
mtu 1500 inet 192.168.3.128 netmask 255.255.255.0 broadcast 192.168.3.255 inet6 fe80::6b14:b58e:faa2:525 prefixlen 64 scopeid 0x20
ether 00:0c:29:5e:7c:27 txqueuelen 1000 (Ethernet) RX packets 46410 bytes 31588589 (30.1 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 25430 bytes 3803612 (3.6 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

可以看到网卡设备名称为ens33

下面我们给该设备添加ip别名

325  ifconfig ens33:1 192.168.3.123 broadcast 192.168.3.255 netmask 255.255.255.0 up326  route add -host 192.168.3.123 dev ens33:1327  ifconfig328  ifconfig ens33:2 192.168.3.125 broadcast 192.168.3.255 netmask 255.255.255.0 up329  route add -host 192.168.3.125 dev ens33:2330  ifconfig331  history[root@localhost conf]# ifconfigens33: flags=4163
mtu 1500 inet 192.168.3.128 netmask 255.255.255.0 broadcast 192.168.3.255 inet6 fe80::6b14:b58e:faa2:525 prefixlen 64 scopeid 0x20
ether 00:0c:29:5e:7c:27 txqueuelen 1000 (Ethernet) RX packets 47199 bytes 31648090 (30.1 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 25448 bytes 3805064 (3.6 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0ens33:1: flags=4163
mtu 1500 inet 192.168.3.123 netmask 255.255.255.0 broadcast 192.168.3.255 ether 00:0c:29:5e:7c:27 txqueuelen 1000 (Ethernet)ens33:2: flags=4163
mtu 1500 inet 192.168.3.125 netmask 255.255.255.0 broadcast 192.168.3.255 ether 00:0c:29:5e:7c:27 txqueuelen 1000 (Ethernet)lo: flags=73
mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10
loop txqueuelen 1 (Local Loopback) RX packets 184495 bytes 29154176 (27.8 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 184495 bytes 29154176 (27.8 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0virbr0: flags=4099
mtu 1500 inet 192.168.122.1 netmask 255.255.255.0 broadcast 192.168.122.255 ether 52:54:00:61:e7:bc txqueuelen 1000 (Ethernet) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0[root@localhost conf]#

上面直接通过命令行配置的ip别名会在系统重启后失效,如果想让系统开机时自动运行,需要把那四条命令写入到/etc/rc.local文件里(该文件是系统启动时自动执行的文件)

这种方法执行的效果跟我们在虚拟机里面增加虚拟网卡后进行配置ip的效果是一样的
下面是我用物理机对这些ip进行ping的效果

root@BP:~# ping 192.168.3.128PING 192.168.3.128 (192.168.3.128) 56(84) bytes of data.64 bytes from 192.168.3.128: icmp_seq=1 ttl=64 time=0.280 ms64 bytes from 192.168.3.128: icmp_seq=2 ttl=64 time=0.253 ms^C--- 192.168.3.128 ping statistics ---2 packets transmitted, 2 received, 0% packet loss, time 1004msrtt min/avg/max/mdev = 0.253/0.266/0.280/0.021 msroot@BP:~# ping 192.168.3.125PING 192.168.3.125 (192.168.3.125) 56(84) bytes of data.64 bytes from 192.168.3.125: icmp_seq=1 ttl=64 time=0.357 ms64 bytes from 192.168.3.125: icmp_seq=2 ttl=64 time=0.192 ms^C--- 192.168.3.125 ping statistics ---2 packets transmitted, 2 received, 0% packet loss, time 1022msrtt min/avg/max/mdev = 0.192/0.274/0.357/0.084 msroot@BP:~# ping 192.168.3.123PING 192.168.3.123 (192.168.3.123) 56(84) bytes of data.64 bytes from 192.168.3.123: icmp_seq=1 ttl=64 time=0.266 ms64 bytes from 192.168.3.123: icmp_seq=2 ttl=64 time=0.209 ms^C--- 192.168.3.123 ping statistics ---2 packets transmitted, 2 received, 0% packet loss, time 1030msrtt min/avg/max/mdev = 0.209/0.237/0.266/0.032 ms

转载于:https://www.cnblogs.com/biaopei/p/7730517.html

你可能感兴趣的文章
MATLAB单纯形法输出到文件,实验二:MATLAB编程单纯形法求解教学提纲.docx
查看>>
vbs 连接oracle 数据库,QTP连接ORACLE 数据库VBS函数
查看>>
oracle网站无法登录,Oracle 10g的DBA无法登录解决方案
查看>>
oracle更新date数据类型,ORACLE DATE和TIMESTAMP数据类型的比较(一) (转)
查看>>
oracle导出数据加密,oracle数据出现愤怒加密算法
查看>>
matlab下列变量中合法的是,matlab基础练习题(带答案)
查看>>
Linux的镜像服务器,制作Linux镜像源Mirror方法
查看>>
linux 更改 用户 目录权限命令行,Linux命令:改变文件或目录的访问权限
查看>>
linux 命令查询内存,linux查询内存命令
查看>>
linux tty无法输入密码,Linux系统tty无法正常显示汉字的两种解决方案
查看>>
linux连接小米随身wifi密码忘记了,小米wifi管理员密码忘记了怎么办?
查看>>
linux系统防火墙关闭22端口,Linux系统防火墙关闭及端口开放
查看>>
linux挂载nfts分区,linux挂载NTFS分区
查看>>
linux popen获取ip地址,使用popen函数读取命令输出失败
查看>>
跟马哥快速学linux,学习Linux,如快速入门?
查看>>
python 编辑html文件内容,使用Python解析和编辑HTML文件
查看>>
切换 ip 批处理
查看>>
CommandArgument 绑定多个参数
查看>>
dropdownlist可以多选。类似的例子。。。
查看>>
ehcache 使用
查看>>