Here is the output requested, so it is getting loaded.
dcerouter_24050:~# iptables -t nat -xvnL
Chain PREROUTING (policy ACCEPT 40 packets, 2886 bytes)
pkts bytes target prot opt in out source destination
0 0 DNAT tcp -- eth0 * 0.0.0.0/0 0.0.0.0/0 tcp dpt:80 to:192.168.80.1:8081
Chain POSTROUTING (policy ACCEPT 6 packets, 480 bytes)
pkts bytes target prot opt in out source destination
0 0 MASQUERADE 0 -- * eth0 192.168.80.0/24 !192.168.80.0/24
Chain OUTPUT (policy ACCEPT 6 packets, 480 bytes)
pkts bytes target prot opt in out source destination
My question is now, why did this same rule forward all outgoing browser requests to port 8081 in 704 and now it does not?
Is there another way to handle outgoing connections.
I would like to figure this one out.
right now the work around is to manually tell all browsers to us proxy 192.168.80.1:8081
Thanks,
Rob