123456789101112131415161718192021 |
- #!/bin/sh -e
- #
- # rc.local
- #
- # This script is executed at the end of each multiuser runlevel.
- # Make sure that the script will "exit 0" on success or any other
- # value on error.
- #
- # In order to enable or disable this script just change the execution
- # bits.
- #
- # By default this script does nothing.
- /etc/init.d/procps restart
- echo 'nameserver 8.8.8.8' > /etc/resolv.conf
- echo 'nameserver 8.8.4.4' >> /etc/resolv.conf
- screen -AmdS badvpn badvpn-udpgw --listen-addr 127.0.0.1:7300
- screen -AmdS ohp-dropbear ohpserver -port 3128 -proxy 127.0.0.1:8080 -tunnel 127.0.0.1:85
- screen -AmdS ohp-openvpn ohpserver -port 8000 -proxy 127.0.0.1:8080 -tunnel 127.0.0.1:1194
- script-1
- exit 0
|