Networking
將 iptables 命令轉換為 ipfw
我正在嘗試將我在 ubuntu 上製作的程式碼與 osx 一起使用。我不知道如何將 iptables 命令轉換為 ipfw 命令。任何幫助,將不勝感激。
Ubuntu 程式碼:
echo 1 > /proc/sys/net/ipv4/ip_forward iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE ssh server -l root -w0:0 ifconfig tun0 10.0.0.1 netmask 255.0.0.0 route add -net 1.2.3.4 dev tun0 iptables -t nat -A OUTPUT -p all -d 15.0.0.5 -o tun0 -j DNAT --to-destination 10.0.0.5 route add -host 15.0.0.5 dev tun0
Mac OS X 程式碼:
sysctl -w net.inet.ip.forwarding=1 HELP HERE PLEASE! ssh server -l root -w0:0 ifconfig tun0 10.0.0.1 netmask 255.0.0.0 route add -net 1.2.3.4 dev tun0 HERE TOO HERE! route add -host 15.0.0.5 dev tun0
在本頁末尾,您將找到使用 ipfw 進行 NAT 的範例。我希望這有幫助。
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/firewalls-ipfw.html