Coba iptables
aturan ini :
$ sudo iptables -t nat -A OUTPUT -p tcp --dport 80 -j DNAT --to-destination IP:80
Di atas dikatakan:
- Tambahkan aturan berikut ke tabel NAT (
-t nat
).
- Aturan ini akan ditambahkan (
-A
) ke lalu lintas keluar ( OUTPUT
).
- Kami hanya tertarik pada lalu lintas TCP (
-p tcp
).
- Kami hanya tertarik pada lalu lintas yang memiliki port tujuan 80 (
--dport 80
).
- Ketika kami memiliki kecocokan, lompat ke DNAT (
-j DNAT
).
- Rutekan lalu lintas ini ke beberapa IP @ port 80 server lain (
--to-destination IP:80
).
Apa itu 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.
Referensi