Linux システムをインストールしたルーターがあります。
ルーターがNATヘアピンをサポートしてほしい
カーネル Linux にそのような機能はありますか? ある場合、それをアクティブ化するにはどうすればよいですか? ヘアピニングをサポートするためにカーネルに適用するパッチはありますか?
Wikipedia からのヘアピンの説明:
Let us consider a private network with the following:
Gateway address: 192.168.0.1
Host 1: 192.168.0.5
Host 2: 192.168.0.7
The gateway has an external IP : 192.0.2.1
Host 1 runs a P2P application P1 on its port 12345 which is externally mapped to 4444.
Host 2 runs a P2P application P2 on its port 12345 which is externally mapped to 5555.
If the NAT device supports hairpinning, then P1 application can connect to the P2 application using the external endpoint 192.0.2.1:5555.
If not, the communication will not work.
答え1
これはiptables
「最近の」カーネル(2.4(10年以上前のもの)
秘訣は、「リバース NAT」を実行することです。つまり、NAT された 2 つのサーバーにアクセスしているローカル ネット上の任意のホストの IP アドレスを、ゲートウェイのパブリック IP にマップします。
次のようなもの(つまりのみNAT ルール、ファイアウォールなし):
iptables -t nat -A PREROUTING -p tcp -m tcp -s 192.168.0.0/24 -d 192.168.0.5 --dport 4444 -j DNAT --to-destination :12345
iptables -t nat -A POSTROUTING -o eth1 -p tcp -m tcp -s 192.168.0.0/24 --dport 12345 -j SNAT --to-source 192.10.2.1
iptables -t nat -A PREROUTING -p tcp -m tcp -s 192.168.0.0/24 -d 192.168.0.7 --dport 5555 -j DNAT --to-destination :12345
iptables -t nat -A POSTROUTING -o eth1 -p tcp -m tcp -s 192.168.0.0/24 --dport 12345 -j SNAT --to-source 192.10.2.1
iptables -t nat -A PREROUTING -p tcp -m tcp -d 192.168.0.1 --dport 4444 -j DNAT --to-destination 192.168.0.5:12345
iptables -t nat -A PREROUTING -p tcp -m tcp -d 192.168.0.1 --dport 5555 -j DNAT --to-destination 192.168.0.7:12345
iptables -t nat -A POSTROUTING -o eth0 -j SNAT --to-source 192.168.0.1
ファイアウォールルールの書き方に慣れていない場合は、次のようなGUIフロントエンドを使用することをお勧めします。FWビルダー。