Awesome idea! (I would never have thought of doing this)
It was a piece of cake when I got home last night, issued the following commands:
iptables -t nat -A PREROUTING -p tcp -i eth1 -d XXX.XXX.XXX.XXX --dport 80 -j DNAT --to XXX.XXX.XXX.XXX:8080
iptables -A FORWARD -p tcp -i eth1 -d XXX.XXX.XXX.XXX --dport 8080 -j ACCEPT
iptables -t nat -A POSTROUTING -o eth1 -j MASQUERADE
Kindle connected right up.
Thanks so much,
Ned
|