Network-Manager com interface de ponte e OpenVPN

1

Estou executando o Debian Wheezy com o Gnome-Shell. Minha configuração atual de interface de rede é esta:

# 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

Estou usando o br0 para virtualização.

Meu problema agora é que estou perdendo o suporte do Network-Manager para eth0. Portanto, não posso mais usar o plug-in do OpenVPN para me conectar rapidamente à minha VPN.

Alguém fez essa configuração e sabe como configurar isso corretamente?

    
por Denny Crane 15.08.2013 / 16:55

2 respostas

0

Algumas coisas,

  1. você não vinculou sua ponte a um dispositivo
  2. Você ainda está tentando usar seu dispositivo Ethernet normalmente

tente isto: -

# 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
    
por 16.08.2013 / 01:05
0

Este é um bug conhecido que ainda afeta o Ubuntu 14.04, mas é corrigido em 14.10. Veja: link

O Debian é upstream do Ubuntu, e eu assumo (mas não tenho certeza) que este problema estaria no upstream do network-manager também.

    
por 21.01.2015 / 16:32