У меня есть маршрутизатор, в котором я установил систему Linux.
Я хочу, чтобы мой маршрутизатор поддерживал закрепление NAT.
Существует ли такая функция в ядре Linux? Если да, то как его активировать? Есть ли патч, чтобы применить его к моему ядру для поддержки заколки?
Прикрепление объяснения из Википедии:
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.