Jump to content
Not connected, Your IP: 44.210.237.223

Search the Community

Showing results for tags 'Reconnect'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • AirVPN
    • News and Announcement
    • How-To
    • Databases
  • Community
    • General & Suggestions
    • Troubleshooting and Problems
    • Blocked websites warning
    • Eddie - AirVPN Client
    • DNS Lists
    • Reviews
    • Other VPN competitors or features
    • Nonprofit
    • Off-Topic
  • Other Projects
    • IP Leak
    • XMPP

Product Groups

  • AirVPN Access
  • Coupons
  • Misc

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Twitter


Mastodon


AIM


MSN


ICQ


Yahoo


XMPP / Jabber


Skype


Location


Interests

Found 9 results

  1. Hello all, This is collection from different tutorials which I will refer here, but usually changed since some things changed. Setting up VPN on Synology is modified neolefort tutorial from here and reconnect script if from sundi which you can find here, which probably modified this script, plus my iptables for blocking Synology on router level when VPN fails. Other contributions: foobar666 - you no longer need to enter variables manually _sinnerman_ - fixed script for DS 6.1 I'm doing this mostly because I usually forget things I managed to solve after year or two, so this is way to have constant reminder how it was solved and also help others. 1. Get your certificates from AirVPN. Go to the https://airvpn.org/generator/ page to generate the configuration file. (1) SELECT the Advanced Mode (near top right of the page) (2) SELECT LINUX OS (3) Under "Protocols" section select one with protocol UDP and port 443 (at the time of writing, it was first in list). You can choose any combination of protocol/port, but then also change iptables accordingly if you are using failsafe script. (4) Under "Advanced - OpenVPN only" section (right part of page), select "Separate keys/certs from .ovpn file" and change OpenVPN version to "<2.4" (you don't need to do this if you are using DSM7 or newer) (5) SELECT 1 SERVER (refer to section "by single servers") OR COUNTRY OR ANYTHING ELSE YOU WANT In original tutorial, neolefort said to choose 1 server, because in that case you will get IP instead of xxx.airvpn.org domain. Choosing 1 server is safe because it doesn't need working DNS when you want to connect to VPN. If you choose anything else, you need working DNS on your router when establishing VPN connection. (6) Click "GENERATE" at the bottom. (7) Click on the ZIP button in order to download the AIRVPN configuration files and unzip them anywhere on your computer The ZIP archive should contain the following files: -AirVPN_XXXXX_UDP-443.ovpn -ca.crt -user.crt -user.key -ta.key 2. Setup AirVPN on Synology. In new DSM 6 it's much more easier since Synology developers allowed everything in GUI now. - Login as admin or with user from Administrator group. - Open Control panel. - Go "Network" and click on tab "Network Interface" - Click on button "Create" - "Create VPN profile" - Choose "OpenVPN (via importing .ovpn file) - Click "Advanced options" so it shows all options - Profile name: anything you want, but please keep is short and if you can without spaces " ", for example "AirVPN". - User name: LEAVE EMPTY (for DSM 7+ just put anything here) - Password: LEAVE EMPTY (for DSM 7+ just put anything here) - Import .ovpn file: click button and import your AirVPN_XXXXX_UDP-443.ovpn - CA certificate: click button and import your ca.crt - Client certificate: click button and import your user.crt - Client key: click button and import your user.key - Certificate revocation: LEAVE EMPTY - TLS-auth key: click button and import your ta.key - Click "Next" - Select all options, EXCEPT "Enable compression on the VPN link" (well, you can select that also if you really want, but don't ) Now you have working OpenVPN link on your Synology DS6+. You just need to start it from "Control panel" - "Network" - "Network Interface". EXTRAS!!! 3. Setting up external access to your Synology. First what you will notice is, "I CAN'T ACCESS MY SYNOLOGY FROM OUTSIDE OF MY LAN!!!!!!! OMG OMG OMG!!!!" I will not explain port fowards on your router here, if you don't know how to make one, learn! (1) You can port forward trough AirVPN webpage and access your Syno via VPN exit IP. This sometimes works, most of times it doesn't since Syno has some ports you cannot change. Anyway, change your default HTTP / HTTPS port on Syno to your forwarded AirVPN port and you should be fine. But forget about Cloudstation and similliar things. (2) If you want to access Syno via you ISP IP (WAN), then problem is, your Syno is receiving your connection, but it's replying trough VPN. That's a security risk and those connections get droped. But there is solution! - Access "Control panel" - "Network" - "General" - Click "Advanced Settings" button - Mark "Enable multiple gateways" and click "OK" and then "Apply" You're done! It's working now (if you forwarded good ports on your router). 4. Prevent leaks when VPN connection on Synology fails. There will be time, when you VPN will fail, drop, disconnect, and your ISP IP will become visible to world. This is one of ways you can prevent it, on router level. For this you need Tomato, Merlin, DD-WRT or OpenWRT firmware on your router. I will tell you steps for Tomato router. If you are using different firmware, then you need to learn alone how to input this code into your router. Since Shibby version 129 for ARM routers, syntax of iptables changed and depending on which version of iptables you are using, apply that code. - Login to your router (usually just by entering 192.168.1.1 into your browser, if your IP is different, find out which is your gateway IP). - Click on "Administration" - Click on "Scripts" - Choose tab "Firewall" For Shibby v129 for ARM and later (iptables 1.4.x) us this: #Use this order of commands because it executes in reverse order. #This command will execute last, it kills all UDP requests. iptables -I FORWARD -p udp -s 192.168.1.100 -j REJECT #This command will execute second and will block all TCP source ports except those needed for web access or services iptables -I FORWARD -p tcp -s 192.168.1.100 -m multiport ! --sports 5000,5001,6690 -j REJECT #This command will execute first and will ACCEPT connection to your VPN on destination port 443 UDP iptables -I FORWARD -p udp -s 192.168.1.100 -m multiport --dports 443 -j ACCEPT For earlier Shibby versions and later for MIPS routers: #Use this order of commands because it executes in reverse order. #This command will execute last, it kills all UDP requests. iptables -I FORWARD -p udp -s 192.168.1.100 -j REJECT #This command will execute second and will block all TCP source ports except those needed for web access or services iptables -I FORWARD -p tcp -s 192.168.1.100 -m multiport --sports ! 5000,5001,6690 -j REJECT #This command will execute first and will ACCEPT connection to your VPN on destination port 443 UDP iptables -I FORWARD -p udp -s 192.168.1.100 -m multiport --dports 443 -j ACCEPT Port TCP 5000 = HTTP for for Synology web access (change to your if it's not default) Port TCP 5001 = HTTPS for for Synology web access (change to your it's not default) Port TCP 6690 = Cloud Station port Port UDP 443 = AirVPN connection port which you defined in step 1 of this tutorial. If you are using TCP port, then you need to change "-p udp" to "-p tcp" in that line. If you need more ports, just add them separated by comma ",". If you want port range, for example 123,124,125,126,127, you can add it like this 123:127. Change IP 192.168.1.100 to your Synology LAN IP. Be careful NOT TO assign those ports to your Download Station on Synology. This isn't perfect, you can still leak your IP through UDP 443, but since torrent uses mostly TCP, those chances are minimal. If you use TCP port for VPN, then those chances increase. If you really want to be sure nothing leaks even on UDP 443 (or your custom port), you need to choose 1 (ONE) AirVPN server. You need to find that server entry IP and change last IPTABLES rule to something like this: iptables -I FORWARD -p udp -s 192.168.1.100 -d 123.456.789.123 -m multiport --dports 443 -j ACCEPT Where 123.456.789.123 is AirVPN server entry IP. This will allow UDP 443 only for that server, rest will be rejected by router. These are all my opinions, from my very limited knowledge, which may be right and may be wrong. 5. Auto reconnection when VPN is down. Since when you made your VPN connection on your Synology, you checked "Reconnect" option, Syno will try to reconnect automaticly when connection fails. But in some cases, your network will be offline long enough and Syno will stop trying to reconnect, or will hang with VPN connection established, but not working. In those cases you can use this auto reconnect script. This is reconnect script. Just select all script text and copy it. #VPN Check script modified Sep 11, 2016 #Script checks if VPN is up, and if it is, it checks if it's working or not. It provides details like VPN is up since, data #received/sent, VPN IP & WAN IP. #If VPN is not up it will report it in the log file and start it #Change LogFile path to your own location. #Save this script to file of your choosing (for example "synovpn_reconnect"). Store it in one of your Synology shared folders and chmod it: "chmod +x /volume1/shared_folder_name/your_path/synovpn_reconnect" #Edit "/etc/crontab" and add this line without quotes for starting script every 10 minutes: "*/10 * * * * root /volume1/shared_folder_name/your_path/synovpn_reconnect" #After that restart cron with: "/usr/syno/sbin/synoservicectl --restart crond" #!/bin/sh DATE=$(date +"%F") TIME=$(date +"%T") VPNID=$(grep "\[.*\]" /usr/syno/etc/synovpnclient/openvpn/ovpnclient.conf | cut -f 2 -d "[" | cut -f 1 -d "]") VPNNAME=$(grep conf_name /usr/syno/etc/synovpnclient/openvpn/ovpnclient.conf | cut -f 2 -d "=") LogFile="/volume1/filmovi/Backup/airvpn/check_airvpn_$DATE.log" PUBIP=$(curl -s -m 5 icanhazip.com) #PUBIP=$(curl -s -m 5 ipinfo.io/ip) #PUBIP=$(curl -s -m 5 ifconfig.me) CHECKIP=$(echo $PUBIP | grep -c ".") start_vpn() { echo "VPN is down. Attempting to (re)start now." >> $LogFile # /usr/syno/bin/synovpnc kill_client --protocol=openvpn --name=$VPNNAME /usr/syno/bin/synovpnc kill_client /bin/kill `cat /var/run/ovpn_client.pid` 2>/dev/null sleep 35 echo 1 > /usr/syno/etc/synovpnclient/vpnc_connecting echo conf_id=$VPNID > /usr/syno/etc/synovpnclient/vpnc_connecting echo conf_name=$VPNNAME >> /usr/syno/etc/synovpnclient/vpnc_connecting echo proto=openvpn >> /usr/syno/etc/synovpnclient/vpnc_connecting /usr/syno/bin/synovpnc reconnect --protocol=openvpn --name=$VPNNAME >> $LogFile } sleep 6 echo "======================================" >> $LogFile echo "$DATE $TIME" >> $LogFile if ifconfig tun0 | grep -q "00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00" then if [ "$CHECKIP" == 1 ] then IPADDR=$(/sbin/ifconfig tun0 | grep 'inet addr' | cut -d: -f2 | awk '{print $1}') RXDATA=$(/sbin/ifconfig tun0 | grep "bytes:" | cut -d: -f2 | awk '{print $1,$2,$3}') TXDATA=$(/sbin/ifconfig tun0 | grep "bytes:" | cut -d: -f3 | awk '{print $1,$2,$3}') UPTIME=$(cat /var/log/messages | grep "$IPADDR" | awk '{print $1}' | tail -1) UPTIME=$(date -d"$UPTIME" +"%Y/%m/%d %H:%M:%S") echo "VPN is up since: $UPTIME" >> $LogFile echo "Session Data RX: $RXDATA" >> $LogFile echo "Session Data TX: $TXDATA" >> $LogFile echo "VPN IP is: $IPADDR" >> $LogFile echo "WAN IP is: $PUBIP" >> $LogFile else start_vpn fi else start_vpn fi exit 0 (1) Login to you Synology DSM web interface as admin. - As admin go to "Control panel" - "Task Scheduler" (you need to enable advanced mode in top right corner of control panel for this) - Click "Create" button near top of page, then select "Scheduled Task" and then "User-defined script" (2) New popup window will open. - under "Task:" enter task name - under "User:" select "root" if it's not already selected - switch to "Schedule" tab and select how often you want this task to run, my settings are: - "Run of following days" - "Daily" - "First run time" - 00:00 - "Frequency" - "Every 10 minutes" - "Last run time" - 23:50 - switch to "Task settings" tab - paste script you copied into empty box under "User-defined script" title - press OK and you're done I tested this on DSM 6.2.2 and it works without problems for now. Still, I'm keeping old instructions in next post, if someone wants to do it like that. Tip: If you don't want logfile, you can comment out those lines, or remove ">> $LogFile" code from whole script. That's all. If you entered everything correctly, you should be fine and ready to go! Comments are welcome. If you find mistakes, please correct me.
  2. Hi Using Eddie with "Network lock" on, and "Lock current server" on: If my internet service provider drops out..... for a few minutes.... Then Eddie reconnects to the same VPN server......Does Eddie automatically reconnecting reveal my actual IP while connecting?
  3. Hey there, using latest version of eddie on Mac OS Yosemite 10.10.5 ! Eddie worked fine a few months ago, but needed to uninstall. Problem only occurs now for first time after some months not using. PROBLEM: Connect - Disconnect - Connect - Disconnect - Loop... Thanks for your help! Here's the LOG: . 2018.06.23 18:25:04 - Eddie version: 2.15.2 / macos_x64, System: MacOS, Name: 10.10.5, Version: Darwin Serandomirs-MacBook-Pro.local 14.5.0 Darwin Kernel Version 14.5.0: Sun Jun 4 21:40:08 PDT 2017; root:xnu-2782.70.3~1/RELEASE_X86_64 x86_64, Mono/.Net: v4.0.30319 . 2018.06.23 18:25:04 - Reading options from /Users/serandomir/.airvpn/default.xml . 2018.06.23 18:25:06 - Command line arguments (0): . 2018.06.23 18:25:06 - Profile path: /Users/serandomir/.airvpn/default.xml . 2018.06.23 18:25:09 - OpenVPN Driver - Expected . 2018.06.23 18:25:09 - OpenVPN - Version: - (/Applications/Eddie.app/Contents/MacOS/openvpn) . 2018.06.23 18:25:09 - SSH - Version: OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011 (/usr/bin/ssh) . 2018.06.23 18:25:09 - SSL - Version: stunnel 5.40 (/Applications/Eddie.app/Contents/MacOS/stunnel) . 2018.06.23 18:25:09 - curl - Version: 7.43.0 (/usr/bin/curl) . 2018.06.23 18:25:09 - Certification Authorities: /Applications/Eddie.app/Contents/MacOS/../Resources/cacert.pem . 2018.06.23 18:25:10 - Updating systems & servers data ... I 2018.06.23 18:25:10 - Ready . 2018.06.23 18:25:11 - Systems & servers data update completed ! 2018.06.23 18:25:16 - Activation of Network Lock - macOS - PF . 2018.06.23 18:25:16 - macOS - PF rules updated, reloading I 2018.06.23 18:25:22 - Session starting. I 2018.06.23 18:25:23 - Checking authorization ... ! 2018.06.23 18:25:24 - Connecting to Errai (Germany, Frankfurt) . 2018.06.23 18:25:24 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:25:24 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:25:24 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:25:24 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:25:24 - Above log line repeated 1 times more ! 2018.06.23 18:25:24 - Disconnecting . 2018.06.23 18:25:24 - Connection terminated. I 2018.06.23 18:25:27 - Checking authorization ... . 2018.06.23 18:25:28 - IPv6 disabled on network adapter (Bluetooth DUN) . 2018.06.23 18:25:28 - IPv6 disabled on network adapter (Ethernet) . 2018.06.23 18:25:28 - IPv6 disabled on network adapter (FireWire) . 2018.06.23 18:25:28 - IPv6 disabled on network adapter (Wi-Fi) . 2018.06.23 18:25:28 - IPv6 disabled on network adapter (Bluetooth PAN) . 2018.06.23 18:25:29 - IPv6 disabled on network adapter (Thunderbolt Bridge) ! 2018.06.23 18:25:29 - Connecting to Libertas (Germany, Munich) . 2018.06.23 18:25:29 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:25:29 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:25:29 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:25:29 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:25:29 - Above log line repeated 1 times more ! 2018.06.23 18:25:29 - Disconnecting . 2018.06.23 18:25:29 - Connection terminated. . 2018.06.23 18:25:29 - IPv6 restored on network adapter (Bluetooth DUN) . 2018.06.23 18:25:29 - IPv6 restored on network adapter (Ethernet) . 2018.06.23 18:25:29 - IPv6 restored on network adapter (FireWire) . 2018.06.23 18:25:29 - IPv6 restored on network adapter (Wi-Fi) . 2018.06.23 18:25:29 - IPv6 restored on network adapter (Bluetooth PAN) . 2018.06.23 18:25:29 - IPv6 restored on network adapter (Thunderbolt Bridge) I 2018.06.23 18:25:32 - Checking authorization ... ! 2018.06.23 18:25:33 - Connecting to Mesarthim (Germany, Munich) . 2018.06.23 18:25:33 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:25:33 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:25:33 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:25:33 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:25:33 - Above log line repeated 1 times more ! 2018.06.23 18:25:33 - Disconnecting . 2018.06.23 18:25:33 - Connection terminated. I 2018.06.23 18:25:36 - Checking authorization ... ! 2018.06.23 18:25:37 - Connecting to Perseus (Germany, Munich) . 2018.06.23 18:25:37 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:25:37 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:25:38 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:25:38 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:25:38 - Above log line repeated 1 times more ! 2018.06.23 18:25:38 - Disconnecting . 2018.06.23 18:25:38 - Connection terminated. I 2018.06.23 18:25:41 - Checking authorization ... ! 2018.06.23 18:25:41 - Connecting to Lepus (Germany, Munich) . 2018.06.23 18:25:42 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:25:42 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:25:42 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:25:42 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:25:42 - Above log line repeated 1 times more ! 2018.06.23 18:25:42 - Disconnecting . 2018.06.23 18:25:42 - Connection terminated. I 2018.06.23 18:25:45 - Checking authorization ... ! 2018.06.23 18:25:46 - Connecting to Adhara (Germany, Frankfurt) . 2018.06.23 18:25:46 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:25:46 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:25:46 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:25:46 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:25:46 - Above log line repeated 1 times more ! 2018.06.23 18:25:46 - Disconnecting . 2018.06.23 18:25:46 - Connection terminated. I 2018.06.23 18:25:47 - Cancel requested. ! 2018.06.23 18:25:47 - Session terminated. ! 2018.06.23 18:26:06 - Deactivation of Network Lock I 2018.06.23 18:36:49 - Session starting. I 2018.06.23 18:36:49 - Retrieving manifest . 2018.06.23 18:36:49 - Updating systems & servers data ... I 2018.06.23 18:36:49 - Checking authorization ... ! 2018.06.23 18:36:50 - Connecting to Cervantes (Germany, Frankfurt) . 2018.06.23 18:36:51 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:36:51 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:36:51 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:36:51 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:36:51 - Above log line repeated 1 times more ! 2018.06.23 18:36:51 - Disconnecting . 2018.06.23 18:36:51 - Connection terminated. . 2018.06.23 18:36:51 - Systems & servers data update completed I 2018.06.23 18:36:54 - Checking authorization ... ! 2018.06.23 18:36:55 - Connecting to Ogma (Germany, Frankfurt) . 2018.06.23 18:36:55 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:36:55 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:36:55 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:36:55 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:36:55 - Above log line repeated 1 times more ! 2018.06.23 18:36:55 - Disconnecting . 2018.06.23 18:36:55 - Connection terminated. I 2018.06.23 18:36:58 - Checking authorization ... ! 2018.06.23 18:36:59 - Connecting to Perseus (Germany, Munich) . 2018.06.23 18:36:59 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:36:59 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:36:59 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:36:59 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:36:59 - Above log line repeated 1 times more ! 2018.06.23 18:36:59 - Disconnecting . 2018.06.23 18:36:59 - Connection terminated. I 2018.06.23 18:37:02 - Checking authorization ... . 2018.06.23 18:37:03 - IPv6 disabled on network adapter (Bluetooth DUN) . 2018.06.23 18:37:03 - IPv6 disabled on network adapter (Ethernet) . 2018.06.23 18:37:03 - IPv6 disabled on network adapter (FireWire) . 2018.06.23 18:37:03 - IPv6 disabled on network adapter (Wi-Fi) . 2018.06.23 18:37:03 - IPv6 disabled on network adapter (Bluetooth PAN) . 2018.06.23 18:37:03 - IPv6 disabled on network adapter (Thunderbolt Bridge) ! 2018.06.23 18:37:03 - Connecting to Libertas (Germany, Munich) . 2018.06.23 18:37:04 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:37:04 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:37:04 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:37:04 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:37:04 - Above log line repeated 1 times more ! 2018.06.23 18:37:04 - Disconnecting . 2018.06.23 18:37:04 - Connection terminated. . 2018.06.23 18:37:04 - IPv6 restored on network adapter (Bluetooth DUN) . 2018.06.23 18:37:04 - IPv6 restored on network adapter (Ethernet) . 2018.06.23 18:37:04 - IPv6 restored on network adapter (FireWire) . 2018.06.23 18:37:04 - IPv6 restored on network adapter (Wi-Fi) . 2018.06.23 18:37:04 - IPv6 restored on network adapter (Bluetooth PAN) . 2018.06.23 18:37:04 - IPv6 restored on network adapter (Thunderbolt Bridge) I 2018.06.23 18:37:07 - Checking authorization ... ! 2018.06.23 18:37:08 - Connecting to Mesarthim (Germany, Munich) . 2018.06.23 18:37:08 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:37:08 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:37:08 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:37:08 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:37:08 - Above log line repeated 1 times more ! 2018.06.23 18:37:08 - Disconnecting . 2018.06.23 18:37:08 - Connection terminated. I 2018.06.23 18:37:11 - Checking authorization ... ! 2018.06.23 18:37:12 - Connecting to Lepus (Germany, Munich) . 2018.06.23 18:37:12 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:37:12 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:37:12 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:37:12 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:37:12 - Above log line repeated 1 times more ! 2018.06.23 18:37:12 - Disconnecting . 2018.06.23 18:37:12 - Connection terminated. I 2018.06.23 18:37:15 - Checking authorization ... ! 2018.06.23 18:37:16 - Connecting to Adhara (Germany, Frankfurt) . 2018.06.23 18:37:16 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:37:16 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:37:16 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:37:16 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:37:16 - Above log line repeated 1 times more ! 2018.06.23 18:37:16 - Disconnecting . 2018.06.23 18:37:16 - Connection terminated. I 2018.06.23 18:37:19 - Checking authorization ... ! 2018.06.23 18:37:20 - Connecting to Errai (Germany, Frankfurt) . 2018.06.23 18:37:20 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:37:20 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:37:20 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:37:20 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:37:20 - Above log line repeated 1 times more ! 2018.06.23 18:37:20 - Disconnecting . 2018.06.23 18:37:20 - Connection terminated. I 2018.06.23 18:37:23 - Checking authorization ... ! 2018.06.23 18:37:24 - Connecting to Cervantes (Germany, Frankfurt) . 2018.06.23 18:37:24 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:37:24 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:37:24 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:37:24 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:37:24 - Above log line repeated 1 times more ! 2018.06.23 18:37:24 - Disconnecting . 2018.06.23 18:37:24 - Connection terminated. I 2018.06.23 18:37:27 - Checking authorization ... . 2018.06.23 18:37:28 - IPv6 disabled on network adapter (Bluetooth DUN) . 2018.06.23 18:37:29 - IPv6 disabled on network adapter (Ethernet) . 2018.06.23 18:37:29 - IPv6 disabled on network adapter (FireWire) . 2018.06.23 18:37:29 - IPv6 disabled on network adapter (Wi-Fi) . 2018.06.23 18:37:29 - IPv6 disabled on network adapter (Bluetooth PAN) . 2018.06.23 18:37:29 - IPv6 disabled on network adapter (Thunderbolt Bridge) ! 2018.06.23 18:37:29 - Connecting to Kleeia (Canada, Vancouver) . 2018.06.23 18:37:29 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:37:29 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:37:29 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:37:29 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:37:29 - Above log line repeated 1 times more ! 2018.06.23 18:37:29 - Disconnecting . 2018.06.23 18:37:29 - Connection terminated. . 2018.06.23 18:37:29 - IPv6 restored on network adapter (Bluetooth DUN) . 2018.06.23 18:37:29 - IPv6 restored on network adapter (Ethernet) . 2018.06.23 18:37:30 - IPv6 restored on network adapter (FireWire) . 2018.06.23 18:37:30 - IPv6 restored on network adapter (Wi-Fi) . 2018.06.23 18:37:30 - IPv6 restored on network adapter (Bluetooth PAN) . 2018.06.23 18:37:30 - IPv6 restored on network adapter (Thunderbolt Bridge) I 2018.06.23 18:37:33 - Checking authorization ... . 2018.06.23 18:37:34 - IPv6 disabled on network adapter (Bluetooth DUN) . 2018.06.23 18:37:34 - IPv6 disabled on network adapter (Ethernet) . 2018.06.23 18:37:34 - IPv6 disabled on network adapter (FireWire) . 2018.06.23 18:37:34 - IPv6 disabled on network adapter (Wi-Fi) . 2018.06.23 18:37:34 - IPv6 disabled on network adapter (Bluetooth PAN) . 2018.06.23 18:37:35 - IPv6 disabled on network adapter (Thunderbolt Bridge) ! 2018.06.23 18:37:35 - Connecting to Gemma (Canada, Vancouver) . 2018.06.23 18:37:35 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:37:35 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:37:35 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:37:35 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:37:35 - Above log line repeated 1 times more ! 2018.06.23 18:37:35 - Disconnecting . 2018.06.23 18:37:35 - Connection terminated. . 2018.06.23 18:37:35 - IPv6 restored on network adapter (Bluetooth DUN) . 2018.06.23 18:37:35 - IPv6 restored on network adapter (Ethernet) . 2018.06.23 18:37:35 - IPv6 restored on network adapter (FireWire) . 2018.06.23 18:37:35 - IPv6 restored on network adapter (Wi-Fi) . 2018.06.23 18:37:35 - IPv6 restored on network adapter (Bluetooth PAN) . 2018.06.23 18:37:35 - IPv6 restored on network adapter (Thunderbolt Bridge) I 2018.06.23 18:37:38 - Checking authorization ... . 2018.06.23 18:37:39 - IPv6 disabled on network adapter (Bluetooth DUN) . 2018.06.23 18:37:39 - IPv6 disabled on network adapter (Ethernet) . 2018.06.23 18:37:39 - IPv6 disabled on network adapter (FireWire) . 2018.06.23 18:37:40 - IPv6 disabled on network adapter (Wi-Fi) . 2018.06.23 18:37:40 - IPv6 disabled on network adapter (Bluetooth PAN) . 2018.06.23 18:37:40 - IPv6 disabled on network adapter (Thunderbolt Bridge) ! 2018.06.23 18:37:40 - Connecting to Homam (Canada, Vancouver) . 2018.06.23 18:37:40 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:37:40 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:37:40 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:37:40 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:37:40 - Above log line repeated 1 times more ! 2018.06.23 18:37:40 - Disconnecting . 2018.06.23 18:37:40 - Connection terminated. . 2018.06.23 18:37:40 - IPv6 restored on network adapter (Bluetooth DUN) . 2018.06.23 18:37:40 - IPv6 restored on network adapter (Ethernet) . 2018.06.23 18:37:41 - IPv6 restored on network adapter (FireWire) . 2018.06.23 18:37:41 - IPv6 restored on network adapter (Wi-Fi) . 2018.06.23 18:37:41 - IPv6 restored on network adapter (Bluetooth PAN) . 2018.06.23 18:37:41 - IPv6 restored on network adapter (Thunderbolt Bridge) I 2018.06.23 18:37:44 - Checking authorization ... . 2018.06.23 18:37:45 - IPv6 disabled on network adapter (Bluetooth DUN) . 2018.06.23 18:37:45 - IPv6 disabled on network adapter (Ethernet) . 2018.06.23 18:37:45 - IPv6 disabled on network adapter (FireWire) . 2018.06.23 18:37:45 - IPv6 disabled on network adapter (Wi-Fi) . 2018.06.23 18:37:45 - IPv6 disabled on network adapter (Bluetooth PAN) . 2018.06.23 18:37:46 - IPv6 disabled on network adapter (Thunderbolt Bridge) ! 2018.06.23 18:37:46 - Connecting to Mimosa (Canada, Vancouver) . 2018.06.23 18:37:46 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:37:46 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:37:46 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:37:46 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:37:47 - Above log line repeated 1 times more ! 2018.06.23 18:37:47 - Disconnecting . 2018.06.23 18:37:47 - Connection terminated. . 2018.06.23 18:37:47 - IPv6 restored on network adapter (Bluetooth DUN) . 2018.06.23 18:37:47 - IPv6 restored on network adapter (Ethernet) . 2018.06.23 18:37:47 - IPv6 restored on network adapter (FireWire) . 2018.06.23 18:37:47 - IPv6 restored on network adapter (Wi-Fi) . 2018.06.23 18:37:47 - IPv6 restored on network adapter (Bluetooth PAN) . 2018.06.23 18:37:47 - IPv6 restored on network adapter (Thunderbolt Bridge) I 2018.06.23 18:37:50 - Checking authorization ... . 2018.06.23 18:37:51 - IPv6 disabled on network adapter (Bluetooth DUN) . 2018.06.23 18:37:51 - IPv6 disabled on network adapter (Ethernet) . 2018.06.23 18:37:52 - IPv6 disabled on network adapter (FireWire) . 2018.06.23 18:37:52 - IPv6 disabled on network adapter (Wi-Fi) . 2018.06.23 18:37:52 - IPv6 disabled on network adapter (Bluetooth PAN) . 2018.06.23 18:37:52 - IPv6 disabled on network adapter (Thunderbolt Bridge) ! 2018.06.23 18:37:52 - Connecting to Cynosura (Canada, Vancouver) . 2018.06.23 18:37:52 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:37:52 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:37:52 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:37:52 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:37:53 - Above log line repeated 1 times more ! 2018.06.23 18:37:53 - Disconnecting . 2018.06.23 18:37:53 - Connection terminated. . 2018.06.23 18:37:53 - IPv6 restored on network adapter (Bluetooth DUN) . 2018.06.23 18:37:53 - IPv6 restored on network adapter (Ethernet) . 2018.06.23 18:37:53 - IPv6 restored on network adapter (FireWire) . 2018.06.23 18:37:53 - IPv6 restored on network adapter (Wi-Fi) . 2018.06.23 18:37:53 - IPv6 restored on network adapter (Bluetooth PAN) . 2018.06.23 18:37:53 - IPv6 restored on network adapter (Thunderbolt Bridge) I 2018.06.23 18:37:56 - Checking authorization ... . 2018.06.23 18:37:58 - IPv6 disabled on network adapter (Bluetooth DUN) . 2018.06.23 18:37:58 - IPv6 disabled on network adapter (Ethernet) . 2018.06.23 18:37:58 - IPv6 disabled on network adapter (FireWire) . 2018.06.23 18:37:58 - IPv6 disabled on network adapter (Wi-Fi) . 2018.06.23 18:37:58 - IPv6 disabled on network adapter (Bluetooth PAN) . 2018.06.23 18:37:58 - IPv6 disabled on network adapter (Thunderbolt Bridge) ! 2018.06.23 18:37:58 - Connecting to Ukdah (Canada, Toronto, Ontario) . 2018.06.23 18:37:58 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:37:58 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:37:59 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:37:59 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:37:59 - Above log line repeated 1 times more ! 2018.06.23 18:37:59 - Disconnecting . 2018.06.23 18:37:59 - Connection terminated. . 2018.06.23 18:37:59 - IPv6 restored on network adapter (Bluetooth DUN) . 2018.06.23 18:37:59 - IPv6 restored on network adapter (Ethernet) . 2018.06.23 18:37:59 - IPv6 restored on network adapter (FireWire) . 2018.06.23 18:37:59 - IPv6 restored on network adapter (Wi-Fi) . 2018.06.23 18:37:59 - IPv6 restored on network adapter (Bluetooth PAN) . 2018.06.23 18:37:59 - IPv6 restored on network adapter (Thunderbolt Bridge) I 2018.06.23 18:38:02 - Checking authorization ... ! 2018.06.23 18:38:03 - Connecting to Cephei (Canada, Toronto, Ontario) . 2018.06.23 18:38:03 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:38:03 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:38:04 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:38:04 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:38:04 - Above log line repeated 1 times more ! 2018.06.23 18:38:04 - Disconnecting . 2018.06.23 18:38:04 - Connection terminated. I 2018.06.23 18:38:07 - Checking authorization ... . 2018.06.23 18:38:08 - IPv6 disabled on network adapter (Bluetooth DUN) . 2018.06.23 18:38:09 - IPv6 disabled on network adapter (Ethernet) . 2018.06.23 18:38:09 - IPv6 disabled on network adapter (FireWire) . 2018.06.23 18:38:09 - IPv6 disabled on network adapter (Wi-Fi) . 2018.06.23 18:38:09 - IPv6 disabled on network adapter (Bluetooth PAN) . 2018.06.23 18:38:09 - IPv6 disabled on network adapter (Thunderbolt Bridge) ! 2018.06.23 18:38:09 - Connecting to Mintaka (Canada, Toronto, Ontario) . 2018.06.23 18:38:09 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:38:09 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:38:09 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:38:09 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:38:09 - Above log line repeated 1 times more ! 2018.06.23 18:38:09 - Disconnecting . 2018.06.23 18:38:09 - Connection terminated. . 2018.06.23 18:38:10 - IPv6 restored on network adapter (Bluetooth DUN) . 2018.06.23 18:38:10 - IPv6 restored on network adapter (Ethernet) . 2018.06.23 18:38:10 - IPv6 restored on network adapter (FireWire) . 2018.06.23 18:38:10 - IPv6 restored on network adapter (Wi-Fi) . 2018.06.23 18:38:10 - IPv6 restored on network adapter (Bluetooth PAN) . 2018.06.23 18:38:10 - IPv6 restored on network adapter (Thunderbolt Bridge) I 2018.06.23 18:38:11 - Cancel requested. ! 2018.06.23 18:38:11 - Session terminated. I 2018.06.23 18:45:34 - Session starting. I 2018.06.23 18:45:34 - Checking authorization ... . 2018.06.23 18:45:35 - IPv6 disabled on network adapter (Bluetooth DUN) . 2018.06.23 18:45:35 - IPv6 disabled on network adapter (Ethernet) . 2018.06.23 18:45:35 - IPv6 disabled on network adapter (FireWire) . 2018.06.23 18:45:35 - IPv6 disabled on network adapter (Wi-Fi) . 2018.06.23 18:45:35 - IPv6 disabled on network adapter (Bluetooth PAN) . 2018.06.23 18:45:36 - IPv6 disabled on network adapter (Thunderbolt Bridge) ! 2018.06.23 18:45:36 - Connecting to Tyl (Canada, Toronto, Ontario) . 2018.06.23 18:45:36 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:45:36 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:45:36 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:45:36 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:45:36 - Above log line repeated 1 times more ! 2018.06.23 18:45:36 - Disconnecting . 2018.06.23 18:45:36 - Connection terminated. . 2018.06.23 18:45:36 - IPv6 restored on network adapter (Bluetooth DUN) . 2018.06.23 18:45:37 - IPv6 restored on network adapter (Ethernet) . 2018.06.23 18:45:37 - IPv6 restored on network adapter (FireWire) . 2018.06.23 18:45:37 - IPv6 restored on network adapter (Wi-Fi) . 2018.06.23 18:45:37 - IPv6 restored on network adapter (Bluetooth PAN) . 2018.06.23 18:45:37 - IPv6 restored on network adapter (Thunderbolt Bridge) I 2018.06.23 18:45:40 - Checking authorization ... . 2018.06.23 18:45:41 - IPv6 disabled on network adapter (Bluetooth DUN) . 2018.06.23 18:45:41 - IPv6 disabled on network adapter (Ethernet) . 2018.06.23 18:45:41 - IPv6 disabled on network adapter (FireWire) . 2018.06.23 18:45:42 - IPv6 disabled on network adapter (Wi-Fi) . 2018.06.23 18:45:42 - IPv6 disabled on network adapter (Bluetooth PAN) . 2018.06.23 18:45:42 - IPv6 disabled on network adapter (Thunderbolt Bridge) ! 2018.06.23 18:45:42 - Connecting to Sargas (Canada, Toronto, Ontario) . 2018.06.23 18:45:42 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:45:42 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:45:42 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:45:42 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:45:42 - Above log line repeated 1 times more ! 2018.06.23 18:45:42 - Disconnecting . 2018.06.23 18:45:42 - Connection terminated. . 2018.06.23 18:45:42 - IPv6 restored on network adapter (Bluetooth DUN) . 2018.06.23 18:45:42 - IPv6 restored on network adapter (Ethernet) . 2018.06.23 18:45:43 - IPv6 restored on network adapter (FireWire) . 2018.06.23 18:45:43 - IPv6 restored on network adapter (Wi-Fi) . 2018.06.23 18:45:43 - IPv6 restored on network adapter (Bluetooth PAN) . 2018.06.23 18:45:43 - IPv6 restored on network adapter (Thunderbolt Bridge) I 2018.06.23 18:45:44 - Cancel requested. ! 2018.06.23 18:45:44 - Session terminated. . 2018.06.23 18:47:37 - Updating systems & servers data ... . 2018.06.23 18:47:39 - Systems & servers data update completed I 2018.06.23 18:47:44 - Session starting. I 2018.06.23 18:47:44 - Checking authorization ... ! 2018.06.23 18:47:45 - Connecting to Aludra (Canada, Toronto, Ontario) . 2018.06.23 18:47:45 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:47:45 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:47:45 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:47:45 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:47:46 - Above log line repeated 1 times more ! 2018.06.23 18:47:46 - Disconnecting . 2018.06.23 18:47:46 - Connection terminated. I 2018.06.23 18:47:49 - Checking authorization ... . 2018.06.23 18:47:50 - IPv6 disabled on network adapter (Bluetooth DUN) . 2018.06.23 18:47:50 - IPv6 disabled on network adapter (Ethernet) . 2018.06.23 18:47:50 - IPv6 disabled on network adapter (FireWire) . 2018.06.23 18:47:50 - IPv6 disabled on network adapter (Wi-Fi) . 2018.06.23 18:47:51 - IPv6 disabled on network adapter (Bluetooth PAN) . 2018.06.23 18:47:51 - IPv6 disabled on network adapter (Thunderbolt Bridge) ! 2018.06.23 18:47:51 - Connecting to Saiph (Canada, Toronto, Ontario) . 2018.06.23 18:47:51 - OpenVPN > dyld: Library not loaded: @loader_path/liblzo2.2.dylib . 2018.06.23 18:47:51 - OpenVPN > Referenced from: /Applications/Eddie.app/Contents/MacOS/openvpn . 2018.06.23 18:47:51 - OpenVPN > Reason: no suitable image found. Did find: . 2018.06.23 18:47:51 - OpenVPN > /Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib: code signature invalid for '/Applications/Eddie.app/Contents/MacOS/liblzo2.2.dylib' . 2018.06.23 18:47:51 - Above log line repeated 1 times more ! 2018.06.23 18:47:51 - Disconnecting . 2018.06.23 18:47:51 - Connection terminated. . 2018.06.23 18:47:51 - IPv6 restored on network adapter (Bluetooth DUN) . 2018.06.23 18:47:51 - IPv6 restored on network adapter (Ethernet) . 2018.06.23 18:47:51 - IPv6 restored on network adapter (FireWire) . 2018.06.23 18:47:51 - IPv6 restored on network adapter (Wi-Fi) . 2018.06.23 18:47:51 - IPv6 restored on network adapter (Bluetooth PAN) . 2018.06.23 18:47:51 - IPv6 restored on network adapter (Thunderbolt Bridge) I 2018.06.23 18:47:53 - Cancel requested. ! 2018.06.23 18:47:53 - Session terminated.
  4. Hey Guys, i had to reinstall my Windows on my Notebook. After the reinstall from Windows 10 (+ creators update) and the AirVPN Client, the issue started. The AirVPN Client cant connect to any server. I already googled it but couldn´t find a solution. I 2017.07.18 10:10:16 - Eddie client version: 2.13.2 / windows_x64, System: Windows, Name: Microsoft Windows NT 10.0.15063.0, Mono/.Net Framework: v4.0.30319 . 2017.07.18 10:10:16 - Reading options from C:\Users\uemit\AppData\Local\AirVPN\AirVPN.xml . 2017.07.18 10:10:16 - Data path: C:\Users\uemit\AppData\Local\AirVPN . 2017.07.18 10:10:16 - Application path: C:\Program Files\AirVPN . 2017.07.18 10:10:16 - Executable path: C:\Program Files\AirVPN\AirVPN.exe . 2017.07.18 10:10:16 - Command line arguments (1): path="home" . 2017.07.18 10:10:16 - Operating System: Microsoft Windows NT 10.0.15063.0 I 2017.07.18 10:10:19 - OpenVPN Driver - TAP-Windows Adapter V9, version 9.21.2 I 2017.07.18 10:10:19 - OpenVPN - Version: 2.4.3 - OpenSSL 1.0.2l 25 May 2017, LZO 2.10 (C:\Program Files\AirVPN\openvpn.exe) I 2017.07.18 10:10:19 - SSH - Version: plink 0.67 (C:\Program Files\AirVPN\plink.exe) I 2017.07.18 10:10:19 - SSL - Version: stunnel 5.40 (C:\Program Files\AirVPN\stunnel.exe) I 2017.07.18 10:10:19 - curl - Version: 7.34.0 (C:\Program Files\AirVPN\curl.exe) I 2017.07.18 10:10:19 - Certification Authorities: C:\Program Files\AirVPN\cacert.pem ! 2017.07.18 10:10:19 - Ready . 2017.07.18 10:10:19 - Updating systems & servers data ... . 2017.07.18 10:10:20 - Systems & servers data update completed I 2017.07.18 10:10:38 - Session starting. . 2017.07.18 10:10:39 - IPv6 disabled with packet filtering. I 2017.07.18 10:10:39 - Checking authorization ... ! 2017.07.18 10:10:39 - Connecting to Edasich (Netherlands, Alblasserdam) . 2017.07.18 10:10:39 - OpenVPN > OpenVPN 2.4.3 x86_64-w64-mingw32 [SSL (OpenSSL)] [LZO] [LZ4] [PKCS11] [AEAD] built on Jun 23 2017 . 2017.07.18 10:10:39 - OpenVPN > Windows version 6.2 (Windows 8 or greater) 64bit . 2017.07.18 10:10:39 - OpenVPN > library versions: OpenSSL 1.0.2l 25 May 2017, LZO 2.10 . 2017.07.18 10:10:39 - OpenVPN > MANAGEMENT: TCP Socket listening on [AF_INET]127.0.0.1:3100 . 2017.07.18 10:10:39 - OpenVPN > Outgoing Control Channel Authentication: Using 160 bit message hash 'SHA1' for HMAC authentication . 2017.07.18 10:10:39 - OpenVPN > Incoming Control Channel Authentication: Using 160 bit message hash 'SHA1' for HMAC authentication . 2017.07.18 10:10:39 - OpenVPN > TCP/UDP: Preserving recently used remote address: [AF_INET]213.152.161.210:443 . 2017.07.18 10:10:39 - OpenVPN > Socket Buffers: R=[65536->262144] S=[65536->262144] . 2017.07.18 10:10:39 - OpenVPN > UDP link local: (not bound) . 2017.07.18 10:10:39 - OpenVPN > UDP link remote: [AF_INET]213.152.161.210:443 . 2017.07.18 10:10:39 - OpenVPN > TLS: Initial packet from [AF_INET]213.152.161.210:443, sid=98912455 955b8479 . 2017.07.18 10:10:39 - OpenVPN > VERIFY OK: depth=1, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=airvpn.org CA, emailAddress=info@airvpn.org . 2017.07.18 10:10:39 - OpenVPN > VERIFY KU OK . 2017.07.18 10:10:39 - OpenVPN > Validating certificate extended key usage . 2017.07.18 10:10:39 - OpenVPN > ++ Certificate has EKU (str) TLS Web Server Authentication, expects TLS Web Server Authentication . 2017.07.18 10:10:39 - OpenVPN > VERIFY EKU OK . 2017.07.18 10:10:39 - OpenVPN > VERIFY OK: depth=0, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=Edasich, emailAddress=info@airvpn.org . 2017.07.18 10:10:39 - OpenVPN > Control Channel: TLSv1.2, cipher TLSv1/SSLv3 ECDHE-RSA-AES256-GCM-SHA384, 4096 bit RSA . 2017.07.18 10:10:39 - OpenVPN > [Edasich] Peer Connection Initiated with [AF_INET]213.152.161.210:443 . 2017.07.18 10:10:41 - OpenVPN > SENT CONTROL [Edasich]: 'PUSH_REQUEST' (status=1) . 2017.07.18 10:10:41 - OpenVPN > PUSH: Received control message: 'PUSH_REPLY,redirect-gateway def1 bypass-dhcp,dhcp-option DNS 10.4.0.1,comp-lzo no,route-gateway 10.4.0.1,topology subnet,ping 10,ping-restart 60,ifconfig 10.4.36.112 255.255.0.0,peer-id 18,cipher AES-256-GCM' . 2017.07.18 10:10:41 - OpenVPN > OPTIONS IMPORT: timers and/or timeouts modified . 2017.07.18 10:10:41 - OpenVPN > OPTIONS IMPORT: compression parms modified . 2017.07.18 10:10:41 - OpenVPN > OPTIONS IMPORT: --ifconfig/up options modified . 2017.07.18 10:10:41 - OpenVPN > OPTIONS IMPORT: route options modified . 2017.07.18 10:10:41 - OpenVPN > OPTIONS IMPORT: route-related options modified . 2017.07.18 10:10:41 - OpenVPN > OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified . 2017.07.18 10:10:41 - OpenVPN > OPTIONS IMPORT: peer-id set . 2017.07.18 10:10:41 - OpenVPN > OPTIONS IMPORT: adjusting link_mtu to 1625 . 2017.07.18 10:10:41 - OpenVPN > OPTIONS IMPORT: data channel crypto options modified . 2017.07.18 10:10:41 - OpenVPN > Data Channel: using negotiated cipher 'AES-256-GCM' . 2017.07.18 10:10:41 - OpenVPN > Data Channel Encrypt: Cipher 'AES-256-GCM' initialized with 256 bit key . 2017.07.18 10:10:41 - OpenVPN > Data Channel Decrypt: Cipher 'AES-256-GCM' initialized with 256 bit key . 2017.07.18 10:10:41 - OpenVPN > interactive service msg_channel=0 . 2017.07.18 10:10:41 - OpenVPN > ROUTE_GATEWAY 192.168.178.1/255.255.255.0 I=11 HWADDR=20:89:84:d6:92:b8 . 2017.07.18 10:10:41 - OpenVPN > open_tun . 2017.07.18 10:10:41 - OpenVPN > TAP-WIN32 device [Ethernet 2] opened: \\.\Global\{7C4E21EF-6F14-408D-A99B-9E866F69E945}.tap . 2017.07.18 10:10:41 - OpenVPN > TAP-Windows Driver Version 9.21 . 2017.07.18 10:10:41 - OpenVPN > Set TAP-Windows TUN subnet mode network/local/netmask = 10.4.0.0/10.4.36.112/255.255.0.0 [SUCCEEDED] . 2017.07.18 10:10:41 - OpenVPN > Notified TAP-Windows driver to set a DHCP IP/netmask of 10.4.36.112/255.255.0.0 on interface {7C4E21EF-6F14-408D-A99B-9E866F69E945} [DHCP-serv: 10.4.255.254, lease-time: 31536000] . 2017.07.18 10:10:41 - OpenVPN > Successful ARP Flush on interface [10] {7C4E21EF-6F14-408D-A99B-9E866F69E945} . 2017.07.18 10:10:41 - OpenVPN > do_ifconfig, tt->did_ifconfig_ipv6_setup=0 . 2017.07.18 10:10:47 - OpenVPN > TEST ROUTES: 1/1 succeeded len=0 ret=1 a=0 u/d=up . 2017.07.18 10:10:47 - OpenVPN > C:\Windows\system32\route.exe ADD 213.152.161.210 MASK 255.255.255.255 192.168.178.1 . 2017.07.18 10:10:47 - OpenVPN > ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=25 and dwForwardType=4 . 2017.07.18 10:10:47 - OpenVPN > Route addition via IPAPI succeeded [adaptive] . 2017.07.18 10:10:47 - OpenVPN > C:\Windows\system32\route.exe ADD 0.0.0.0 MASK 128.0.0.0 10.4.0.1 . 2017.07.18 10:10:47 - OpenVPN > ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=35 and dwForwardType=4 . 2017.07.18 10:10:47 - OpenVPN > Route addition via IPAPI succeeded [adaptive] . 2017.07.18 10:10:47 - OpenVPN > C:\Windows\system32\route.exe ADD 128.0.0.0 MASK 128.0.0.0 10.4.0.1 . 2017.07.18 10:10:47 - OpenVPN > ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=35 and dwForwardType=4 . 2017.07.18 10:10:47 - OpenVPN > Route addition via IPAPI succeeded [adaptive] . 2017.07.18 10:10:47 - OpenVPN > WARNING: this configuration may cache passwords in memory -- use the auth-nocache option to prevent this . 2017.07.18 10:10:47 - Starting Management Interface . 2017.07.18 10:10:47 - OpenVPN > Initialization Sequence Completed . 2017.07.18 10:10:47 - Interface Ethernet 2 metric changed from Automatic to 3, layer IPv4 . 2017.07.18 10:10:47 - Interface Ethernet 2 metric changed from Automatic to 3, layer IPv6 . 2017.07.18 10:10:47 - DNS leak protection with packet filtering enabled. . 2017.07.18 10:10:47 - Flushing DNS I 2017.07.18 10:10:50 - Checking route . 2017.07.18 10:11:00 - curl: (28) Operation timed out after 10046 milliseconds with 0 out of 0 bytes received . 2017.07.18 10:11:00 - Checking route (2° try) . 2017.07.18 10:11:11 - curl: (28) Operation timed out after 10047 milliseconds with 0 out of 0 bytes received . 2017.07.18 10:11:11 - Checking route (3° try) . 2017.07.18 10:11:24 - curl: (28) Operation timed out after 10047 milliseconds with 0 out of 0 bytes received E 2017.07.18 10:11:24 - Checking route failed. . 2017.07.18 10:11:24 - OpenVPN > MANAGEMENT: Client connected from [AF_INET]127.0.0.1:3100 ! 2017.07.18 10:11:24 - Disconnecting . 2017.07.18 10:11:24 - Management - Send 'signal SIGTERM' . 2017.07.18 10:11:24 - OpenVPN > MANAGEMENT: CMD 'signal SIGTERM' . 2017.07.18 10:11:24 - OpenVPN > SIGTERM received, sending exit notification to peer . 2017.07.18 10:11:24 - OpenVpn Management > >INFO:OpenVPN Management Interface Version 1 -- type 'help' for more info . 2017.07.18 10:11:24 - OpenVpn Management > SUCCESS: signal SIGTERM thrown . 2017.07.18 10:11:29 - OpenVPN > C:\Windows\system32\route.exe DELETE 213.152.161.210 MASK 255.255.255.255 192.168.178.1 . 2017.07.18 10:11:29 - OpenVPN > Route deletion via IPAPI succeeded [adaptive] . 2017.07.18 10:11:29 - OpenVPN > C:\Windows\system32\route.exe DELETE 0.0.0.0 MASK 128.0.0.0 10.4.0.1 . 2017.07.18 10:11:29 - OpenVPN > Route deletion via IPAPI succeeded [adaptive] . 2017.07.18 10:11:29 - OpenVPN > C:\Windows\system32\route.exe DELETE 128.0.0.0 MASK 128.0.0.0 10.4.0.1 . 2017.07.18 10:11:29 - OpenVPN > Route deletion via IPAPI succeeded [adaptive] . 2017.07.18 10:11:29 - OpenVPN > Closing TUN/TAP interface . 2017.07.18 10:11:30 - OpenVPN > TAP: DHCP address released . 2017.07.18 10:11:30 - OpenVPN > SIGTERM[soft,exit-with-notification] received, process exiting . 2017.07.18 10:11:30 - Connection terminated. . 2017.07.18 10:11:30 - DNS leak protection with packet filtering disabled. . 2017.07.18 10:11:30 - Interface Ethernet 2 metric restored from 3 to Automatic, layer IPv4 . 2017.07.18 10:11:30 - Interface Ethernet 2 metric restored from 3 to Automatic, layer IPv6 I 2017.07.18 10:11:33 - Checking authorization ... ! 2017.07.18 10:11:33 - Connecting to Asellus (Netherlands, Alblasserdam) . 2017.07.18 10:11:33 - OpenVPN > OpenVPN 2.4.3 x86_64-w64-mingw32 [SSL (OpenSSL)] [LZO] [LZ4] [PKCS11] [AEAD] built on Jun 23 2017 . 2017.07.18 10:11:33 - OpenVPN > Windows version 6.2 (Windows 8 or greater) 64bit . 2017.07.18 10:11:33 - OpenVPN > library versions: OpenSSL 1.0.2l 25 May 2017, LZO 2.10 . 2017.07.18 10:11:33 - OpenVPN > MANAGEMENT: TCP Socket listening on [AF_INET]127.0.0.1:3100 . 2017.07.18 10:11:33 - OpenVPN > Outgoing Control Channel Authentication: Using 160 bit message hash 'SHA1' for HMAC authentication . 2017.07.18 10:11:33 - OpenVPN > Incoming Control Channel Authentication: Using 160 bit message hash 'SHA1' for HMAC authentication . 2017.07.18 10:11:33 - OpenVPN > TCP/UDP: Preserving recently used remote address: [AF_INET]109.202.107.19:443 . 2017.07.18 10:11:33 - OpenVPN > Socket Buffers: R=[65536->262144] S=[65536->262144] . 2017.07.18 10:11:33 - OpenVPN > UDP link local: (not bound) . 2017.07.18 10:11:33 - OpenVPN > UDP link remote: [AF_INET]109.202.107.19:443 . 2017.07.18 10:11:33 - OpenVPN > TLS: Initial packet from [AF_INET]109.202.107.19:443, sid=b55dc02b a862b75b . 2017.07.18 10:11:34 - OpenVPN > VERIFY OK: depth=1, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=airvpn.org CA, emailAddress=info@airvpn.org . 2017.07.18 10:11:34 - OpenVPN > VERIFY KU OK . 2017.07.18 10:11:34 - OpenVPN > Validating certificate extended key usage . 2017.07.18 10:11:34 - OpenVPN > ++ Certificate has EKU (str) TLS Web Server Authentication, expects TLS Web Server Authentication . 2017.07.18 10:11:34 - OpenVPN > VERIFY EKU OK . 2017.07.18 10:11:34 - OpenVPN > VERIFY OK: depth=0, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=server, emailAddress=info@airvpn.org . 2017.07.18 10:11:34 - OpenVPN > Control Channel: TLSv1.2, cipher TLSv1/SSLv3 DHE-RSA-AES256-GCM-SHA384, 4096 bit RSA . 2017.07.18 10:11:34 - OpenVPN > [server] Peer Connection Initiated with [AF_INET]109.202.107.19:443 . 2017.07.18 10:11:35 - OpenVPN > SENT CONTROL [server]: 'PUSH_REQUEST' (status=1) . 2017.07.18 10:11:35 - OpenVPN > PUSH: Received control message: 'PUSH_REPLY,redirect-gateway def1 bypass-dhcp,dhcp-option DNS 10.4.0.1,comp-lzo no,route-gateway 10.4.0.1,topology subnet,ping 10,ping-restart 60,ifconfig 10.4.86.229 255.255.0.0' . 2017.07.18 10:11:35 - OpenVPN > OPTIONS IMPORT: timers and/or timeouts modified . 2017.07.18 10:11:35 - OpenVPN > OPTIONS IMPORT: compression parms modified . 2017.07.18 10:11:35 - OpenVPN > OPTIONS IMPORT: --ifconfig/up options modified . 2017.07.18 10:11:35 - OpenVPN > OPTIONS IMPORT: route options modified . 2017.07.18 10:11:35 - OpenVPN > OPTIONS IMPORT: route-related options modified . 2017.07.18 10:11:35 - OpenVPN > OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified . 2017.07.18 10:11:35 - OpenVPN > Data Channel Encrypt: Cipher 'AES-256-CBC' initialized with 256 bit key . 2017.07.18 10:11:35 - OpenVPN > Data Channel Encrypt: Using 160 bit message hash 'SHA1' for HMAC authentication . 2017.07.18 10:11:35 - OpenVPN > Data Channel Decrypt: Cipher 'AES-256-CBC' initialized with 256 bit key . 2017.07.18 10:11:35 - OpenVPN > Data Channel Decrypt: Using 160 bit message hash 'SHA1' for HMAC authentication . 2017.07.18 10:11:35 - OpenVPN > interactive service msg_channel=0 . 2017.07.18 10:11:35 - OpenVPN > ROUTE_GATEWAY 192.168.178.1/255.255.255.0 I=11 HWADDR=20:89:84:d6:92:b8 . 2017.07.18 10:11:35 - OpenVPN > open_tun . 2017.07.18 10:11:35 - OpenVPN > TAP-WIN32 device [Ethernet 2] opened: \\.\Global\{7C4E21EF-6F14-408D-A99B-9E866F69E945}.tap . 2017.07.18 10:11:35 - OpenVPN > TAP-Windows Driver Version 9.21 . 2017.07.18 10:11:35 - OpenVPN > Set TAP-Windows TUN subnet mode network/local/netmask = 10.4.0.0/10.4.86.229/255.255.0.0 [SUCCEEDED] . 2017.07.18 10:11:35 - OpenVPN > Notified TAP-Windows driver to set a DHCP IP/netmask of 10.4.86.229/255.255.0.0 on interface {7C4E21EF-6F14-408D-A99B-9E866F69E945} [DHCP-serv: 10.4.255.254, lease-time: 31536000] . 2017.07.18 10:11:35 - OpenVPN > Successful ARP Flush on interface [10] {7C4E21EF-6F14-408D-A99B-9E866F69E945} . 2017.07.18 10:11:35 - OpenVPN > do_ifconfig, tt->did_ifconfig_ipv6_setup=0 . 2017.07.18 10:11:40 - OpenVPN > TEST ROUTES: 1/1 succeeded len=0 ret=1 a=0 u/d=up . 2017.07.18 10:11:40 - OpenVPN > C:\Windows\system32\route.exe ADD 109.202.107.19 MASK 255.255.255.255 192.168.178.1 . 2017.07.18 10:11:40 - OpenVPN > ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=25 and dwForwardType=4 . 2017.07.18 10:11:40 - OpenVPN > Route addition via IPAPI succeeded [adaptive] . 2017.07.18 10:11:40 - OpenVPN > C:\Windows\system32\route.exe ADD 0.0.0.0 MASK 128.0.0.0 10.4.0.1 . 2017.07.18 10:11:40 - OpenVPN > ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=35 and dwForwardType=4 . 2017.07.18 10:11:40 - OpenVPN > Route addition via IPAPI succeeded [adaptive] . 2017.07.18 10:11:40 - OpenVPN > C:\Windows\system32\route.exe ADD 128.0.0.0 MASK 128.0.0.0 10.4.0.1 . 2017.07.18 10:11:40 - OpenVPN > ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=35 and dwForwardType=4 . 2017.07.18 10:11:40 - OpenVPN > Route addition via IPAPI succeeded [adaptive] . 2017.07.18 10:11:40 - OpenVPN > WARNING: this configuration may cache passwords in memory -- use the auth-nocache option to prevent this . 2017.07.18 10:11:40 - Starting Management Interface . 2017.07.18 10:11:40 - OpenVPN > Initialization Sequence Completed . 2017.07.18 10:11:40 - Interface Ethernet 2 metric changed from Automatic to 3, layer IPv4 . 2017.07.18 10:11:40 - Interface Ethernet 2 metric changed from Automatic to 3, layer IPv6 . 2017.07.18 10:11:40 - DNS leak protection with packet filtering enabled. . 2017.07.18 10:11:40 - Flushing DNS I 2017.07.18 10:11:43 - Checking route . 2017.07.18 10:11:53 - curl: (28) Operation timed out after 10047 milliseconds with 0 out of 0 bytes received . 2017.07.18 10:11:53 - Checking route (2° try) . 2017.07.18 10:12:04 - curl: (28) Operation timed out after 10047 milliseconds with 0 out of 0 bytes received . 2017.07.18 10:12:04 - Checking route (3° try) . 2017.07.18 10:12:16 - curl: (28) Operation timed out after 10047 milliseconds with 0 out of 0 bytes received E 2017.07.18 10:12:16 - Checking route failed. . 2017.07.18 10:12:16 - OpenVPN > MANAGEMENT: Client connected from [AF_INET]127.0.0.1:3100 ! 2017.07.18 10:12:17 - Disconnecting . 2017.07.18 10:12:17 - Management - Send 'signal SIGTERM' . 2017.07.18 10:12:17 - OpenVpn Management > >INFO:OpenVPN Management Interface Version 1 -- type 'help' for more info . 2017.07.18 10:12:17 - OpenVPN > MANAGEMENT: CMD 'signal SIGTERM' . 2017.07.18 10:12:17 - OpenVPN > SIGTERM received, sending exit notification to peer . 2017.07.18 10:12:22 - OpenVPN > C:\Windows\system32\route.exe DELETE 109.202.107.19 MASK 255.255.255.255 192.168.178.1 . 2017.07.18 10:12:22 - OpenVPN > Route deletion via IPAPI succeeded [adaptive] . 2017.07.18 10:12:22 - OpenVPN > C:\Windows\system32\route.exe DELETE 0.0.0.0 MASK 128.0.0.0 10.4.0.1 . 2017.07.18 10:12:22 - OpenVPN > Route deletion via IPAPI succeeded [adaptive] . 2017.07.18 10:12:22 - OpenVPN > C:\Windows\system32\route.exe DELETE 128.0.0.0 MASK 128.0.0.0 10.4.0.1 . 2017.07.18 10:12:22 - OpenVPN > Route deletion via IPAPI succeeded [adaptive] . 2017.07.18 10:12:22 - OpenVPN > Closing TUN/TAP interface . 2017.07.18 10:12:22 - OpenVPN > TAP: DHCP address released . 2017.07.18 10:12:22 - OpenVPN > SIGTERM[soft,exit-with-notification] received, process exiting . 2017.07.18 10:12:22 - Connection terminated. . 2017.07.18 10:12:22 - DNS leak protection with packet filtering disabled. . 2017.07.18 10:12:22 - Interface Ethernet 2 metric restored from 3 to Automatic, layer IPv4 . 2017.07.18 10:12:22 - Interface Ethernet 2 metric restored from 3 to Automatic, layer IPv6 I 2017.07.18 10:12:24 - Cancel requested. . 2017.07.18 10:12:24 - IPv6 restored with packet filtering. . 2017.07.18 10:12:24 - Flushing DNS ! 2017.07.18 10:12:27 - Session terminated. . 2017.07.18 10:20:38 - Updating systems & servers data ... . 2017.07.18 10:20:39 - Systems & servers data update completed
  5. After I was using AirVPN for some hours without out a break. I noticed, that AirVPN automatically has connected to a new server with another IP. I missed the moment, when this happened and only saw the new IP adress in the AirVPN client some minutes later. I wanted to ask if this is a normal behaviour and when this happens, is the server changed dynamically or is my notebook getting disconnected with the old server and reconnected with the new server, so that I lose the AirVPN connection for a small moment?
  6. I have a lot of problems with dropped connections after coming back from hibernation on my MacBook. Eddie tries to reconnect before I get a new wifi connection. Somehow, it seems like that this process slows down the process of finding and logging into a wifi. Maybe that is just a feeling, but as soon as I press the cancel button in Eddie, my MacBook will connect to a wifi. A feature that would prevent Eddie from reconnecting after a dropped connection would solve that. A similar problem is also described in this thread: https://airvpn.org/topic/16143-restart-problem/?p=34601 Anyway, a feature like that would be advantages in other circumstances: Imagine I close (hibernate) my MacBook at home. I go to another wifi and open my MacBook. It will connect to the wifi and Eddie would try to connect immediately. I may not want that the owner of that wifi knows that I use AirVPN. Just applying NetLock after a dropped connection would prevent that... What do you think? Is that a possible solution? Could it be implemented?
  7. Hi, I am new to AirVPN and in my trial days. AirVPN works fine for me, get very high speeds (almost up to 100% with nearby European servers, and just had >50% on a US server). But I have one issue: when disconnected and want to reconnect (for example to swich server/country) then i do not get connected. I need to reboot the PC and then I can connect again. I am on the latetst 'Eddie' and on Win8.1 Enterprise x64. Anyone with good suggestions?
  8. I searched the forums and did not find a post regarding gaming over VPN. If there already is a post on the subject, forgive me and provide a link, please. I am experiencing some latency (lag) when playing “Call of Duty: Ghosts” multiplayer online game. I am connecting to airvpn's (Kuma) server via a DD-WRT router and the connection is very stable. I have an xbox 360 connected via Ethernet cable to the router with UPNP turned on (NAT open). On average my connection stats via VPN are: ping: 54, DL: 3.83 Mbps, UL: 0.60 Mbps. On average my connection stats without VPN are: ping: 14, DL: 6 Mbps, UL: 1.3 Mbps Am I just being paranoid for wanting to hide my real IP address when playing online games on a console, or is there a real concern with vengeful players finding out my IP address? I don’t know how another player would be able to get that info, but I have heard stories of players initiating denial of service (DOS) attacks and such on other players. Are there any tricks or tips that you might be able to share that would improve my overall gaming experience over VPN? Hourly, the VPN connection re-authorizes, or whatever it is called. I have the router set to only all connections through the VPN, to prevent IP leakage. Would this cause lag spikes and/or loss of connection to the game host server? What would be the best airvpn server for me to use for Call of Duty or other first person shooter games? I live in southeast Alabama and I don’t have any idea where the game host servers are located for Call of Duty. I have tried a couple different servers and the Kuma server seems to provide a fast and stable connection. However, I still experience lag most of the time.Thanks!
  9. Hi My AirVPN is facing some issue recently. It was fine previously and this is the first time I encounter this annoying problem. Every 1 to 4mins, my AirVPN will disconnect, and then reconnect back by itself. I cant even surf net in peace. Additional info: I am using a school campus network which I only can connect through TCP 53. All the other mode won't work for me. The log is as follow: 12/11/2013 - 11:19 AM write TCPv4_CLIENT: Connection reset by peer (WSAECONNRESET) (code=10054) 12/11/2013 - 11:19 AM read TCPv4_CLIENT: Connection timed out (WSAETIMEDOUT) (code=10060) 12/11/2013 - 11:19 AM Connection reset, restarting [-1] 12/11/2013 - 11:19 AM C:\Windows\system32\route.exe DELETE 10.9.0.1 MASK 255.255.255.255 10.9.0.53 12/11/2013 - 11:19 AM Route deletion via IPAPI succeeded [adaptive] 12/11/2013 - 11:19 AM C:\Windows\system32\route.exe DELETE 119.81.1.123 MASK 255.255.255.255 192.168.0.1 12/11/2013 - 11:19 AM Route deletion via IPAPI succeeded [adaptive] 12/11/2013 - 11:19 AM C:\Windows\system32\route.exe DELETE 0.0.0.0 MASK 128.0.0.0 10.9.0.53 12/11/2013 - 11:19 AM Route deletion via IPAPI succeeded [adaptive] 12/11/2013 - 11:19 AM C:\Windows\system32\route.exe DELETE 128.0.0.0 MASK 128.0.0.0 10.9.0.53 12/11/2013 - 11:19 AM Route deletion via IPAPI succeeded [adaptive] 12/11/2013 - 11:19 AM Closing TUN/TAP interface 12/11/2013 - 11:19 AM SIGUSR1[soft,connection-reset] received, process restarting 12/11/2013 - 11:19 AM Restart pause, 5 second(s) 12/11/2013 - 11:19 AM Socket Buffers: R=[65536->65536] S=[65536->65536] 12/11/2013 - 11:19 AM Attempting to establish TCP connection with [AF_INET]119.81.1.123:53 12/11/2013 - 11:19 AM TCP connection established with [AF_INET]119.81.1.123:53 12/11/2013 - 11:19 AM TCPv4_CLIENT link local: [undef] 12/11/2013 - 11:19 AM TCPv4_CLIENT link remote: [AF_INET]119.81.1.123:53 12/11/2013 - 11:19 AM TLS: Initial packet from [AF_INET]119.81.1.123:53, sid=fe4b2fd4 bf753905 12/11/2013 - 11:19 AM VERIFY OK: depth=1, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=airvpn.org CA, emailAddress=info@airvpn.org 12/11/2013 - 11:19 AM VERIFY OK: nsCertType=SERVER 12/11/2013 - 11:19 AM VERIFY OK: depth=0, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=server, emailAddress=info@airvpn.org 12/11/2013 - 11:19 AM Data Channel Encrypt: Cipher 'AES-256-CBC' initialized with 256 bit key 12/11/2013 - 11:19 AM Data Channel Encrypt: Using 160 bit message hash 'SHA1' for HMAC authentication 12/11/2013 - 11:19 AM Data Channel Decrypt: Cipher 'AES-256-CBC' initialized with 256 bit key 12/11/2013 - 11:19 AM Data Channel Decrypt: Using 160 bit message hash 'SHA1' for HMAC authentication 12/11/2013 - 11:19 AM Control Channel: TLSv1, cipher TLSv1/SSLv3 DHE-RSA-AES256-SHA, 2048 bit RSA 12/11/2013 - 11:19 AM [server] Peer Connection Initiated with [AF_INET]119.81.1.123:53 12/11/2013 - 11:19 AM SENT CONTROL [server]: 'PUSH_REQUEST' (status=1) 12/11/2013 - 11:19 AM PUSH: Received control message: 'PUSH_REPLY,redirect-gateway def1,dhcp-option DNS 10.9.0.1,comp-lzo no,route 10.9.0.1,topology net30,ping 10,ping-restart 60,ifconfig 10.9.0.54 10.9.0.53' 12/11/2013 - 11:19 AM OPTIONS IMPORT: timers and/or timeouts modified 12/11/2013 - 11:19 AM OPTIONS IMPORT: LZO parms modified 12/11/2013 - 11:19 AM OPTIONS IMPORT: --ifconfig/up options modified 12/11/2013 - 11:19 AM OPTIONS IMPORT: route options modified 12/11/2013 - 11:19 AM OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified 12/11/2013 - 11:19 AM do_ifconfig, tt->ipv6=0, tt->did_ifconfig_ipv6_setup=0 12/11/2013 - 11:19 AM open_tun, tt->ipv6=0 12/11/2013 - 11:19 AM TAP-WIN32 device [Local Area Connection] opened: \\.\Global\{7EA32832-7421-4607-BA5F-31A9843A6188}.tap 12/11/2013 - 11:19 AM TAP-Windows Driver Version 9.9 12/11/2013 - 11:19 AM Notified TAP-Windows driver to set a DHCP IP/netmask of 10.9.0.54/255.255.255.252 on interface {7EA32832-7421-4607-BA5F-31A9843A6188} [DHCP-serv: 10.9.0.53, lease-time: 31536000] 12/11/2013 - 11:19 AM Successful ARP Flush on interface [16] {7EA32832-7421-4607-BA5F-31A9843A6188} 12/11/2013 - 11:19 AM TEST ROUTES: 2/2 succeeded len=1 ret=1 a=0 u/d=up 12/11/2013 - 11:19 AM C:\Windows\system32\route.exe ADD 119.81.1.123 MASK 255.255.255.255 192.168.0.1 12/11/2013 - 11:19 AM ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=25 and dwForwardType=4 12/11/2013 - 11:19 AM Route addition via IPAPI succeeded [adaptive] 12/11/2013 - 11:19 AM C:\Windows\system32\route.exe ADD 0.0.0.0 MASK 128.0.0.0 10.9.0.53 12/11/2013 - 11:19 AM ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=30 and dwForwardType=4 12/11/2013 - 11:19 AM Route addition via IPAPI succeeded [adaptive] 12/11/2013 - 11:19 AM C:\Windows\system32\route.exe ADD 128.0.0.0 MASK 128.0.0.0 10.9.0.53 12/11/2013 - 11:19 AM ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=30 and dwForwardType=4 12/11/2013 - 11:19 AM Route addition via IPAPI succeeded [adaptive] 12/11/2013 - 11:19 AM C:\Windows\system32\route.exe ADD 10.9.0.1 MASK 255.255.255.255 10.9.0.53 12/11/2013 - 11:19 AM ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=30 and dwForwardType=4 12/11/2013 - 11:19 AM Route addition via IPAPI succeeded [adaptive] 12/11/2013 - 11:19 AM Initialization Sequence Completed 12/11/2013 - 11:19 AM Starting Management Interface... 12/11/2013 - 11:19 AM Checking... 12/11/2013 - 11:19 AM Retrieve statistics... 12/11/2013 - 11:19 AM Connected. 12/11/2013 - 11:21 AM read TCPv4_CLIENT: Connection timed out (WSAETIMEDOUT) (code=10060) 12/11/2013 - 11:21 AM Connection reset, restarting [-1] 12/11/2013 - 11:21 AM C:\Windows\system32\route.exe DELETE 10.9.0.1 MASK 255.255.255.255 10.9.0.53 12/11/2013 - 11:21 AM Route deletion via IPAPI succeeded [adaptive] 12/11/2013 - 11:21 AM C:\Windows\system32\route.exe DELETE 119.81.1.123 MASK 255.255.255.255 192.168.0.1 12/11/2013 - 11:21 AM Route deletion via IPAPI succeeded [adaptive] 12/11/2013 - 11:21 AM C:\Windows\system32\route.exe DELETE 0.0.0.0 MASK 128.0.0.0 10.9.0.53 12/11/2013 - 11:21 AM Route deletion via IPAPI succeeded [adaptive] 12/11/2013 - 11:21 AM C:\Windows\system32\route.exe DELETE 128.0.0.0 MASK 128.0.0.0 10.9.0.53 12/11/2013 - 11:21 AM Route deletion via IPAPI succeeded [adaptive] 12/11/2013 - 11:21 AM Closing TUN/TAP interface 12/11/2013 - 11:21 AM SIGUSR1[soft,connection-reset] received, process restarting 12/11/2013 - 11:21 AM Restart pause, 5 second(s) 12/11/2013 - 11:21 AM Socket Buffers: R=[65536->65536] S=[65536->65536] 12/11/2013 - 11:21 AM Attempting to establish TCP connection with [AF_INET]119.81.1.123:53 12/11/2013 - 11:21 AM TCP connection established with [AF_INET]119.81.1.123:53 12/11/2013 - 11:21 AM TCPv4_CLIENT link local: [undef] 12/11/2013 - 11:21 AM TCPv4_CLIENT link remote: [AF_INET]119.81.1.123:53 12/11/2013 - 11:21 AM TLS: Initial packet from [AF_INET]119.81.1.123:53, sid=8f06ab13 9f9772a7 12/11/2013 - 11:21 AM VERIFY OK: depth=1, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=airvpn.org CA, emailAddress=info@airvpn.org 12/11/2013 - 11:21 AM VERIFY OK: nsCertType=SERVER 12/11/2013 - 11:21 AM VERIFY OK: depth=0, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=server, emailAddress=info@airvpn.org 12/11/2013 - 11:21 AM Data Channel Encrypt: Cipher 'AES-256-CBC' initialized with 256 bit key 12/11/2013 - 11:21 AM Data Channel Encrypt: Using 160 bit message hash 'SHA1' for HMAC authentication 12/11/2013 - 11:21 AM Data Channel Decrypt: Cipher 'AES-256-CBC' initialized with 256 bit key 12/11/2013 - 11:21 AM Data Channel Decrypt: Using 160 bit message hash 'SHA1' for HMAC authentication 12/11/2013 - 11:21 AM Control Channel: TLSv1, cipher TLSv1/SSLv3 DHE-RSA-AES256-SHA, 2048 bit RSA 12/11/2013 - 11:21 AM [server] Peer Connection Initiated with [AF_INET]119.81.1.123:53 12/11/2013 - 11:21 AM SENT CONTROL [server]: 'PUSH_REQUEST' (status=1) 12/11/2013 - 11:21 AM PUSH: Received control message: 'PUSH_REPLY,redirect-gateway def1,dhcp-option DNS 10.9.0.1,comp-lzo no,route 10.9.0.1,topology net30,ping 10,ping-restart 60,ifconfig 10.9.0.54 10.9.0.53' 12/11/2013 - 11:21 AM OPTIONS IMPORT: timers and/or timeouts modified 12/11/2013 - 11:21 AM OPTIONS IMPORT: LZO parms modified 12/11/2013 - 11:21 AM OPTIONS IMPORT: --ifconfig/up options modified 12/11/2013 - 11:21 AM OPTIONS IMPORT: route options modified 12/11/2013 - 11:21 AM OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified 12/11/2013 - 11:21 AM do_ifconfig, tt->ipv6=0, tt->did_ifconfig_ipv6_setup=0 12/11/2013 - 11:21 AM open_tun, tt->ipv6=0 12/11/2013 - 11:21 AM TAP-WIN32 device [Local Area Connection] opened: \\.\Global\{7EA32832-7421-4607-BA5F-31A9843A6188}.tap 12/11/2013 - 11:21 AM TAP-Windows Driver Version 9.9 12/11/2013 - 11:21 AM Notified TAP-Windows driver to set a DHCP IP/netmask of 10.9.0.54/255.255.255.252 on interface {7EA32832-7421-4607-BA5F-31A9843A6188} [DHCP-serv: 10.9.0.53, lease-time: 31536000] 12/11/2013 - 11:21 AM Successful ARP Flush on interface [16] {7EA32832-7421-4607-BA5F-31A9843A6188} 12/11/2013 - 11:21 AM TEST ROUTES: 2/2 succeeded len=1 ret=1 a=0 u/d=up 12/11/2013 - 11:21 AM C:\Windows\system32\route.exe ADD 119.81.1.123 MASK 255.255.255.255 192.168.0.1 12/11/2013 - 11:21 AM ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=25 and dwForwardType=4 12/11/2013 - 11:21 AM Route addition via IPAPI succeeded [adaptive] 12/11/2013 - 11:21 AM C:\Windows\system32\route.exe ADD 0.0.0.0 MASK 128.0.0.0 10.9.0.53 12/11/2013 - 11:21 AM ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=30 and dwForwardType=4 12/11/2013 - 11:21 AM Route addition via IPAPI succeeded [adaptive] 12/11/2013 - 11:21 AM C:\Windows\system32\route.exe ADD 128.0.0.0 MASK 128.0.0.0 10.9.0.53 12/11/2013 - 11:21 AM ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=30 and dwForwardType=4 12/11/2013 - 11:21 AM Route addition via IPAPI succeeded [adaptive] 12/11/2013 - 11:21 AM C:\Windows\system32\route.exe ADD 10.9.0.1 MASK 255.255.255.255 10.9.0.53 12/11/2013 - 11:21 AM ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=30 and dwForwardType=4 12/11/2013 - 11:21 AM Route addition via IPAPI succeeded [adaptive] 12/11/2013 - 11:21 AM Initialization Sequence Completed 12/11/2013 - 11:21 AM Starting Management Interface... 12/11/2013 - 11:21 AM Checking... 12/11/2013 - 11:21 AM Retrieve statistics... 12/11/2013 - 11:21 AM Connected. 12/11/2013 - 11:23 AM read TCPv4_CLIENT: Connection timed out (WSAETIMEDOUT) (code=10060) 12/11/2013 - 11:23 AM Connection reset, restarting [-1] 12/11/2013 - 11:23 AM C:\Windows\system32\route.exe DELETE 10.9.0.1 MASK 255.255.255.255 10.9.0.53 12/11/2013 - 11:23 AM Route deletion via IPAPI succeeded [adaptive] 12/11/2013 - 11:23 AM C:\Windows\system32\route.exe DELETE 119.81.1.123 MASK 255.255.255.255 192.168.0.1 12/11/2013 - 11:23 AM Route deletion via IPAPI succeeded [adaptive] 12/11/2013 - 11:23 AM C:\Windows\system32\route.exe DELETE 0.0.0.0 MASK 128.0.0.0 10.9.0.53 12/11/2013 - 11:23 AM Route deletion via IPAPI succeeded [adaptive] 12/11/2013 - 11:23 AM C:\Windows\system32\route.exe DELETE 128.0.0.0 MASK 128.0.0.0 10.9.0.53 12/11/2013 - 11:23 AM Route deletion via IPAPI succeeded [adaptive] 12/11/2013 - 11:23 AM Closing TUN/TAP interface 12/11/2013 - 11:23 AM SIGUSR1[soft,connection-reset] received, process restarting 12/11/2013 - 11:23 AM Restart pause, 5 second(s) 12/11/2013 - 11:23 AM Socket Buffers: R=[65536->65536] S=[65536->65536] 12/11/2013 - 11:23 AM Attempting to establish TCP connection with [AF_INET]119.81.1.123:53 12/11/2013 - 11:23 AM TCP connection established with [AF_INET]119.81.1.123:53 12/11/2013 - 11:23 AM TCPv4_CLIENT link local: [undef] 12/11/2013 - 11:23 AM TCPv4_CLIENT link remote: [AF_INET]119.81.1.123:53 12/11/2013 - 11:23 AM TLS: Initial packet from [AF_INET]119.81.1.123:53, sid=1f3d8ad9 bf267595 12/11/2013 - 11:23 AM VERIFY OK: depth=1, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=airvpn.org CA, emailAddress=info@airvpn.org 12/11/2013 - 11:23 AM VERIFY OK: nsCertType=SERVER 12/11/2013 - 11:23 AM VERIFY OK: depth=0, C=IT, ST=IT, L=Perugia, O=airvpn.org, CN=server, emailAddress=info@airvpn.org 12/11/2013 - 11:23 AM Data Channel Encrypt: Cipher 'AES-256-CBC' initialized with 256 bit key 12/11/2013 - 11:23 AM Data Channel Encrypt: Using 160 bit message hash 'SHA1' for HMAC authentication 12/11/2013 - 11:23 AM Data Channel Decrypt: Cipher 'AES-256-CBC' initialized with 256 bit key 12/11/2013 - 11:23 AM Data Channel Decrypt: Using 160 bit message hash 'SHA1' for HMAC authentication 12/11/2013 - 11:23 AM Control Channel: TLSv1, cipher TLSv1/SSLv3 DHE-RSA-AES256-SHA, 2048 bit RSA 12/11/2013 - 11:23 AM [server] Peer Connection Initiated with [AF_INET]119.81.1.123:53 12/11/2013 - 11:23 AM SENT CONTROL [server]: 'PUSH_REQUEST' (status=1) 12/11/2013 - 11:23 AM PUSH: Received control message: 'PUSH_REPLY,redirect-gateway def1,dhcp-option DNS 10.9.0.1,comp-lzo no,route 10.9.0.1,topology net30,ping 10,ping-restart 60,ifconfig 10.9.0.54 10.9.0.53' 12/11/2013 - 11:23 AM OPTIONS IMPORT: timers and/or timeouts modified 12/11/2013 - 11:23 AM OPTIONS IMPORT: LZO parms modified 12/11/2013 - 11:23 AM OPTIONS IMPORT: --ifconfig/up options modified 12/11/2013 - 11:23 AM OPTIONS IMPORT: route options modified 12/11/2013 - 11:23 AM OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified 12/11/2013 - 11:23 AM do_ifconfig, tt->ipv6=0, tt->did_ifconfig_ipv6_setup=0 12/11/2013 - 11:23 AM open_tun, tt->ipv6=0 12/11/2013 - 11:23 AM TAP-WIN32 device [Local Area Connection] opened: \\.\Global\{7EA32832-7421-4607-BA5F-31A9843A6188}.tap 12/11/2013 - 11:23 AM TAP-Windows Driver Version 9.9 12/11/2013 - 11:23 AM Notified TAP-Windows driver to set a DHCP IP/netmask of 10.9.0.54/255.255.255.252 on interface {7EA32832-7421-4607-BA5F-31A9843A6188} [DHCP-serv: 10.9.0.53, lease-time: 31536000] 12/11/2013 - 11:23 AM Successful ARP Flush on interface [16] {7EA32832-7421-4607-BA5F-31A9843A6188} 12/11/2013 - 11:23 AM TEST ROUTES: 2/2 succeeded len=1 ret=1 a=0 u/d=up 12/11/2013 - 11:23 AM C:\Windows\system32\route.exe ADD 119.81.1.123 MASK 255.255.255.255 192.168.0.1 12/11/2013 - 11:23 AM ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=25 and dwForwardType=4 12/11/2013 - 11:23 AM Route addition via IPAPI succeeded [adaptive] 12/11/2013 - 11:23 AM C:\Windows\system32\route.exe ADD 0.0.0.0 MASK 128.0.0.0 10.9.0.53 12/11/2013 - 11:23 AM ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=30 and dwForwardType=4 12/11/2013 - 11:23 AM Route addition via IPAPI succeeded [adaptive] 12/11/2013 - 11:23 AM C:\Windows\system32\route.exe ADD 128.0.0.0 MASK 128.0.0.0 10.9.0.53 12/11/2013 - 11:23 AM ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=30 and dwForwardType=4 12/11/2013 - 11:23 AM Route addition via IPAPI succeeded [adaptive] 12/11/2013 - 11:23 AM C:\Windows\system32\route.exe ADD 10.9.0.1 MASK 255.255.255.255 10.9.0.53 12/11/2013 - 11:23 AM ROUTE: CreateIpForwardEntry succeeded with dwForwardMetric1=30 and dwForwardType=4 12/11/2013 - 11:23 AM Route addition via IPAPI succeeded [adaptive] 12/11/2013 - 11:23 AM Initialization Sequence Completed 12/11/2013 - 11:23 AM Starting Management Interface... 12/11/2013 - 11:23 AM Checking... 12/11/2013 - 11:23 AM Retrieve statistics... 12/11/2013 - 11:23 AM Connected. PLEASE HELP!!
×
×
  • Create New...