I want ppl to connect to me w/ FTP.

liquidg3

Registered
i'm on a network, my local ip is:

10.0.0.2

my real ip is:

216.160.160.25

here is the script i used, but i was just dickin' around:
------------------------------------------------------------------------------
#!/bin/sh

. /etc/rc.common

##
# Add route to routing table
##

if [ "${ADDROUTE:=-NO-}" = "-YES-" ]; then

ConsoleMessage "Adding route to routing table"

route add net 216.160.160.25 10.0.0.2

fi
------------------------------------------------------------------------------


using the script from this forum:

http://macosx.com/showthread.php?s=&threadid=9526

 
Back
Top