Iptables 1.4.11 On Android
I have downloaded the Android kernel sources from http://source.android.com/source/building-kernels.html I have then started the emulator and wanted to play with iptable rules but
Solution 1:
Use protocol numbers (-p 6
) instead of names (-p tcp
):
iptables -t nat -A OUTPUT -p 6 --dport 8000 -j REDIRECT --to-port 8080
See this answer for more info: getprotobyname error iptables
Post a Comment for "Iptables 1.4.11 On Android"