openbsd-ports/net/ipfreely/pkg/MESSAGE
niallo f70503a66c Import net/ipfreely
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@
2005-06-27 18:48:46 +00:00

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