You can easily create a forward port with the following command:
Code:
iptables -t nat -A PREROUTING -p tcp --dport 8080 -i eth0 -j DNAT --to 192.168.1.1:80
The following command list all the forward rules the
Code:
iptables -t nat -L PREROUTING -n --line-numbers
This command delete the second rule:
Code:
iptables -D PREROUTING 2 -t nat
This should do what you ask.
It is easy and quick.