> Does anyone have a simple approach to forward the 443 port to an > internal machine? >
Assuming your running some sort of Linux router with IPTABLES, you should be able to do something like this: iptables -t nat -A PREROUTING -i eth0 -p tcp -d w.x.y.z --dport 443 -j DNAT --to-destination a.b.c.d iptables -t nat -A POSTROUTING -s a.b.c.d --sport 443 -o eth0 -j SNAT --to-source w.x.y.z w.x.y.z is your external, a.b.c.d is your internal. Please let me know if it works. -- The Digital Hermit Unix and Linux Solutions http://www.digitalhermit.com [EMAIL PROTECTED]
Want to buy your Pack or Services from MandrakeSoft? Go to http://www.mandrakestore.com
