我用Gnome-Shell运行Debian Wheezy。 我目前的networking接口configuration是这样的:
# The loopback network interface auto lo iface lo inet loopback # The primary network interface allow-hotplug eth0 iface eth0 inet dhcp # Bridge setup # allow-hotplug br0 auto br0 iface br0 inet static address 192.168.0.1 netmask 255.255.255.0 bridge_ports none bridge_stp off bridge_fd 0 bridge_maxwait 0
我正在使用br0进行虚拟化。
我的问题是现在我失去了networkingpipe理器eth0的支持。 所以我不能再使用OpenVPN插件来快速连接到我的VPN。
有没有人做过这样的设置,并知道如何configuration这个正确的?
几件事情,
尝试这个: –
# vim /etc/network/interfaces
#The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth0 iface eth0 inet manual # set pass through and use br0 for networking # Bridge setup allow-hotplug br0 auto br0 iface br0 inet static address 192.168.0.1 netmask 255.255.255.0 network 192.168.0.0 broadcast 192.168.0.255 gateway 192.168.0.254 # make sure this gateway address is correct bridge_ports eth0 # bind to device here bridge_stp off bridge_fd 0 bridge_maxwait 0
这是一个仍然影响Ubuntu 14.04的已知错误,但在14.10中被修复。 参见: https : //bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1273201
Debian是Ubuntu的上游,我认为(但我不确定)这个问题是否会出现在networkingpipe理器的上游。