ลองiptables
กฎนี้:
$ sudo iptables -t nat -A OUTPUT -p tcp --dport 80 -j DNAT --to-destination IP:80
ข้างต้นพูดว่า:
- เพิ่มกฎต่อไปนี้ในตาราง NAT (
-t nat
)
- กฎนี้จะถูกต่อท้าย (
-A
) กับปริมาณการใช้ขาออก ( OUTPUT
)
- เราสนใจเฉพาะการรับส่งข้อมูล TCP (
-p tcp
)
- เราสนใจเฉพาะทราฟฟิกที่มีพอร์ตปลายทางคือ 80 (
--dport 80
)
- เมื่อเรามีการแข่งขันข้ามไปที่ DNAT (
-j DNAT
)
- เส้นทางการจราจรนี้เพื่อ IP บางส่วนเซิร์ฟเวอร์อื่น @ พอร์ต 80 (
--to-destination IP:80
)
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.
อ้างอิง