f70503a66c
DESCR: ipfreely is a simple and secure TCP proxy daemon. It refuses to run as a privileged user, uses safe string handling functions, confines itself to a chroot() jail, performs no dynamic memory allocation, makes safe use of signal handlers and has some simple logging and debugging features. ok alek@
13 lines
345 B
Plaintext
13 lines
345 B
Plaintext
To have IP Freely start on boot up, you can add the following to /etc/rc.local:
|
|
(Be sure to change localhost:port and remotehost:port)
|
|
|
|
if [ -x ${PREFIX}/sbin/ipfreely ]; then
|
|
echo -n ' ipfreely'
|
|
${PREFIX}/sbin/ipfreely \
|
|
-b localhost:port \
|
|
-r remotehost:port \
|
|
-u _ipfreely \
|
|
-c /var/empty/
|
|
fi
|
|
|