Centos VM 服务多个公共 IP:如何配置网络接口?

Centos VM 服务多个公共 IP:如何配置网络接口?

我有一台 Centos 5.6 VM(vSphere 客户端),它已响应 eth0 和 eth0:1 上的两个不同公共 IP,我正在尝试添加 eth0:2。我复制了 eth0 配置文件并重新启动了网络服务。我不明白还需要哪些其他步骤。

ifconfig

eth0      Link encap:Ethernet  HWaddr 00:40:46:B9:00:41  
          inet addr:10.1.12.10  Bcast:10.1.12.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:163371837 errors:77 dropped:0 overruns:0 frame:0
          TX packets:168210961 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:1891221045 (1.7 GiB)  TX bytes:855899500 (816.2 MiB)
          Interrupt:59 Base address:0x2000 

eth0:1    Link encap:Ethernet  HWaddr 00:40:46:B9:00:41  
          inet addr:10.1.12.11  Bcast:10.1.12.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          Interrupt:59 Base address:0x2000 

eth0:2    Link encap:Ethernet  HWaddr 00:40:46:B9:00:41  
          inet addr:10.1.12.12  Bcast:10.1.12.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          Interrupt:59 Base address:0x2000 

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:188976973 errors:0 dropped:0 overruns:0 frame:0
          TX packets:188976973 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:2015642664 (1.8 GiB)  TX bytes:2015642664 (1.8 GiB)

/etc/resolv.conf

nameserver 10.1.12.1

route -n

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
10.1.12.0       0.0.0.0         255.255.255.0   U     0      0        0 eth0
169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 eth0
0.0.0.0         10.1.12.1       0.0.0.0         UG    0      0        0 eth0

答案1

这表明它已经配置正确。

未找到服务器通常是 DNS 错误,而不是连接错误。

添加额外 IP 时可能需要做的一件事是重新启动您希望监听这些 IP 的守护进程,以便它们绑定到这些 IP。

相关内容