como definir interface de ponte em eth0 e ath0

2

Estou desenvolvendo a versão openWRT SDK AA. Como faço para definir interface de ponte entre ethernet e interface sem fio? Posso criar uma interface extra, digamos A além daqueles WAN e LAN existentes e, em seguida, conecte a interface A e a LAN tog

    
por Jess 29.07.2016 / 08:10

1 resposta

1

Você não pode interligar interfaces do cliente sem fio. O motivo é explicado no OpenWrt Wiki :

enter image description here

The 802.11 standard only uses three MAC addresses for frames transmitted between the Access Point and the Station. Frames transmitted from the Station to the AP don't include the ethernet source MAC of the requesting host and response frames are missing the destination ethernet MAC to address the target host behind the client bridge.

  1. Bridged Host sends a packet to the Target host
  2. Frame is relayed via the W-LAN Client and the MAC address of the transmitting wireless adapter is used as source MAC, the sending ethernet MAC is discarded
  3. W-LAN AP receives the frame and redirects it to the Target
  4. Target receives the frame and generates a response
  5. Target responds to the received frame using the (wrong) source MAC as destination
  6. W-LAN AP relays the frame to the W-LAN Client with the given destination MAC W-LAN Client receives the frame and assumes it is the final destination since it's wireless MAC is used in the frame, the packet is not forwarded Bridged Host never sees a response frame since the W-LAN Client became the destination, no connection is possible

No entanto, no modo de ponto de acesso, a ponte é possível. Basta usar o seguinte em /etc/config/wireless :

config 'wifi-iface'
    option 'network'    'lan'
    ...

Em /etc/config/network , a interface lan precisa ser uma interface de ponte:

config 'interface' 'lan'
    option 'type' 'bridge'
    ...

Claro, você pode usar qualquer nome, não apenas lan .

Se você quiser apenas uma ponte com várias interfaces, crie interfaces de VLAN que não estejam "conectadas" a nada.

    
por 29.07.2016 / 08:39