web-dev-qa-db-ja.com

すべてのGREトラフィックを特定のネットワークインターフェイスに転送するにはどうすればよいですか?

Eth2から来るすべてのGREトラフィック(IPプロトコル47)を自分のマシンのbr0に転送したいと思います。どうやってやるの?

1
Bruce

私はそれを試したことがありませんが、最初にあなたが望むトラフィックに一致する必要があります。 iptablesと-pオプションをプロトコル番号とともに使用してこれを行うことができるはずです。

パラメータ次のパラメータは、ルール仕様を構成します(add、delete、insert、replace、およびappendコマンドで使用されます)。

   [!] -p, --protocol protocol
          The  protocol of the rule or of the packet to check.  The speci‐
          fied protocol can be one of tcp, udp, udplite,  icmp,  esp,  ah,
          sctp  or  all, or it can be a numeric value, representing one of
          these protocols or  a  different  one.   A  protocol  name  from
          /etc/protocols  is also allowed.  A "!" argument before the pro‐
          tocol inverts the test.  The number zero is equivalent  to  all.
          Protocol  all  will  match  with  all  protocols and is taken as
          default when this option is omitted.
1
Lunar_Lamp