Experimente esta regra iptables
:
$ sudo iptables -t nat -A OUTPUT -p tcp --dport 80 -j DNAT --to-destination IP:80
O texto acima diz:
- Adicione a seguinte regra à tabela NAT (
-t nat
). - Esta regra será anexada (
-A
) ao tráfego de saída (OUTPUT
). - Estamos interessados somente no tráfego TCP (
-p tcp
). - Estamos interessados apenas no tráfego cuja porta de destino é 80 (
--dport 80
). - Quando tivermos uma correspondência, pule para DNAT (
-j DNAT
). - Encaminhe esse tráfego para a porta 80 @ de outro servidor @ (
--to-destination IP:80
).
O que é o DNAT?
DNAT
This target is only valid in the nat table, in the PREROUTING and OUTPUT
chains, and user-defined chains which are only called from those chains.
It specifies that the destination address of the packet should be modified
(and all future packets in this connection will also be mangled), and
rules should cease being examined.