14.04 当我启动桥接接口时没有互联网连接(用于 LXC 容器)

14.04 当我启动桥接接口时没有互联网连接(用于 LXC 容器)

我在 Win 10 上的 VMware Workstation 中运行 VM Ubuntu 14.04 32 位。

我正在尝试设置具有自己的 IP 地址的 LXC 容器,因此我在 /etc/network/interfaces 中设置桥接接口(尝试了静态和 dhcp):

# ifup(8) 和 ifdown(8) 使用的接口 (5) 文件
 自动档   
 iface lo inet 环回

 自动 br0
 iface br0 inet dhcp
        bridge_ports eth0
        bridge_fd 0
        bridge_maxwait 0

但当我重新启动它时,我的主机 Ubuntu 上却没有互联网。

--- 8.8.8.8 ping 统计 ---
已发送 3 个数据包,已接收 0 个数据包,+3 个错误,100% 数据包丢失,耗时 1999 毫秒
管道 3

但它可以连接到路由器,我可以从我的主操作系统(win 10)通过 ssh 连接它

我的主机 ifconfig:

root@ubuntu:~# ifconfig
br0 链路封装:以太网 HWaddr 00:0c:29:68:f1:39
          inet 地址:192.168.1.4 Bcast:192.168.1.255 掩码:255.255.255.0
          inet6 地址:fe80::20c:29ff:fe68:f139/64 范围:链接
          上行广播运行多播 MTU:1500 度量:1
          RX 数据包:483 错误:0 丢弃:0 超限:0 帧:0
          TX 数据包:180 错误:0 丢弃:0 超限:0 载波:0
          碰撞:0 txqueuelen:0
          RX 字节:39212 (39.2 KB) TX 字节:28823 (28.8 KB)

eth0 链路封装:以太网 HWaddr 00:0c:29:68:f1:39
          inet 地址:192.168.1.10 Bcast:192.168.1.255 掩码:255.255.255.0
          上行广播运行多播 MTU:1500 度量:1
          RX 数据包:488 错误:0 丢弃:0 超限:0 帧:0
          TX 数据包:268 错误:0 丢弃:0 超限:0 载波:0
          碰撞:0 txqueuelen:1000
          RX 字节:46338 (46.3 KB) TX 字节:39955 (39.9 KB)
          中断:19 基址:0x2000

lo 链路封装:本地环回
          inet 地址:127.0.0.1 掩码:255.0.0.0
          inet6 地址:::1/128 范围:主机
          上行环回运行 MTU:65536 度量:1
          RX 数据包:128 错误:0 丢弃:0 超限:0 帧:0
          TX 数据包:128 错误:0 丢弃:0 超限:0 载波:0
          碰撞:0 txqueuelen:0
          RX 字节:20434 (20.4 KB) TX 字节:20434 (20.4 KB)

我读了所有类似的帖子,但没有帮助。有什么想法吗?

答案1

抱歉回复晚了,但我刚刚开始在这里写。

我假设您已经通过 apt-get 安装了 bridge-utils。

编辑 /etc/network/interfaces 文件。它应该类似于以下内容:

# Bridge between eth0 and eth1
auto br0
iface br0 inet dhcp
# For static configuration delete or comment out the above line and uncomment the following:
# iface br0 inet static
#  address 192.168.1.10
#  netmask 255.255.255.0
#  gateway 192.168.1.1
#  dns-nameservers 192.168.1.5
#  dns-search example.com
bridge_ports eth0
bridge_stp off
bridge_fd 0
bridge_maxwait 0

简而言之,将 eth0 最初处理的值赋予 br0。eth0 不应包含任何 IP 信息。

ifup br0

相关内容