|
再iptables 入门一文中有两点疑惑:
一:
iptables -t nat -A POSTROUTING -o eth0 -s 172.16.0.0/16 -j SNAT --to-source $FW_IP
二:
iptables -t nat -A PREROUTING -i eth0 -p tcp -d $FW_IP --dport 80 -j DNAT --to-destination 172.16.255.2:80
我想请问在 -j 后的SNAT --to-source $FW_IP和DNAT --to-destination 172.16.255.2:80 是扫描意思啊??我记得再 -j 后面好象没有这么多参数的 !
谁能解释一下呢? |
|