querfunk
/
ffka-querfunk
Archived
2
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

20 lines
397 B
Bash

#!/bin/sh /etc/rc.common
START=99
start() {
# install socat to ram
if [ ! -f /tmp/usr/bin/socat ]; then
/bin/sleep 60
opkg update
opkg install socat -d ram
fi
# start stream proxy
/tmp/usr/bin/socat TCP-LISTEN:8000,reuseaddr,fork,su=nobody,pf=ip6 TCP:192.168.2.2:8000 &
}
stop() {
killall socat
}