badwolf

Members
  • Posts

    2
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

badwolf's Achievements

Noob

Noob (1/14)

0

Reputation

  1. I'm sure this has been asked before but I figured I'd give it a shot. Is there anyway a feature can be added where if you supply multiple opvn files, it can do a quick cycle through to find out which file may be the fastest? Like a small script that runs through and finds the fastest ping or travel?
  2. EDIT: I was able to fix my issue. It seems that auto setting in docker for local port wasn't working. Had to also adjust that instead of just the container port. So I'm having an issue with being able to connect to the webui. When I attempt to connect to port 8112, I'm unable to load the webui. Any help would be appreciated Below is my log 019-09-14 17:16:01.408444 [info] VPN_ENABLED defined as 'yes' 2019-09-14 17:16:01.479982 [info] OpenVPN config file (ovpn extension) is located at /config/openvpn/atl-a11.ovpn dos2unix: converting file /config/openvpn/atl-a11.ovpn to Unix format... 2019-09-14 17:16:01.568206 [info] VPN remote line defined as 'remote atl-a11.wlvpn.com 1194' 2019-09-14 17:16:01.631952 [info] VPN_REMOTE defined as 'atl-a11.wlvpn.com' 2019-09-14 17:16:01.701265 [info] VPN_PORT defined as '1194' 2019-09-14 17:16:01.770190 [info] VPN_PROTOCOL defined as 'udp' 2019-09-14 17:16:01.834477 [info] VPN_DEVICE_TYPE defined as 'tun0' 2019-09-14 17:16:01.898750 [info] VPN_PROV defined as 'custom' 2019-09-14 17:16:01.962658 [info] LAN_NETWORK defined as '192.168.0.0/24' 2019-09-14 17:16:02.026438 [info] NAME_SERVERS defined as '8.8.8.8' 2019-09-14 17:16:02.216942 [info] VPN_OPTIONS not defined (via -e VPN_OPTIONS) 2019-09-14 17:16:02.280751 [info] ENABLE_PRIVOXY defined as 'yes' 2019-09-14 17:16:02.349123 [info] Starting Supervisor... 2019-09-14 17:16:02,798 INFO Included extra file "/etc/supervisor/conf.d/delugevpn.conf" during parsing 2019-09-14 17:16:02,798 INFO Set uid to user 0 succeeded 2019-09-14 17:16:02,807 INFO supervisord started with pid 6 2019-09-14 17:16:03,810 INFO spawned: 'start-script' with pid 144 2019-09-14 17:16:03,812 INFO spawned: 'watchdog-script' with pid 145 2019-09-14 17:16:03,813 INFO reaped unknown pid 7 2019-09-14 17:16:03,826 DEBG 'start-script' stdout output: [info] VPN is enabled, beginning configuration of VPN 2019-09-14 17:16:03,826 INFO success: start-script entered RUNNING state, process has stayed up for > than 0 seconds (startsecs) 2019-09-14 17:16:03,826 INFO success: watchdog-script entered RUNNING state, process has stayed up for > than 0 seconds (startsecs) 2019-09-14 17:16:03,830 DEBG 'watchdog-script' stderr output: dos2unix: converting file /config/core.conf to Unix format... 2019-09-14 17:16:03,850 DEBG 'start-script' stdout output: [warn] Password contains characters which could cause authentication issues, please consider changing this if possible 2019-09-14 17:16:03,921 DEBG 'start-script' stdout output: [info] Default route for container is 172.17.0.1 2019-09-14 17:16:03,928 DEBG 'start-script' stdout output: [info] Adding 8.8.8.8 to /etc/resolv.conf 2019-09-14 17:16:04,070 DEBG 'start-script' stdout output: [info] Docker network defined as 172.17.0.0/16 2019-09-14 17:16:04,076 DEBG 'start-script' stdout output: [info] Adding 192.168.0.0/24 as route via docker eth0 2019-09-14 17:16:04,078 DEBG 'start-script' stdout output: [info] ip route defined as follows... -------------------- 2019-09-14 17:16:04,080 DEBG 'start-script' stdout output: default via 172.17.0.1 dev eth0 172.17.0.0/16 dev eth0 proto kernel scope link src 172.17.0.4 192.168.0.0/24 via 172.17.0.1 dev eth0 2019-09-14 17:16:04,080 DEBG 'start-script' stdout output: -------------------- 2019-09-14 17:16:04,088 DEBG 'start-script' stdout output: iptable_mangle 1656 1 ip_tables 14092 3 iptable_filter,iptable_mangle,iptable_nat x_tables 16302 21 ip6table_filter,xt_ipvs,xt_iprange,xt_mark,xt_recent,ip_tables,xt_tcpudp,ipt_MASQUERADE,xt_geoip,xt_limit,xt_state,xt_conntrack,xt_LOG,xt_mac,xt_nat,xt_multiport,iptable_filter,xt_REDIRECT,iptable_mangle,ip6_tables,xt_addrtype 2019-09-14 17:16:04,089 DEBG 'start-script' stdout output: [info] iptable_mangle support detected, adding fwmark for tables 2019-09-14 17:16:04,157 DEBG 'start-script' stdout output: [info] iptables defined as follows... -------------------- 2019-09-14 17:16:04,160 DEBG 'start-script' stdout output: -P INPUT DROP -P FORWARD DROP -P OUTPUT DROP -A INPUT -s 172.17.0.0/16 -d 172.17.0.0/16 -j ACCEPT -A INPUT -i eth0 -p udp -m udp --sport 1194 -j ACCEPT -A INPUT -i eth0 -p tcp -m tcp --dport 8112 -j ACCEPT -A INPUT -i eth0 -p tcp -m tcp --sport 8112 -j ACCEPT -A INPUT -s 192.168.0.0/24 -i eth0 -p tcp -m tcp --dport 58846 -j ACCEPT -A INPUT -s 192.168.0.0/24 -d 172.17.0.0/16 -i eth0 -p tcp -j ACCEPT -A INPUT -p icmp -m icmp --icmp-type 0 -j ACCEPT -A INPUT -i lo -j ACCEPT -A INPUT -i tun0 -j ACCEPT -A OUTPUT -s 172.17.0.0/16 -d 172.17.0.0/16 -j ACCEPT -A OUTPUT -o eth0 -p udp -m udp --dport 1194 -j ACCEPT -A OUTPUT -o eth0 -p tcp -m tcp --dport 8112 -j ACCEPT -A OUTPUT -o eth0 -p tcp -m tcp --sport 8112 -j ACCEPT -A OUTPUT -d 192.168.0.0/24 -o eth0 -p tcp -m tcp --sport 58846 -j ACCEPT -A OUTPUT -s 172.17.0.0/16 -d 192.168.0.0/24 -o eth0 -p tcp -j ACCEPT -A OUTPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT -A OUTPUT -o lo -j ACCEPT -A OUTPUT -o tun0 -j ACCEPT 2019-09-14 17:16:04,162 DEBG 'start-script' stdout output: -------------------- 2019-09-14 17:16:04,163 DEBG 'start-script' stdout output: [info] Starting OpenVPN... 2019-09-14 17:16:04,175 DEBG 'start-script' stdout output: Sat Sep 14 17:16:04 2019 WARNING: file 'credentials.conf' is group or others accessible Sat Sep 14 17:16:04 2019 OpenVPN 2.4.7 [git:makepkg/2b8aec62d5db2c17+] x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Feb 19 2019 Sat Sep 14 17:16:04 2019 library versions: OpenSSL 1.1.1c 28 May 2019, LZO 2.10 2019-09-14 17:16:04,176 DEBG 'start-script' stdout output: [info] OpenVPN started Sat Sep 14 17:16:04 2019 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts 2019-09-14 17:16:04,178 DEBG 'start-script' stdout output: Sat Sep 14 17:16:04 2019 TCP/UDP: Preserving recently used remote address: [AF_INET]209.107.196.15:1194 Sat Sep 14 17:16:04 2019 Socket Buffers: R=[212992->212992] S=[212992->212992] Sat Sep 14 17:16:04 2019 UDP link local: (not bound) Sat Sep 14 17:16:04 2019 UDP link remote: [AF_INET]209.107.196.15:1194 2019-09-14 17:16:04,204 DEBG 'start-script' stdout output: Sat Sep 14 17:16:04 2019 TLS: Initial packet from [AF_INET]209.107.196.15:1194, sid=c1045cc5 dc1040a1 2019-09-14 17:16:04,236 DEBG 'start-script' stdout output: Sat Sep 14 17:16:04 2019 VERIFY OK: depth=1, C=US, ST=VPN, L=VPN, O=VPN, OU=VPN, CN=VPN, name=VPN, emailAddress=VPN 2019-09-14 17:16:04,236 DEBG 'start-script' stdout output: Sat Sep 14 17:16:04 2019 VERIFY KU OK Sat Sep 14 17:16:04 2019 Validating certificate extended key usage Sat Sep 14 17:16:04 2019 ++ Certificate has EKU (str) TLS Web Server Authentication, expects TLS Web Server Authentication Sat Sep 14 17:16:04 2019 VERIFY EKU OK Sat Sep 14 17:16:04 2019 VERIFY OK: depth=0, C=US, ST=VPN, L=VPN, O=VPN, OU=VPN, CN=vpn, name=VPN 2019-09-14 17:16:04,429 DEBG 'start-script' stdout output: Sat Sep 14 17:16:04 2019 Control Channel: TLSv1.2, cipher TLSv1.2 ECDHE-RSA-AES256-GCM-SHA384, 2048 bit RSA Sat Sep 14 17:16:04 2019 [vpn] Peer Connection Initiated with [AF_INET]209.107.196.15:1194 2019-09-14 17:16:05,656 DEBG 'start-script' stdout output: Sat Sep 14 17:16:05 2019 SENT CONTROL [vpn]: 'PUSH_REQUEST' (status=1) 2019-09-14 17:16:05,682 DEBG 'start-script' stdout output: Sat Sep 14 17:16:05 2019 PUSH: Received control message: 'PUSH_REPLY,redirect-gateway def1 bypass-dhcp,dhcp-option DNS 198.18.0.1,dhcp-option DNS 198.18.0.2,rcvbuf 493216,sndbuf 493216,explicit-exit-notify 5,comp-lzo no,route-gateway 172.21.92.1,topology subnet,ping 20,ping-restart 40,ifconfig 172.21.92.60 255.255.254.0,peer-id 0,cipher AES-256-GCM' 2019-09-14 17:16:05,682 DEBG 'start-script' stdout output: Sat Sep 14 17:16:05 2019 OPTIONS IMPORT: timers and/or timeouts modified Sat Sep 14 17:16:05 2019 OPTIONS IMPORT: explicit notify parm(s) modified Sat Sep 14 17:16:05 2019 OPTIONS IMPORT: compression parms modified Sat Sep 14 17:16:05 2019 OPTIONS IMPORT: --sndbuf/--rcvbuf options modified Sat Sep 14 17:16:05 2019 Socket Buffers: R=[212992->425984] S=[212992->425984] Sat Sep 14 17:16:05 2019 OPTIONS IMPORT: --ifconfig/up options modified Sat Sep 14 17:16:05 2019 OPTIONS IMPORT: route options modified Sat Sep 14 17:16:05 2019 OPTIONS IMPORT: route-related options modified Sat Sep 14 17:16:05 2019 OPTIONS IMPORT: --ip-win32 and/or --dhcp-option options modified Sat Sep 14 17:16:05 2019 OPTIONS IMPORT: peer-id set Sat Sep 14 17:16:05 2019 OPTIONS IMPORT: adjusting link_mtu to 1625 Sat Sep 14 17:16:05 2019 OPTIONS IMPORT: data channel crypto options modified Sat Sep 14 17:16:05 2019 Data Channel: using negotiated cipher 'AES-256-GCM' Sat Sep 14 17:16:05 2019 Outgoing Data Channel: Cipher 'AES-256-GCM' initialized with 256 bit key Sat Sep 14 17:16:05 2019 Incoming Data Channel: Cipher 'AES-256-GCM' initialized with 256 bit key 2019-09-14 17:16:05,683 DEBG 'start-script' stdout output: Sat Sep 14 17:16:05 2019 ROUTE_GATEWAY 172.17.0.1/255.255.0.0 IFACE=eth0 HWADDR=02:42:ac:11:00:04 2019-09-14 17:16:05,683 DEBG 'start-script' stdout output: Sat Sep 14 17:16:05 2019 TUN/TAP device tun0 opened Sat Sep 14 17:16:05 2019 TUN/TAP TX queue length set to 100 Sat Sep 14 17:16:05 2019 /usr/bin/ip link set dev tun0 up mtu 1500 2019-09-14 17:16:05,686 DEBG 'start-script' stdout output: Sat Sep 14 17:16:05 2019 /usr/bin/ip addr add dev tun0 172.21.92.60/23 broadcast 172.21.93.255 2019-09-14 17:16:05,688 DEBG 'start-script' stdout output: Sat Sep 14 17:16:05 2019 /root/openvpnup.sh tun0 1500 1553 172.21.92.60 255.255.254.0 init 2019-09-14 17:16:05,692 DEBG 'start-script' stdout output: Sat Sep 14 17:16:05 2019 /usr/bin/ip route add 209.107.196.15/32 via 172.17.0.1 2019-09-14 17:16:05,694 DEBG 'start-script' stdout output: Sat Sep 14 17:16:05 2019 /usr/bin/ip route add 0.0.0.0/1 via 172.21.92.1 2019-09-14 17:16:05,696 DEBG 'start-script' stdout output: Sat Sep 14 17:16:05 2019 /usr/bin/ip route add 128.0.0.0/1 via 172.21.92.1 2019-09-14 17:16:05,699 DEBG 'start-script' stdout output: Sat Sep 14 17:16:05 2019 Initialization Sequence Completed 2019-09-14 17:16:05,818 DEBG 'start-script' stdout output: [info] Application does not require port forwarding or VPN provider is != pia, skipping incoming port assignment 2019-09-14 17:16:05,819 DEBG 'start-script' stdout output: [info] Checking we can resolve name 'www.google.com' to address... 2019-09-14 17:16:05,853 DEBG 'start-script' stdout output: [info] DNS operational, we can resolve name 'www.google.com' to address '172.217.3.132' 2019-09-14 17:16:05,856 DEBG 'start-script' stdout output: [info] Attempting to get external IP using Name Server 'ns1.google.com'... 2019-09-14 17:16:05,960 DEBG 'start-script' stdout output: [info] Successfully retrieved external IP address 209.107.196.13 2019-09-14 17:16:05,998 DEBG 'watchdog-script' stdout output: [info] Deluge listening interface IP 0.0.0.0 and VPN provider IP 172.21.92.60 different, marking for reconfigure 2019-09-14 17:16:06,005 DEBG 'watchdog-script' stdout output: [info] Deluge not running 2019-09-14 17:16:06,012 DEBG 'watchdog-script' stdout output: [info] Deluge Web UI not running 2019-09-14 17:16:06,018 DEBG 'watchdog-script' stdout output: [info] Privoxy not running 2019-09-14 17:16:06,019 DEBG 'watchdog-script' stdout output: [info] Attempting to start Deluge... [info] Removing deluge pid file (if it exists)... 2019-09-14 17:16:06,894 DEBG 'watchdog-script' stdout output: [info] Deluge key 'listen_interface' currently has a value of '172.21.92.76' [info] Deluge key 'listen_interface' will have a new value '172.21.92.60' [info] Writing changes to Deluge config file '/config/core.conf'... 2019-09-14 17:16:07,416 DEBG 'watchdog-script' stdout output: [info] Deluge key 'outgoing_interface' currently has a value of 'tun0' [info] Deluge key 'outgoing_interface' will have a new value 'tun0' [info] Writing changes to Deluge config file '/config/core.conf'... 2019-09-14 17:16:07,877 DEBG 'watchdog-script' stdout output: [info] Deluge key 'default_daemon' currently has a value of 'bc0c81bd733b492097411169e6c581c8' [info] Deluge key 'default_daemon' will have a new value 'bc0c81bd733b492097411169e6c581c8' [info] Writing changes to Deluge config file '/config/web.conf'... 2019-09-14 17:16:08,696 DEBG 'watchdog-script' stdout output: [info] Deluge process started [info] Waiting for Deluge process to start listening on port 58846... 2019-09-14 17:16:09,140 DEBG 'watchdog-script' stdout output: [info] Deluge process listening on port 58846 2019-09-14 17:16:18,018 DEBG 'watchdog-script' stdout output: [info] No torrents with state 'Error' found 2019-09-14 17:16:18,018 DEBG 'watchdog-script' stdout output: [info] Starting Deluge Web UI... 2019-09-14 17:16:18,019 DEBG 'watchdog-script' stdout output: [info] Deluge Web UI started 2019-09-14 17:16:18,028 DEBG 'watchdog-script' stdout output: [info] Attempting to start Privoxy... 2019-09-14 17:16:19,038 DEBG 'watchdog-script' stdout output: [info] Privoxy process started [info] Waiting for Privoxy process to start listening on port 8118... 2019-09-14 17:16:19,046 DEBG 'watchdog-script' stdout output: [info] Privoxy process listening on port 8118