역방향 루프백

역방향 루프백

이더넷 장치에서 역방향 루프백을 구성하는 방법은 무엇입니까? 이 경우 수신된 모든 트래픽은 이더넷 포트에 연결된 송신기로 다시 전송됩니다.

답변1

을 사용하여 원하는 것을 달성할 수 있는지 궁금합니다 iptables. 전체를 보면서iptables매뉴얼 페이지이 옵션의 이름은 다음과 같습니다 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

다음과 같은 명령이 원하는 작업을 수행할 것 같습니다.

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

다음과 같은 제목의 튜토리얼도 있습니다.수행 방법: iptables를 사용하여 네트워크 트래픽 복사/티/복제, 사용 방법을 자세히 설명합니다.

답변2

두 개의 macvlan 장치를 생성하고 서로 연결해 보십시오.

관련 정보