<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Wed, Jan 2, 2013 at 7:50 PM, Gary Hodder wrote:<br><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


try this<br>
ppp0=Internet connection<br>
eth0=local area network connection<br>
This will forward port 22 on the Internet to machine 192.168.0.2 port 22<br>
on local network.<br>
<br>
iptables -A FORWARD -p tcp -i ppp0 -o eth0 -d 192.168.0.2 --dport 22 -j<br>
ACCEPT<br>
<br>
iptables -t nat -A PREROUTING -p tcp -i ppp0 --dport 22 -j DNAT<br>
--to-destination <a href="http://192.168.0.2:22" target="_blank">192.168.0.2:22</a><br>
<span class="HOEnZb"></span><br></blockquote></div><br></div><div class="gmail_extra">I&#39;ll try this tomorrow when I get into work. But at first look it seems awfully familiar, like it&#39;s something that I&#39;ve already tried. Thanks, though. At this point I&#39;ll try whatever somebody thinks might work.<br>
<br></div><div class="gmail_extra">-Alan<br></div></div>