Reverse Loopback

1

Como configurar o loopback reverso em um dispositivo ethernet? Nesse caso, todo o tráfego recebido será enviado de volta ao transmissor conectado à porta ethernet.

    
por tartar 26.06.2013 / 20:38

2 respostas

2

Gostaria de saber se você pode realizar o que deseja usando iptables . Olhando através da página iptables man , notei esta opção chamada tee :

TEE

  The TEE target will clone a packet and redirect this clone to another
  machine on the  local  network  segment.  In  other words, the nexthop 
  must be the target, or you will have to configure the nexthop to forward
  it further if so desired.

  --gateway ipaddr

         Send  the  cloned  packet  to the host reachable at the given IP 
         address.  Use of 0.0.0.0 (for IPv4 packets) or :: (IPv6) is 
         invalid.


  To forward all incoming traffic on eth0 to an Network Layer logging box:

  -t mangle -A PREROUTING -i eth0 -j TEE --gateway 2001:db8::1

Parece que um comando como esse faria o que você deseja:

$ iptables -t mangle -A PREROUTING -i eth0 -j TEE --gateway <ip address>

Também há este tutorial intitulado: Howto: Copy / Tee / Clone o tráfego de rede usando iptables , que aborda como usá-lo em pequenos detalhes adicionais.

    
por 27.06.2013 / 06:32
0

Tente criar dois dispositivos macvlan e fazer uma ponte entre eles.

    
por 26.06.2013 / 23:30