MarkE Posted November 20, 2017 Share Posted November 20, 2017 Hi - I cant get get my vpn to work....... I have an account with strong VPN, and down loaded the config file from there website. Copied it over to the pocket squirrel, edited the file to add user name and password, as recommended by Strong VPN, unplugged the power, switch to position three, get yellow light flashing but my ip address never changes to the VPN address? I simplified the payload; DNS server is strong VPN DNS ( they recommended it). #!/bin/bash # OpenVPN payload DNS_SERVER="216.131.95.20" # Cheap hack to set the DNS server function setdns() { while true do [[ ! $(grep -q "$DNS_SERVER" /tmp/resolv.conf) ]] && { echo -e "search lan\nnameserver $DNS_SERVER" > /tmp/resolv.conf } sleep 5 done } function start() { LED SETUP /usr/bin/NETMODE VPN sleep 3 # Start the OpenVPN server in the background /etc/init.d/openvpn start # Start SSH Server /etc/init.d/sshd start & # Set DNS server setdns & LED ATTACK } # Start the payload start & I Quote Link to comment Share on other sites More sharing options...
Rkiver Posted November 20, 2017 Share Posted November 20, 2017 Hi there, Every device Hak5 sells has it's own distinct section. You asked for the Packet Squirrel: https://forums.hak5.org/forum/94-packet-squirrel/ Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.