设为首页 - 加入收藏 ASP站长网(Aspzz.Cn)- 科技、建站、经验、云计算、5G、大数据,站长网!
热搜: 数据 手机 公司
当前位置: 首页 > 服务器 > 搭建环境 > Windows > 正文

如何在Ubuntu系统中添加一个辅助IP地址(2)

发布时间:2018-09-10 04:02 所属栏目:117 来源:Prakash Subramanian
导读:要在 Ubuntu 系统上添加永久辅助 IP 地址,只需编辑 /etc/network/interfaces 文件并添加所需的 IP 详细信息。 # vi /etc/network/interfaces # vi /etc/network/interfaces # The loopback network interface auto

要在 Ubuntu 系统上添加永久辅助 IP 地址,只需编辑 /etc/network/interfaces 文件并添加所需的 IP 详细信息。

  1. # vi /etc/network/interfaces
  1. # vi /etc/network/interfaces
  2.  
  3. # The loopback network interface
  4. auto lo
  5. iface lo inet loopback
  6.  
  7. # The primary network interface
  8. auto eth0
  9. iface eth0 inet static
  10. address 192.168.56.150
  11. netmask 255.255.255.0
  12. network 192.168.56.0
  13. broadcast 192.168.56.255
  14. gateway 192.168.56.1
  15.  
  16. auto eth0:1
  17. iface eth0:1 inet static
  18. address 192.168.56.151
  19. netmask 255.255.255.0

保存并关闭文件,然后重启网络接口服务。

  1. # service networking restart
  2. # ifdown eth0:1 && ifup eth0:1

验证新添加的 IP 地址:

  1. # ifconfig
  2. eth0 Link encap:Ethernet HWaddr 08:00:27:98:b7:36
  3. inet addr:192.168.56.150 Bcast:192.168.56.255 Mask:255.255.255.0
  4. inet6 addr: fe80::a00:27ff:fe98:b736/64 Scope:Link
  5. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  6. RX packets:5 errors:0 dropped:0 overruns:0 frame:0
  7. TX packets:84 errors:0 dropped:0 overruns:0 carrier:0
  8. collisions:0 txqueuelen:1000
  9. RX bytes:962 (962.0 B) TX bytes:11905 (11.9 KB)
  10.  
  11. eth0:1 Link encap:Ethernet HWaddr 08:00:27:98:b7:36
  12. inet addr:192.168.56.151 Bcast:192.168.56.255 Mask:255.255.255.0
  13. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  14.  
  15. eth1 Link encap:Ethernet HWaddr 08:00:27:6a:cf:d3
  16. inet addr:10.0.3.15 Bcast:10.0.3.255 Mask:255.255.255.0
  17. inet6 addr: fe80::a00:27ff:fe6a:cfd3/64 Scope:Link
  18. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  19. RX packets:4924 errors:0 dropped:0 overruns:0 frame:0
  20. TX packets:3185 errors:0 dropped:0 overruns:0 carrier:0
  21. collisions:0 txqueuelen:1000
  22. RX bytes:4037636 (4.0 MB) TX bytes:422516 (422.5 KB)
  23.  
  24. lo Link encap:Local Loopback
  25. inet addr:127.0.0.1 Mask:255.0.0.0
  26. inet6 addr: ::1/128 Scope:Host
  27. UP LOOPBACK RUNNING MTU:65536 Metric:1
  28. RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  29. TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  30. collisions:0 txqueuelen:1
  31. RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)

如何在 Ubuntu 16.04 LTS 中临时添加辅助 IP 地址

正如本文开头所述,网络接口名称从 Ubuntu 15.10 就开始从 ‘ethX’ 更改为 ‘enXXXX’ (enp0s3),所以,替换你的接口名称。

(编辑:ASP站长网)

网友评论
推荐文章
    热点阅读