我在两台服务器之间配置了两个 NIC,一个用于将服务器连接到互联网,另一个用于服务器的快速内部连接,每台服务器都有三个虚拟机
我已经在所有虚拟机上配置了 NIC,但 IP 是由 172.26.43.1 VLAN 上的 DHCP 分配的,该 VLAN 已连接到 Internet,但 10.10.10.1 是我用于私有网络的 IP(仅用于所有其他虚拟机之间的内部连接),没有 DHCP,所以我分配了静态 IP
当我在虚拟机上分配静态 IP 时这里
我的虚拟机上的互联网停止工作
VM 上的配置是
/etc/network/interfaces
auto eth1
iface eth1 inet static
address 10.10.10.17
netmask 255.255.255.0
gateway 10.10.10.11
10.10.10.11 是运行虚拟机的服务器的 IP
ifconfig
eth0 Link encap:Ethernet HWaddr 08:00:27:e8:2e:19
inet addr:172.26.43.88 Bcast:172.26.43.255 Mask:255.255.255.0
inet6 addr: fe80::a00:27ff:fee8:2e19/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:55831 errors:0 dropped:0 overruns:0 frame:0
TX packets:1945 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:9126338 (9.1 MB) TX bytes:158629 (158.6 KB)
eth1 Link encap:Ethernet HWaddr 08:00:27:68:bd:91
inet addr:10.10.10.17 Bcast:10.10.10.255 Mask:255.255.255.0
inet6 addr: fe80::a00:27ff:fe68:bd91/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:468 (468.0 B)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:16 errors:0 dropped:0 overruns:0 frame:0
TX packets:16 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:1184 (1.1 KB) TX bytes:1184 (1.1 KB)
route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default 172.26.43.1 0.0.0.0 UG 100 0 0 eth0
10.10.10.0 10.10.10.11 255.255.255.0 U 0 0 0 eth1
172.26.43.0 * 255.255.255.0 U 0 0 0 eth0