热门在ubuntu上使用vmware设置2个网络适配器


1

我已经了解了以下配置:

图1:Ubuntu在局域网中使用GUI,静态配置

图2:同一LAN网段中的Server-Ubuntu,以及NAT模式下的第二个网络适配器,可以访问Internet。

我做了什么:

配置的LAN网段 - 此处没有问题。然后我在第二个图像上添加了第二个网络适配器并将其添加到 /etc/network/interfaces。我也修改了路由表。

的内容 /etc/network/interfaces

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
    address 10.1.2.1
    netmask 255.255.255.0
    network 10.1.2.0
    broadcast 10.1.2.255
    dns-nameservers 10.1.2.1

auto eth1
iface eth1 inet dhcp

这就是路由表当前的样子:

Kernel IP routing table
Destination        Gateway        Genmask        Flags Metric Ref    Use    Iface
default            192.168.174.1  0.0.0.0        UG    100    0      0      eth1
10.1.2.0           *              255.255.255.0  U     0      0      0      eth0
192.168.174.0      *              255.255.255.0  U     0      0      0      eth1

唉,这似乎在某些时候是错误的,因为没有外部主机可以访问。有人可以帮我搞清楚吗?

Answers:


1

删除

#netmask 255.255.255.0
#network 10.1.2.0
#broadcast 10.1.2.255

解决了这个问题!

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.