#!/bin/sh # # Start ssh tunnel for GPRS. set -e if [ "$IFACE" = lo ]; then exit 0 fi if [ "$MODE" != start ]; then exit 0 fi if [ "$ICD_CONNECTION_TYPE" != GPRS ]; then exit 0 fi ssh -p1194 -NL 8118:localhost:8118 user@111.111.111.111 & exit 0
#!/bin/sh # # Stop ssh tunnel for GPRS. pkill -x ssh
| The Following 3 Users Say Thank You to ioan For This Useful Post: | ||
| The Following User Says Thank You to geneven For This Useful Post: | ||