Jump to content

MarkE

Active Members
  • Posts

    7
  • Joined

  • Last visited

Posts posted by MarkE

  1. 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

×
×
  • Create New...