[Support] binhex - DelugeVPN


Recommended Posts

Hey @jude I think I see it.. its the permissions on the files..

Edit - pulled my config screenshots as it looks like its mainly a file permission issue for you now that I re-read the posts.

 

 

I have a credentials.conf which also has my username on one line and password on another line, I dont remember if I created that or if the container made that...

Check your permissions in that directory on the files.. just noticed yours was different (I'm not saying mine are correct, just mine work)

 

 

sh-5.0# ls
bin   config  dev        etc   lib    mnt  proc  run   srv              sys  usr
boot  data    downloads  home  lib64  opt  root  sbin  supervisord.pid  tmp  var
sh-5.0# cd /config
sh-5.0# cd openvpn
sh-5.0# ls -lrat
total 20
-rwxrwxr-x 1 nobody users  869 Oct 22  2019  crl.rsa.2048.pem
-rwxrwxr-x 1 nobody users 2025 Oct 22  2019  ca.rsa.2048.crt
-rwxrwxr-x 1 nobody users   26 Jul  1 15:35  credentials.conf
-rwxrwxr-x 1 nobody users 3174 Jul  1 15:35 'CA Montreal.ovpn'
drwxrwxr-x 2 nobody users  101 Jul  1 15:35  .
drwxrwxr-x 8 nobody users 4096 Jul 17 15:30  ..
sh-5.0# 

 

Hope this helps!

Edited by Geekd4d
pulled images :)
Link to comment

I ran the following command chmod -R 777 /mnt/user/appdata/binhex-delugevpn/openvpn

 

now the file permissions look like this

 

root@Tower:/mnt/user/appdata/binhex-delugevpn/openvpn# ls -al

total 12

drwxrwxr-x 1 nobody users    6 Jul 17 12:07 ./

drwxrwxr-x 1 nobody users  239 Jul 17 09:02 ../

-rwxrwxrwx 1 nobody users 2025 Jul 15 07:59 ca.rsa.2048.crt*

-rwxrwxrwx 1 nobody users  869 Jul 15 07:59 crl.rsa.2048.pem*

-rwxrwxrwx 1 nobody users 3180 Jul 15 07:59 toronto.ovpn*

 

And i'm still getting the same start error

 

2020-07-17 16:32:28.135552 [info] System information Linux 56018defcf38 4.19.107-Unraid #1 SMP Sun Mar 8 14:34:03 CDT 2020 x86_64 GNU/Linux
2020-07-17 16:32:28.155602 [info] OS_ARCH defined as 'x86-64'
2020-07-17 16:32:28.177680 [info] PUID defined as '99'
2020-07-17 16:32:28.199094 [info] PGID defined as '100'
2020-07-17 16:32:28.250136 [info] UMASK defined as '000'
2020-07-17 16:32:28.269896 [info] Permissions already set for volume mappings
2020-07-17 16:32:28.292303 [info] DELUGE_DAEMON_LOG_LEVEL defined as 'info'
2020-07-17 16:32:28.312127 [info] DELUGE_WEB_LOG_LEVEL defined as 'info'
2020-07-17 16:32:28.331927 [info] VPN_ENABLED defined as 'yes'
2020-07-17 16:32:28.354248 [crit] No OpenVPN config file located in /config/openvpn/ (ovpn extension), please download from your VPN provider and then restart this container, exiting...

 

 

Link to comment

hmmm pretty sure thats setup right but maybe .......

 

Container Path: /config

host path: /mnt/cache/appdata/binhex-delugevpn

 

the docker created the openvpn folder in /mnt/cache/appdata/binhex-delugevpn

 

so the container path /config/openvpn/ should translate to /mnt/cache/appdata/binhex-delugevpn/openvpn/

 

unless i'm messing something up

Link to comment

My client is currently limiting itself to 500 active torrents and 3 active downloads even though I've set the queuing preferences to 3000 total, 5 downloading, and 2995 seeding. Anyone know why the preference settings aren't being followed?  Edit: Also tried setting values to -1 with no effect either. 

 

Edit2: I activated the scheduler plugin, which can also control queuing, and it was able to solve the issue

Edited by Hal9001
Link to comment
On 1/12/2018 at 3:22 AM, shaunsund said:

How to set up ProtonVPN in Deluge

 

I thought I'd share how I configured binhex-delugevpn to use ProtonVPN for those fellow paying ProtonVPN users. I don't know if this will work for the free VPN service - likely not. Your milage may vary.

 

Prerequisites
Go to https://account.protonvpn.com/ and obtain:

  1. ProtonVPN OpenVPN username and password.
  2. Openvpn.config file for P2P. As of this post, look at the country pages under your downloads account page and look for the icon with opposing arrows.5a5816f4d63b6_ScreenShot2018-01-11at8_09_18PM.png.c71bb5413de5e7ce5590f65f39d11619.png Select the Linux platform (although it may not make a difference) and UDP. I have not tested TCP.

Steps

From the OpenVPN configs, we need to create two new files. The first must be called openvpn.ovpn and have the following lines, but take the appropriate stanzas from the downloaded configs:



remote <from downloaded configs; you may be able to put multiple remote stanzas for failover>

client
dev tun
proto udp

server-poll-timeout 20

remote-random
resolv-retry infinite
nobind
cipher AES-256-CBC
auth SHA512
comp-lzo
verb 3

tun-mtu 1500
tun-mtu-extra 32
mssfix 1450
persist-key

ping 15
ping-restart 0
ping-timer-rem

remote-cert-tls server
auth-user-pass
pull
fast-io

script-security 2

auth-user-pass credentials.conf

tls-client
ca ca.rsa.2048.crt
disable-occ

key-direction 1
<tls-auth>
# 2048 bit OpenVPN static key
<from downloaded configs, include the BEGIN and END lines>
</tls-auth>

You'll notice your downloaded configs have a block with <ca> </ca> tags, cut that block out that starts at


<ca>
-----BEGIN CERTIFICATE-----

to


-----END CERTIFICATE-----
</ca>

and paste it to a new file called ca.rsa.2048.crt, but this file won't need the <ca> </ca> tags. It should just have the text including and between the BEGIN and END lines.

 

You'll notice that the template mentions a credentials.conf, this is created when the Docker image is saved.

 

Take the ca.rsa.2048.crt and openvpn.ovpn and copy them to the appdata/binhex-delugevpn/openvpn directory.

 

Next step is to edit the Docker image:


Host Port 1: 8112
    Container Port: 8112
Host Port 2: 58846
    Container Port: 58846
Host Port 3: 58946
    Container Port: 58946
Host Port 4: 58946
    Container Port: 58946
Host Port 5: 8118
    Container Port: 8118
Host Path 2: /mnt/user/Deluge/data (or where ever you have it setup)
    Container Path: /data
Key 1: yes
    Container Variable: VPN_ENABLED
Key 2: <Your ProtonVPN OpenVPN username>
    Container Variable: VPN_USER
Key 3: <Your ProtonVPN OpenVPN password>
    Container Variable: VPN_PASS
Key 4: custom
    Container Variable: VPN_PROV
Key 5: -none-
    Container Variable: VPN_OPTIONS
Key 6: yes
    Container Variable: STRICT_PORT_FORWARD
Key 7: yes
    Container Variable: ENABLE_PRIVOXY
Key 8:    192.168.1.0/24 (or your local LAN address space)
    Container Variable: LAN_NETWORK
Key 9:    8.8.8.8,209.222.18.222,37.235.1.174,209.222.18.218,37.235.1.177,8.8.4.4
    Container Variable: NAME_SERVERS
Key 10:    false
    Container Variable: DEBUG
Key 11:    000
    Container Variable: UMASK
Key 12: 99
    Container Variable: PUID
Key 13: 100
    Container Variable: PGID
AppData Config Path: /mnt/user/appdata/binhex-delugevpn
    Container Path: /config

 

After hitting apply it should create the credentials.conf and start the image. You can't pre-create the credentials.conf, the docker image will likely complain about permissions and not start.

 

Some troubleshooting tips:
To login to the docker image:


docker exec -it binhex-delugevpn /bin/bash

Once inside the docker image, run


dig +short myip.opendns.com @resolver1.opendns.com

to get its IP address. As long as this is different from your actual IP, things should be working.

 

To confirm your IP is hidden, go to https://ipleak.net. It should detect your actual ISP IP, but the Torrent Address detection should be the IP from the above dig command.
 

Note 1: the NAME_SERVERS are ones from when I set up PIA, I don't know ProtonVPN nameservers, the OpenVPN config assigns a private DNS server on my desktop. If anyone has the actual ProtonVPN DNS servers, please comment.

 

Note 2: If you notice that the Tracker status shows timeouts, then likely that VPN remote no longer supports P2P or is too slow. Check the Country Configs and update as needed.

 

Anyway, hope this helps someone.

As fellow ProtonVPN user, thank you for these instructions. It put me in the right direction to get it working.

 

However, I found out that I could simply use the config file generated from my ProtonVPN account. After I downloaded the config, I simply renamed it to "openvpn.ovpn", then placed this file in the "./appdata/binhex-delugevpn/openvpn" folder. Then started the container with the right credentials and left most of my parameters default.

It works!

  • Like 1
Link to comment
On 7/15/2020 at 12:39 AM, ZaDoctor said:

I am trying to set up deluge and can't get it to work I followed spaceinvaders tutorial and still can't get it to work. 

https://pastebin.com/KPP7YT1M

2020-07-14 23:18:29,754 DEBG 'start-script' stdout output:

[warn] PIA endpoint 'nl.privateinternetaccess.com' is not in the list of endpoints that support port forwarding, DL/UL speeds maybe slow

[info] Please consider switching to one of the endpoints shown below

[info] List of PIA endpoints that support port forwarding:-

[info] ca-toronto.privateinternetaccess.com

[info] ca-montreal.privateinternetaccess.com

[info] ca-vancouver.privateinternetaccess.com

[info] de-berlin.privateinternetaccess.com

[info] de-frankfurt.privateinternetaccess.com

[info] sweden.privateinternetaccess.com

[info] swiss.privateinternetaccess.com

[info] france.privateinternetaccess.com

[info] czech.privateinternetaccess.com

[info] spain.privateinternetaccess.com

[info] ro.privateinternetaccess.com

[info] israel.privateinternetaccess.com

[info] Attempting to get dynamically assigned port...

 

There is your answer in case you haven't resolved it yet. Spaceinvaders guide is inaccurate because the NL server no longer has open port.

Link to comment

All of a sudden today I am unable to access the webUI and the other dockers I have that route through DelugeVPN won't open either. Here is the log after a full system reboot

 

2020-07-27 13:11:08.073496 [info] System information Linux da35d62395cd 4.19.107-Unraid #1 SMP Thu Mar 5 13:55:57 PST 2020 x86_64 GNU/Linux
2020-07-27 13:11:08.299559 [info] OS_ARCH defined as 'x86-64'
2020-07-27 13:11:08.409419 [info] PUID defined as '99'
2020-07-27 13:11:08.557573 [info] PGID defined as '100'
2020-07-27 13:11:08.629505 [info] UMASK defined as '000'
2020-07-27 13:11:08.661207 [info] Permissions already set for volume mappings
2020-07-27 13:11:08.710061 [info] DELUGE_DAEMON_LOG_LEVEL not defined,(via -e DELUGE_DAEMON_LOG_LEVEL), defaulting to 'info'
2020-07-27 13:11:08.731967 [info] DELUGE_WEB_LOG_LEVEL not defined,(via -e DELUGE_WEB_LOG_LEVEL), defaulting to 'info'
2020-07-27 13:11:08.759573 [info] VPN_ENABLED defined as 'yes'
2020-07-27 13:11:08.793587 [info] OpenVPN config file (ovpn extension) is located at /config/openvpn/REMOVED PERSONAL INFO.ovpn
2020-07-27 13:11:08.835643 [info] VPN remote line defined as 'REMOVED PERSONAL INFO'
2020-07-27 13:11:08.858853 [info] VPN_REMOTE defined as 'REMOVED PERSONAL INFO'
2020-07-27 13:11:08.883133 [info] VPN_PORT defined as '1195'
2020-07-27 13:11:08.928603 [warn] VPN_PROTOCOL not found in /config/openvpn/REMOVED PERSONAL INFO, assuming udp
2020-07-27 13:11:08.952788 [info] VPN_DEVICE_TYPE defined as 'tun0'
2020-07-27 13:11:08.974123 [info] VPN_PROV defined as 'custom'
2020-07-27 13:11:09.005118 [info] LAN_NETWORK defined as 'REMOVED PERSONAL INFO'
2020-07-27 13:11:09.037213 [info] NAME_SERVERS defined as 'REMOVED PERSONAL INFO'
2020-07-27 13:11:09.091583 [info] VPN_USER defined as 'REMOVED PERSONAL INFO'
2020-07-27 13:11:09.125526 [info] VPN_PASS defined as 'REMOVED PERSONAL INFO'
2020-07-27 13:11:09.147223 [info] VPN_OPTIONS not defined (via -e VPN_OPTIONS)
2020-07-27 13:11:09.168214 [info] ENABLE_PRIVOXY defined as 'yes'
2020-07-27 13:11:09.191541 [info] ADDITIONAL_PORTS not defined (via -e ADDITIONAL_PORTS), skipping allow for custom incoming ports
2020-07-27 13:11:09.275026 [info] Deleting files in /tmp (non recursive)...
2020-07-27 13:11:09.296517 [info] Starting Supervisor...
2020-07-27 13:11:10,253 INFO Included extra file "/etc/supervisor/conf.d/delugevpn.conf" during parsing
2020-07-27 13:11:10,253 INFO Set uid to user 0 succeeded
2020-07-27 13:11:10,285 INFO supervisord started with pid 11
2020-07-27 13:11:11,286 INFO spawned: 'start-script' with pid 176
2020-07-27 13:11:11,287 INFO spawned: 'watchdog-script' with pid 177
2020-07-27 13:11:11,288 INFO reaped unknown pid 12 (exit status 0)
2020-07-27 13:11:11,297 DEBG 'start-script' stdout output:
[info] VPN is enabled, beginning configuration of VPN

2020-07-27 13:11:11,297 INFO success: start-script entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
2020-07-27 13:11:11,297 INFO success: watchdog-script entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
2020-07-27 13:11:11,444 DEBG 'start-script' stdout output:
[info] Default route for container is REMOVED PERSONAL INFO

2020-07-27 13:11:11,447 DEBG 'start-script' stdout output:
[info] Adding REMOVED PERSONAL INFO to /etc/resolv.conf

2020-07-27 13:11:11,452 DEBG 'start-script' stdout output:
[info] Adding REMOVED PERSONAL INFO to /etc/resolv.conf

2020-07-27 13:11:11,467 DEBG 'start-script' stdout output:
[info] Adding REMOVED PERSONAL INFO to /etc/resolv.conf

2020-07-27 13:11:11,473 DEBG 'start-script' stdout output:
[info] Adding REMOVED PERSONAL INFO to /etc/resolv.conf

2020-07-27 13:11:11,480 DEBG 'start-script' stdout output:
[info] Adding REMOVED PERSONAL INFO to /etc/resolv.conf

2020-07-27 13:11:11,487 DEBG 'start-script' stdout output:
[info] Adding REMOVED PERSONAL INFO to /etc/resolv.conf

2020-07-27 13:11:11,504 DEBG 'start-script' stdout output:
[info] Adding REMOVED PERSONAL INFO to /etc/resolv.conf

2020-07-27 13:11:11,511 DEBG 'start-script' stdout output:
[info] Adding REMOVED PERSONAL INFO to /etc/resolv.conf

2020-07-27 13:13:11,641 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

2020-07-27 13:15:11,766 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

2020-07-27 13:17:16,888 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

 

Link to comment
6 minutes ago, voicelex said:

All of a sudden today I am unable to access the webUI and the other dockers I have that route through DelugeVPN won't open either. Here is the log after a full system reboot

 


2020-07-27 13:11:08.073496 [info] System information Linux da35d62395cd 4.19.107-Unraid #1 SMP Thu Mar 5 13:55:57 PST 2020 x86_64 GNU/Linux
2020-07-27 13:11:08.299559 [info] OS_ARCH defined as 'x86-64'
2020-07-27 13:11:08.409419 [info] PUID defined as '99'
2020-07-27 13:11:08.557573 [info] PGID defined as '100'
2020-07-27 13:11:08.629505 [info] UMASK defined as '000'
2020-07-27 13:11:08.661207 [info] Permissions already set for volume mappings
2020-07-27 13:11:08.710061 [info] DELUGE_DAEMON_LOG_LEVEL not defined,(via -e DELUGE_DAEMON_LOG_LEVEL), defaulting to 'info'
2020-07-27 13:11:08.731967 [info] DELUGE_WEB_LOG_LEVEL not defined,(via -e DELUGE_WEB_LOG_LEVEL), defaulting to 'info'
2020-07-27 13:11:08.759573 [info] VPN_ENABLED defined as 'yes'
2020-07-27 13:11:08.793587 [info] OpenVPN config file (ovpn extension) is located at /config/openvpn/REMOVED PERSONAL INFO.ovpn
2020-07-27 13:11:08.835643 [info] VPN remote line defined as 'REMOVED PERSONAL INFO'
2020-07-27 13:11:08.858853 [info] VPN_REMOTE defined as 'REMOVED PERSONAL INFO'
2020-07-27 13:11:08.883133 [info] VPN_PORT defined as '1195'
2020-07-27 13:11:08.928603 [warn] VPN_PROTOCOL not found in /config/openvpn/REMOVED PERSONAL INFO, assuming udp
2020-07-27 13:11:08.952788 [info] VPN_DEVICE_TYPE defined as 'tun0'
2020-07-27 13:11:08.974123 [info] VPN_PROV defined as 'custom'
2020-07-27 13:11:09.005118 [info] LAN_NETWORK defined as 'REMOVED PERSONAL INFO'
2020-07-27 13:11:09.037213 [info] NAME_SERVERS defined as 'REMOVED PERSONAL INFO'
2020-07-27 13:11:09.091583 [info] VPN_USER defined as 'REMOVED PERSONAL INFO'
2020-07-27 13:11:09.125526 [info] VPN_PASS defined as 'REMOVED PERSONAL INFO'
2020-07-27 13:11:09.147223 [info] VPN_OPTIONS not defined (via -e VPN_OPTIONS)
2020-07-27 13:11:09.168214 [info] ENABLE_PRIVOXY defined as 'yes'
2020-07-27 13:11:09.191541 [info] ADDITIONAL_PORTS not defined (via -e ADDITIONAL_PORTS), skipping allow for custom incoming ports
2020-07-27 13:11:09.275026 [info] Deleting files in /tmp (non recursive)...
2020-07-27 13:11:09.296517 [info] Starting Supervisor...
2020-07-27 13:11:10,253 INFO Included extra file "/etc/supervisor/conf.d/delugevpn.conf" during parsing
2020-07-27 13:11:10,253 INFO Set uid to user 0 succeeded
2020-07-27 13:11:10,285 INFO supervisord started with pid 11
2020-07-27 13:11:11,286 INFO spawned: 'start-script' with pid 176
2020-07-27 13:11:11,287 INFO spawned: 'watchdog-script' with pid 177
2020-07-27 13:11:11,288 INFO reaped unknown pid 12 (exit status 0)
2020-07-27 13:11:11,297 DEBG 'start-script' stdout output:
[info] VPN is enabled, beginning configuration of VPN

2020-07-27 13:11:11,297 INFO success: start-script entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
2020-07-27 13:11:11,297 INFO success: watchdog-script entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
2020-07-27 13:11:11,444 DEBG 'start-script' stdout output:
[info] Default route for container is REMOVED PERSONAL INFO

2020-07-27 13:11:11,447 DEBG 'start-script' stdout output:
[info] Adding REMOVED PERSONAL INFO to /etc/resolv.conf

2020-07-27 13:11:11,452 DEBG 'start-script' stdout output:
[info] Adding REMOVED PERSONAL INFO to /etc/resolv.conf

2020-07-27 13:11:11,467 DEBG 'start-script' stdout output:
[info] Adding REMOVED PERSONAL INFO to /etc/resolv.conf

2020-07-27 13:11:11,473 DEBG 'start-script' stdout output:
[info] Adding REMOVED PERSONAL INFO to /etc/resolv.conf

2020-07-27 13:11:11,480 DEBG 'start-script' stdout output:
[info] Adding REMOVED PERSONAL INFO to /etc/resolv.conf

2020-07-27 13:11:11,487 DEBG 'start-script' stdout output:
[info] Adding REMOVED PERSONAL INFO to /etc/resolv.conf

2020-07-27 13:11:11,504 DEBG 'start-script' stdout output:
[info] Adding REMOVED PERSONAL INFO to /etc/resolv.conf

2020-07-27 13:11:11,511 DEBG 'start-script' stdout output:
[info] Adding REMOVED PERSONAL INFO to /etc/resolv.conf

2020-07-27 13:13:11,641 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

2020-07-27 13:15:11,766 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

2020-07-27 13:17:16,888 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

 

Your log says it can't connect to the network. Make sure no IP addresses have changed is where i would start. Check your VPN configuration as well. Check that your VPN configuration files are in place as well.

Edited by dzyuba86
Noticed something else in the logs
Link to comment

Thanks @dzyuba86, as far as I can tell no IP addresses have changed on the server. I haven't modified anything for a while, I'm wondering if something happened during an update this morning (how can I tell if it was updated)?

 

I checked my vpn login/pass and those are fine then updated the .ovpn file and the .crt and .key files. No luck. Any other logs I can provide that might show what's going on?

Link to comment
1 hour ago, dzyuba86 said:

@voicelex has anything changed in the logs after you updated the VPN files?

 

Also which VPN provider are you using? You redacted a lot of information that could be helpful in troubleshooting this.

 

I'm using ExpressVPN and have no issue logging in with their app right now. Below is the most recent log after restarting the docker and it going through the same routine as before then getting to this:

 

2020-07-27 14:02:03.436684 [info] Starting Supervisor...
2020-07-27 14:02:03,558 INFO Included extra file "/etc/supervisor/conf.d/delugevpn.conf" during parsing
2020-07-27 14:02:03,558 INFO Set uid to user 0 succeeded
2020-07-27 14:02:03,560 INFO supervisord started with pid 7
2020-07-27 14:02:04,563 INFO spawned: 'start-script' with pid 172
2020-07-27 14:02:04,566 INFO spawned: 'watchdog-script' with pid 173
2020-07-27 14:02:04,566 INFO reaped unknown pid 8 (exit status 0)
2020-07-27 14:02:04,571 DEBG 'start-script' stdout output:
[info] VPN is enabled, beginning configuration of VPN

2020-07-27 14:02:04,571 INFO success: start-script entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
2020-07-27 14:02:04,572 INFO success: watchdog-script entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
2020-07-27 14:02:04,630 DEBG 'start-script' stdout output:
[info] Default route for container is 172.17.0.1

2020-07-27 14:02:04,633 DEBG 'start-script' stdout output:
[info] Adding 209.222.18.222 to /etc/resolv.conf

2020-07-27 14:02:04,635 DEBG 'start-script' stdout output:
[info] Adding 37.235.1.174 to /etc/resolv.conf

2020-07-27 14:02:04,638 DEBG 'start-script' stdout output:
[info] Adding 1.1.1.1 to /etc/resolv.conf

2020-07-27 14:02:04,640 DEBG 'start-script' stdout output:
[info] Adding 8.8.8.8 to /etc/resolv.conf

2020-07-27 14:02:04,643 DEBG 'start-script' stdout output:
[info] Adding 209.222.18.218 to /etc/resolv.conf

2020-07-27 14:02:04,645 DEBG 'start-script' stdout output:
[info] Adding 37.235.1.177 to /etc/resolv.conf

2020-07-27 14:02:04,647 DEBG 'start-script' stdout output:
[info] Adding 1.0.0.1 to /etc/resolv.conf

2020-07-27 14:02:04,650 DEBG 'start-script' stdout output:
[info] Adding 8.8.4.4 to /etc/resolv.conf

2020-07-27 14:04:04,774 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

2020-07-27 14:06:04,911 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

2020-07-27 14:08:10,046 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

2020-07-27 14:10:15,179 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

2020-07-27 14:12:20,310 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

2020-07-27 14:14:25,447 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

2020-07-27 14:16:30,574 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

2020-07-27 14:18:35,713 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

2020-07-27 14:20:40,852 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

2020-07-27 14:22:45,987 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

2020-07-27 14:24:51,119 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

2020-07-27 14:26:56,243 DEBG 'start-script' stderr output:
Error: error sending query: Could not send or receive, because of network error

2020-07-27 14:27:01,247 DEBG 'start-script' stdout output:
[crit] 'XXXX.XXXX.com' cannot be resolved, possible DNS issues, exiting...

2020-07-27 14:27:01,247 DEBG fd 10 closed, stopped monitoring <POutputDispatcher at 140337127370656 for <Subprocess at 140337127631648 with name start-script in state RUNNING> (stderr)>
2020-07-27 14:27:01,247 DEBG fd 8 closed, stopped monitoring <POutputDispatcher at 140337127370704 for <Subprocess at 140337127631648 with name start-script in state RUNNING> (stdout)>
2020-07-27 14:27:01,247 INFO exited: start-script (exit status 1; not expected)
2020-07-27 14:27:01,247 DEBG received SIGCHLD indicating a child quit

 

Link to comment
48 minutes ago, dzyuba86 said:

@voicelex seems like one of your DNS servers is causing problems based on what I'm seeing.

https://prnt.sc/tpimv7

 

 

So strange, I've never changed them but did recently make a mod to my PFsense router but over a week ago and didn't have any issues with deluge until today. I'll try changing them.

 

 

*EDIT
Ok, so I turned off the rules I was using to enable pfblocker for domain-level site blocking on my pfsense router and that seemed to have worked! I'm just confused as to why it was working fine until now.

Edited by voicelex
Link to comment

@voicelex when you make a network change, since Deluge had the connection open it knew the route, once it rebooted the router rules played into effect and thus cutting it off. I see this happen a lot with networking. I don't know the intricate details but essentially the route follows the cache and when you restart you wipe the cache therefore it has to relocate the route. Glad you were able to resolve it though.

Link to comment

@dzyuba86, thanks for the insight, that make sense. Now what I'm wondering is; how to use pfblocker to create whole home domain-level blocking rules without disrupting my VPN connection in deluge on my unraid box! I love the abilities of pfblocker but they don't seem to work without forcing all DNS through pfsesnse via port 53. Probably a question that exceeds the limits of this thread but I'm sure I'll figure it out eventually.

 

Thanks for your help!

Link to comment

I just started using deluge (and unraid) yesterday but I have some behaviour that seems odd to me and I'm hoping someone can help out.
1. When I enabled a plugin (label) and restart the docker for any reason, the plugin disables and has to be reenabled. Its frustrating but not the end of the world. Is this behaviour normal, it seems like it should keep any plugin enabled.

2. I can't add a plugin. I want to add a copy plugin and no matter what I do (use the plugin section of the UI or even drop it into the plugin folder) nothing happens. The plugin doesn't appear and even restarting the docker doesn't change anything which brings back up 1 above.

 

Can someone suggest how to solve both of these issues please. I can't be the first person to ever have this happen. Maybe I missed something when setting up unraid. Do I need something else installed that I don't have?

Edited by muttly.irl
Link to comment

I can not acces the webui.

Read all the possible FAQs.

 

Heres the log:

ErrorWarningSystemArrayLogin


VPN_PORT=443
VPN_PROTOCOL=udp
VPN_PROV=custom
VPN_REMOTE=ams-193.whiskergalaxy.com
VPN_USER=********
_='[debug] Environment variables defined as follows'
[debug] Directory listing of files in /config/openvpn as follows

2020-07-29 14:21:36,290 DEBG 'watchdog-script' stderr output:
dos2unix: converting file /config/core.conf to Unix format...

2020-07-29 14:21:36,292 DEBG 'watchdog-script' stdout output:
[debug] Waiting for valid IP address from tunnel...

2020-07-29 14:21:36,295 DEBG 'start-script' stdout output:
total 8
drwxrwxr-x 1 nobody users 0 Jul 29 14:21 .
drwxrwxr-x 1 nobody users 32 Jul 29 14:21 ..
-rwxrwxr-x 1 nobody users 23 Jul 29 14:19 credentials.conf
-rwxrwxr-x 1 nobody users 2975 Jul 29 14:21 Windscribe-Amsterdam-Tulip.ovpn

2020-07-29 14:21:36,355 DEBG 'start-script' stdout output:
[debug] Contents of ovpn file /config/openvpn/Windscribe-Amsterdam-Tulip.ovpn as follows...

2020-07-29 14:21:36,360 DEBG 'start-script' stdout output:
remote ams-193.whiskergalaxy.com 443
client
dev tun

p

nobind
auth-user-pass credentials.conf

resolv-retry infinite

auth SHA512
cipher AES-256-CBC
comp-lzo
verb 2
mute-replay-warnings
remote-cert-tls server
persist-key

key-direction 1
<ca>
-----BEGIN CERTIFICATE-----
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
ZYGQgrLt+ot8MbLhJlkp4Q==
-----END CERTIFICATE-----
</ca>
<tls-auth>
-----BEGIN OpenVPN Static key V1-----
5801926a57ac2ce27e3dfd1dd6ef8204
2d82bd4f3f0021296f57734f6f1ea714
a6623845541c4b0c3dea0a050fe6746c
b66dfab14cda27e5ae09d7c155aa554f
399fa4a863f0e8c1af787e5c602a801d
3a2ec41e395a978d56729457fe6102d7
d9e9119aa83643210b33c678f9d4109e
3154ac9c759e490cb309b319cf708cae
83ddadc3060a7a26564d1a24411cd552
fe6620ea16b755697a4fc5e6e9d0cfc0
c5c4a1874685429046a424c026db672e
4c2c492898052ba59128d46200b40f88
0027a8b6610a4d559bdc9346d33a0a6b
08e75c7fd43192b162bfd0aef0c716b3
1584827693f676f9a5047123466f0654
eade34972586b31c6ce7e395f4b478cb
-----END OpenVPN Static key V1-----
</tls-auth>
2020-07-29 14:21:36,373 DEBG 'start-script' stdout output:
[info] Default route for container is 172.17.0.1

2020-07-29 14:21:36,376 DEBG 'start-script' stdout output:
[info] Adding 209.222.18.222 to /etc/resolv.conf

2020-07-29 14:21:36,382 DEBG 'start-script' stdout output:
[info] Adding 84.200.69.80 to /etc/resolv.conf

2020-07-29 14:21:36,386 DEBG 'start-script' stdout output:
[info] Adding 37.235.1.174 to /etc/resolv.conf

2020-07-29 14:21:36,389 DEBG 'start-script' stdout output:
[info] Adding 1.1.1.1 to /etc/resolv.conf

2020-07-29 14:21:36,392 DEBG 'start-script' stdout output:
[info] Adding 209.222.18.218 to /etc/resolv.conf

2020-07-29 14:21:36,395 DEBG 'start-script' stdout output:
[info] Adding 37.235.1.177 to /etc/resolv.conf

2020-07-29 14:21:36,399 DEBG 'start-script' stdout output:
[info] Adding 84.200.70.40 to /etc/resolv.conf

2020-07-29 14:21:36,403 DEBG 'start-script' stdout output:
[info] Adding 1.0.0.1 to /etc/resolv.conf

2020-07-29 14:21:36,456 DEBG 'start-script' stdout output:
[debug] Show name servers defined for container

2020-07-29 14:21:36,456 DEBG 'start-script' stdout output:
nameserver 209.222.18.222
nameserver 84.200.69.80
nameserver 37.235.1.174
nameserver 1.1.1.1
nameserver 209.222.18.218
nameserver 37.235.1.177
nameserver 84.200.70.40
nameserver 1.0.0.1

2020-07-29 14:21:36,456 DEBG 'start-script' stdout output:
[debug] Show name resolution for VPN endpoint ams-193.whiskergalaxy.com

2020-07-29 14:21:36,479 DEBG 'start-script' stdout output:
;; ->>HEADER<<- opcode: QUERY, rcode: NOERROR, id: 55276
;; flags: qr rd ra ; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;; ams-193.whiskergalaxy.com. IN A

;; ANSWER SECTION:
ams-193.whiskergalaxy.com. 300 IN A 84.17.46.2

;; AUTHORITY SECTION:

;; ADDITIONAL SECTION:

;; Query time: 21 msec
;; SERVER: 1.1.1.1
;; WHEN: Wed Jul 29 14:21:36 2020
;; MSG SIZE rcvd: 84

2020-07-29 14:21:36,480 DEBG 'start-script' stdout output:
[debug] Show contents of hosts file

2020-07-29 14:21:36,480 DEBG 'start-script' stdout output:
127.0.0.1 localhost
::1 localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
172.17.0.2 54508df6b423
84.17.46.2 ams-193.whiskergalaxy.com

2020-07-29 14:21:36,484 DEBG 'start-script' stdout output:
[debug] Docker interface defined as eth0

2020-07-29 14:21:36,487 DEBG 'start-script' stdout output:
[debug] Docker IP defined as 172.17.0.2

2020-07-29 14:21:36,490 DEBG 'start-script' stdout output:
[debug] Docker netmask defined as 255.255.0.0

2020-07-29 14:21:36,498 DEBG 'start-script' stdout output:
[info] Docker network defined as 172.17.0.0/16

2020-07-29 14:21:36,501 DEBG 'start-script' stdout output:
[info] Adding 192.168.178.0/24 as route via docker eth0

2020-07-29 14:21:36,502 DEBG 'start-script' stdout output:
[info] ip route defined as follows...
--------------------

2020-07-29 14:21:36,503 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.2
192.168.178.0/24 via 172.17.0.1 dev eth0

2020-07-29 14:21:36,503 DEBG 'start-script' stdout output:
--------------------
[debug] Modules currently loaded for kernel

2020-07-29 14:21:36,506 DEBG 'start-script' stdout output:
Module Size Used by
xt_nat 16384 5
veth 20480 0
vhost_net 24576 0
tun 36864 1 vhost_net
vhost 32768 1 vhost_net
tap 20480 1 vhost_net
kvm_intel 196608 0
kvm 380928 1 kvm_intel
xt_CHECKSUM 16384 0
ipt_REJECT 16384 0
ip6table_mangle 16384 1
ip6table_nat 16384 1
nf_nat_ipv6 16384 1 ip6table_nat
iptable_mangle 16384 1
ip6table_filter 16384 1
ip6_tables 24576 3 ip6table_filter,ip6table_nat,ip6table_mangle
ipt_MASQUERADE 16384 6
iptable_filter 16384 1
iptable_nat 16384 1
nf_nat_ipv4 16384 2 ipt_MASQUERADE,iptable_nat
nf_nat 24576 3 nf_nat_ipv6,nf_nat_ipv4,xt_nat
ip_tables 24576 3 iptable_filter,iptable_nat,iptable_mangle
xfs 663552 2
md_mod 49152 2
bonding 110592 0
x86_pkg_temp_thermal 16384 0
intel_powerclamp 16384 0
coretemp 16384 0
crct10dif_pclmul 16384 0
crc32_pclmul 16384 0
crc32c_intel 24576 0
ghash_clmulni_intel 16384 0
pcbc 16384 0
aesni_intel 200704 0
aes_x86_64 20480 1 aesni_intel
crypto_simd 16384 1 aesni_intel
cryptd 20480 3 crypto_simd,ghash_clmulni_intel,aesni_intel
glue_helper 16384 1 aesni_intel
r8169 69632 0
wmi_bmof 16384 0
i2c_i801 24576 0
i2c_core 40960 1 i2c_i801
intel_cstate 16384 0
intel_uncore 102400 0
intel_rapl_perf 16384 0
realtek 20480 0
pcc_cpufreq 16384 0
video 40960 0
button 16384 0
thermal 20480 0
fan 16384 0
mpt3sas 229376 4
backlight 16384 1 video
wmi 20480 1 wmi_bmof
raid_class 16384 1 mpt3sas
scsi_transport_sas 32768 1 mpt3sas

2020-07-29 14:21:36,510 DEBG 'start-script' stdout output:
iptable_mangle 16384 1
ip_tables 24576 3 iptable_filter,iptable_nat,iptable_mangle

2020-07-29 14:21:36,511 DEBG 'start-script' stdout output:
[info] iptable_mangle support detected, adding fwmark for tables

2020-07-29 14:21:36,541 DEBG 'start-script' stdout output:
[info] iptables defined as follows...
--------------------

2020-07-29 14:21:36,542 DEBG 'start-script' stdout output:
-P INPUT DROP
-P FORWARD ACCEPT
-P OUTPUT DROP
-A INPUT -i tun0 -j ACCEPT
-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 443 -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.178.0/24 -i eth0 -p tcp -m tcp --dport 58846 -j ACCEPT
-A INPUT -p icmp -m icmp --icmp-type 0 -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A OUTPUT -o 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 443 -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.178.0/24 -o eth0 -p tcp -m tcp --sport 58846 -j ACCEPT
-A OUTPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT
-A OUTPUT -o lo -j ACCEPT

2020-07-29 14:21:36,543 DEBG 'start-script' stdout output:
--------------------

2020-07-29 14:21:36,543 DEBG 'start-script' stdout output:
[debug] OpenVPN command line:- /usr/bin/openvpn --daemon --reneg-sec 0 --mute-replay-warnings --auth-nocache --setenv VPN_PROV 'custom' --setenv DEBUG 'true' --setenv VPN_DEVICE_TYPE 'tun0' --setenv VPN_REMOTE 'ams-193.whiskergalaxy.com' --script-security 2 --writepid /root/openvpn.pid --remap-usr1 SIGHUP --log-append /dev/stdout --pull-filter ignore 'up' --pull-filter ignore 'down' --pull-filter ignore 'route-ipv6' --pull-filter ignore 'ifconfig-ipv6' --pull-filter ignore 'tun-ipv6' --pull-filter ignore 'persist-tun' --pull-filter ignore 'reneg-sec' --remote 84.17.46.2 443 udp --remote-random --up /root/openvpnup.sh --up-delay --up-restart --keepalive 10 60 --auth-user-pass credentials.conf --cd /config/openvpn --config '/config/openvpn/Windscribe-Amsterdam-Tulip.ovpn'

2020-07-29 14:21:36,544 DEBG 'start-script' stdout output:
[info] Starting OpenVPN...

2020-07-29 14:21:36,559 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:36 2020 WARNING: file 'credentials.conf' is group or others accessible


2020-07-29 14:21:36,559 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:36 2020 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
Wed Jul 29 14:21:36 2020 library versions: OpenSSL 1.1.1b 26 Feb 2019, LZO 2.10

2020-07-29 14:21:36,560 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:36 2020 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts

2020-07-29 14:21:36,560 DEBG 'start-script' stdout output:
[info] OpenVPN started

2020-07-29 14:21:36,560 DEBG 'start-script' stdout output:
[debug] Waiting for valid IP address from tunnel...
Wed Jul 29 14:21:36 2020 Outgoing Control Channel Authentication: Using 512 bit message hash 'SHA512' for HMAC authentication
Wed Jul 29 14:21:36 2020 Incoming Control Channel Authentication: Using 512 bit message hash 'SHA512' for HMAC authentication

2020-07-29 14:21:36,561 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:36 2020 TCP/UDP: Preserving recently used remote address: [AF_INET]84.17.46.2:443
Wed Jul 29 14:21:36 2020 UDP link local: (not bound)
Wed Jul 29 14:21:36 2020 UDP link remote: [AF_INET]84.17.46.2:443

2020-07-29 14:21:36,637 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:36 2020 VERIFY OK: depth=1, C=CA, ST=ON, L=Toronto, O=Windscribe Limited, OU=Operations, CN=Windscribe Node CA

2020-07-29 14:21:36,638 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:36 2020 VERIFY KU OK
Wed Jul 29 14:21:36 2020 Validating certificate extended key usage
Wed Jul 29 14:21:36 2020 ++ Certificate has EKU (str) TLS Web Server Authentication, expects TLS Web Server Authentication
Wed Jul 29 14:21:36 2020 VERIFY EKU OK
Wed Jul 29 14:21:36 2020 VERIFY OK: depth=0, C=CA, ST=ON, O=Windscribe Limited, OU=Operations, CN=Windscribe Node Server 4096

2020-07-29 14:21:36,717 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:36 2020 WARNING: 'link-mtu' is used inconsistently, local='link-mtu 1602', remote='link-mtu 1550'

Wed Jul 29 14:21:36 2020 WARNING: 'cipher' is used inconsistently, local='cipher AES-256-CBC', remote='cipher AES-256-GCM'

Wed Jul 29 14:21:36 2020 WARNING: 'auth' is used inconsistently, local='auth SHA512', remote='auth [null-digest]'


2020-07-29 14:21:36,718 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:36 2020 Control Channel: TLSv1.2, cipher TLSv1.2 ECDHE-RSA-AES256-GCM-SHA384, 4096 bit RSA
Wed Jul 29 14:21:36 2020 [Windscribe Node Server 4096] Peer Connection Initiated with [AF_INET]84.17.46.2:443

2020-07-29 14:21:37,884 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:37 2020 AUTH: Received control message: AUTH_FAILED

2020-07-29 14:21:37,884 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:37 2020 SIGTERM[soft,auth-failure] received, process exiting

 

Link to comment
34 minutes ago, 1q8448q1 said:

I can not acces the webui.

Read all the possible FAQs.

 

Heres the log:


ErrorWarningSystemArrayLogin


VPN_PORT=443
VPN_PROTOCOL=udp
VPN_PROV=custom
VPN_REMOTE=ams-193.whiskergalaxy.com
VPN_USER=********
_='[debug] Environment variables defined as follows'
[debug] Directory listing of files in /config/openvpn as follows

2020-07-29 14:21:36,290 DEBG 'watchdog-script' stderr output:
dos2unix: converting file /config/core.conf to Unix format...

2020-07-29 14:21:36,292 DEBG 'watchdog-script' stdout output:
[debug] Waiting for valid IP address from tunnel...

2020-07-29 14:21:36,295 DEBG 'start-script' stdout output:
total 8
drwxrwxr-x 1 nobody users 0 Jul 29 14:21 .
drwxrwxr-x 1 nobody users 32 Jul 29 14:21 ..
-rwxrwxr-x 1 nobody users 23 Jul 29 14:19 credentials.conf
-rwxrwxr-x 1 nobody users 2975 Jul 29 14:21 Windscribe-Amsterdam-Tulip.ovpn

2020-07-29 14:21:36,355 DEBG 'start-script' stdout output:
[debug] Contents of ovpn file /config/openvpn/Windscribe-Amsterdam-Tulip.ovpn as follows...

2020-07-29 14:21:36,360 DEBG 'start-script' stdout output:
remote ams-193.whiskergalaxy.com 443
client
dev tun

p

nobind
auth-user-pass credentials.conf

resolv-retry infinite

auth SHA512
cipher AES-256-CBC
comp-lzo
verb 2
mute-replay-warnings
remote-cert-tls server
persist-key

key-direction 1
<ca>
-----BEGIN CERTIFICATE-----
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
ZYGQgrLt+ot8MbLhJlkp4Q==
-----END CERTIFICATE-----
</ca>
<tls-auth>
-----BEGIN OpenVPN Static key V1-----
5801926a57ac2ce27e3dfd1dd6ef8204
2d82bd4f3f0021296f57734f6f1ea714
a6623845541c4b0c3dea0a050fe6746c
b66dfab14cda27e5ae09d7c155aa554f
399fa4a863f0e8c1af787e5c602a801d
3a2ec41e395a978d56729457fe6102d7
d9e9119aa83643210b33c678f9d4109e
3154ac9c759e490cb309b319cf708cae
83ddadc3060a7a26564d1a24411cd552
fe6620ea16b755697a4fc5e6e9d0cfc0
c5c4a1874685429046a424c026db672e
4c2c492898052ba59128d46200b40f88
0027a8b6610a4d559bdc9346d33a0a6b
08e75c7fd43192b162bfd0aef0c716b3
1584827693f676f9a5047123466f0654
eade34972586b31c6ce7e395f4b478cb
-----END OpenVPN Static key V1-----
</tls-auth>
2020-07-29 14:21:36,373 DEBG 'start-script' stdout output:
[info] Default route for container is 172.17.0.1

2020-07-29 14:21:36,376 DEBG 'start-script' stdout output:
[info] Adding 209.222.18.222 to /etc/resolv.conf

2020-07-29 14:21:36,382 DEBG 'start-script' stdout output:
[info] Adding 84.200.69.80 to /etc/resolv.conf

2020-07-29 14:21:36,386 DEBG 'start-script' stdout output:
[info] Adding 37.235.1.174 to /etc/resolv.conf

2020-07-29 14:21:36,389 DEBG 'start-script' stdout output:
[info] Adding 1.1.1.1 to /etc/resolv.conf

2020-07-29 14:21:36,392 DEBG 'start-script' stdout output:
[info] Adding 209.222.18.218 to /etc/resolv.conf

2020-07-29 14:21:36,395 DEBG 'start-script' stdout output:
[info] Adding 37.235.1.177 to /etc/resolv.conf

2020-07-29 14:21:36,399 DEBG 'start-script' stdout output:
[info] Adding 84.200.70.40 to /etc/resolv.conf

2020-07-29 14:21:36,403 DEBG 'start-script' stdout output:
[info] Adding 1.0.0.1 to /etc/resolv.conf

2020-07-29 14:21:36,456 DEBG 'start-script' stdout output:
[debug] Show name servers defined for container

2020-07-29 14:21:36,456 DEBG 'start-script' stdout output:
nameserver 209.222.18.222
nameserver 84.200.69.80
nameserver 37.235.1.174
nameserver 1.1.1.1
nameserver 209.222.18.218
nameserver 37.235.1.177
nameserver 84.200.70.40
nameserver 1.0.0.1

2020-07-29 14:21:36,456 DEBG 'start-script' stdout output:
[debug] Show name resolution for VPN endpoint ams-193.whiskergalaxy.com

2020-07-29 14:21:36,479 DEBG 'start-script' stdout output:
;; ->>HEADER<<- opcode: QUERY, rcode: NOERROR, id: 55276
;; flags: qr rd ra ; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;; ams-193.whiskergalaxy.com. IN A

;; ANSWER SECTION:
ams-193.whiskergalaxy.com. 300 IN A 84.17.46.2

;; AUTHORITY SECTION:

;; ADDITIONAL SECTION:

;; Query time: 21 msec
;; SERVER: 1.1.1.1
;; WHEN: Wed Jul 29 14:21:36 2020
;; MSG SIZE rcvd: 84

2020-07-29 14:21:36,480 DEBG 'start-script' stdout output:
[debug] Show contents of hosts file

2020-07-29 14:21:36,480 DEBG 'start-script' stdout output:
127.0.0.1 localhost
::1 localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
172.17.0.2 54508df6b423
84.17.46.2 ams-193.whiskergalaxy.com

2020-07-29 14:21:36,484 DEBG 'start-script' stdout output:
[debug] Docker interface defined as eth0

2020-07-29 14:21:36,487 DEBG 'start-script' stdout output:
[debug] Docker IP defined as 172.17.0.2

2020-07-29 14:21:36,490 DEBG 'start-script' stdout output:
[debug] Docker netmask defined as 255.255.0.0

2020-07-29 14:21:36,498 DEBG 'start-script' stdout output:
[info] Docker network defined as 172.17.0.0/16

2020-07-29 14:21:36,501 DEBG 'start-script' stdout output:
[info] Adding 192.168.178.0/24 as route via docker eth0

2020-07-29 14:21:36,502 DEBG 'start-script' stdout output:
[info] ip route defined as follows...
--------------------

2020-07-29 14:21:36,503 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.2
192.168.178.0/24 via 172.17.0.1 dev eth0

2020-07-29 14:21:36,503 DEBG 'start-script' stdout output:
--------------------
[debug] Modules currently loaded for kernel

2020-07-29 14:21:36,506 DEBG 'start-script' stdout output:
Module Size Used by
xt_nat 16384 5
veth 20480 0
vhost_net 24576 0
tun 36864 1 vhost_net
vhost 32768 1 vhost_net
tap 20480 1 vhost_net
kvm_intel 196608 0
kvm 380928 1 kvm_intel
xt_CHECKSUM 16384 0
ipt_REJECT 16384 0
ip6table_mangle 16384 1
ip6table_nat 16384 1
nf_nat_ipv6 16384 1 ip6table_nat
iptable_mangle 16384 1
ip6table_filter 16384 1
ip6_tables 24576 3 ip6table_filter,ip6table_nat,ip6table_mangle
ipt_MASQUERADE 16384 6
iptable_filter 16384 1
iptable_nat 16384 1
nf_nat_ipv4 16384 2 ipt_MASQUERADE,iptable_nat
nf_nat 24576 3 nf_nat_ipv6,nf_nat_ipv4,xt_nat
ip_tables 24576 3 iptable_filter,iptable_nat,iptable_mangle
xfs 663552 2
md_mod 49152 2
bonding 110592 0
x86_pkg_temp_thermal 16384 0
intel_powerclamp 16384 0
coretemp 16384 0
crct10dif_pclmul 16384 0
crc32_pclmul 16384 0
crc32c_intel 24576 0
ghash_clmulni_intel 16384 0
pcbc 16384 0
aesni_intel 200704 0
aes_x86_64 20480 1 aesni_intel
crypto_simd 16384 1 aesni_intel
cryptd 20480 3 crypto_simd,ghash_clmulni_intel,aesni_intel
glue_helper 16384 1 aesni_intel
r8169 69632 0
wmi_bmof 16384 0
i2c_i801 24576 0
i2c_core 40960 1 i2c_i801
intel_cstate 16384 0
intel_uncore 102400 0
intel_rapl_perf 16384 0
realtek 20480 0
pcc_cpufreq 16384 0
video 40960 0
button 16384 0
thermal 20480 0
fan 16384 0
mpt3sas 229376 4
backlight 16384 1 video
wmi 20480 1 wmi_bmof
raid_class 16384 1 mpt3sas
scsi_transport_sas 32768 1 mpt3sas

2020-07-29 14:21:36,510 DEBG 'start-script' stdout output:
iptable_mangle 16384 1
ip_tables 24576 3 iptable_filter,iptable_nat,iptable_mangle

2020-07-29 14:21:36,511 DEBG 'start-script' stdout output:
[info] iptable_mangle support detected, adding fwmark for tables

2020-07-29 14:21:36,541 DEBG 'start-script' stdout output:
[info] iptables defined as follows...
--------------------

2020-07-29 14:21:36,542 DEBG 'start-script' stdout output:
-P INPUT DROP
-P FORWARD ACCEPT
-P OUTPUT DROP
-A INPUT -i tun0 -j ACCEPT
-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 443 -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.178.0/24 -i eth0 -p tcp -m tcp --dport 58846 -j ACCEPT
-A INPUT -p icmp -m icmp --icmp-type 0 -j ACCEPT
-A INPUT -i lo -j ACCEPT
-A OUTPUT -o 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 443 -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.178.0/24 -o eth0 -p tcp -m tcp --sport 58846 -j ACCEPT
-A OUTPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT
-A OUTPUT -o lo -j ACCEPT

2020-07-29 14:21:36,543 DEBG 'start-script' stdout output:
--------------------

2020-07-29 14:21:36,543 DEBG 'start-script' stdout output:
[debug] OpenVPN command line:- /usr/bin/openvpn --daemon --reneg-sec 0 --mute-replay-warnings --auth-nocache --setenv VPN_PROV 'custom' --setenv DEBUG 'true' --setenv VPN_DEVICE_TYPE 'tun0' --setenv VPN_REMOTE 'ams-193.whiskergalaxy.com' --script-security 2 --writepid /root/openvpn.pid --remap-usr1 SIGHUP --log-append /dev/stdout --pull-filter ignore 'up' --pull-filter ignore 'down' --pull-filter ignore 'route-ipv6' --pull-filter ignore 'ifconfig-ipv6' --pull-filter ignore 'tun-ipv6' --pull-filter ignore 'persist-tun' --pull-filter ignore 'reneg-sec' --remote 84.17.46.2 443 udp --remote-random --up /root/openvpnup.sh --up-delay --up-restart --keepalive 10 60 --auth-user-pass credentials.conf --cd /config/openvpn --config '/config/openvpn/Windscribe-Amsterdam-Tulip.ovpn'

2020-07-29 14:21:36,544 DEBG 'start-script' stdout output:
[info] Starting OpenVPN...

2020-07-29 14:21:36,559 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:36 2020 WARNING: file 'credentials.conf' is group or others accessible


2020-07-29 14:21:36,559 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:36 2020 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
Wed Jul 29 14:21:36 2020 library versions: OpenSSL 1.1.1b 26 Feb 2019, LZO 2.10

2020-07-29 14:21:36,560 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:36 2020 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts

2020-07-29 14:21:36,560 DEBG 'start-script' stdout output:
[info] OpenVPN started

2020-07-29 14:21:36,560 DEBG 'start-script' stdout output:
[debug] Waiting for valid IP address from tunnel...
Wed Jul 29 14:21:36 2020 Outgoing Control Channel Authentication: Using 512 bit message hash 'SHA512' for HMAC authentication
Wed Jul 29 14:21:36 2020 Incoming Control Channel Authentication: Using 512 bit message hash 'SHA512' for HMAC authentication

2020-07-29 14:21:36,561 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:36 2020 TCP/UDP: Preserving recently used remote address: [AF_INET]84.17.46.2:443
Wed Jul 29 14:21:36 2020 UDP link local: (not bound)
Wed Jul 29 14:21:36 2020 UDP link remote: [AF_INET]84.17.46.2:443

2020-07-29 14:21:36,637 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:36 2020 VERIFY OK: depth=1, C=CA, ST=ON, L=Toronto, O=Windscribe Limited, OU=Operations, CN=Windscribe Node CA

2020-07-29 14:21:36,638 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:36 2020 VERIFY KU OK
Wed Jul 29 14:21:36 2020 Validating certificate extended key usage
Wed Jul 29 14:21:36 2020 ++ Certificate has EKU (str) TLS Web Server Authentication, expects TLS Web Server Authentication
Wed Jul 29 14:21:36 2020 VERIFY EKU OK
Wed Jul 29 14:21:36 2020 VERIFY OK: depth=0, C=CA, ST=ON, O=Windscribe Limited, OU=Operations, CN=Windscribe Node Server 4096

2020-07-29 14:21:36,717 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:36 2020 WARNING: 'link-mtu' is used inconsistently, local='link-mtu 1602', remote='link-mtu 1550'

Wed Jul 29 14:21:36 2020 WARNING: 'cipher' is used inconsistently, local='cipher AES-256-CBC', remote='cipher AES-256-GCM'

Wed Jul 29 14:21:36 2020 WARNING: 'auth' is used inconsistently, local='auth SHA512', remote='auth [null-digest]'


2020-07-29 14:21:36,718 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:36 2020 Control Channel: TLSv1.2, cipher TLSv1.2 ECDHE-RSA-AES256-GCM-SHA384, 4096 bit RSA
Wed Jul 29 14:21:36 2020 [Windscribe Node Server 4096] Peer Connection Initiated with [AF_INET]84.17.46.2:443

2020-07-29 14:21:37,884 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:37 2020 AUTH: Received control message: AUTH_FAILED

2020-07-29 14:21:37,884 DEBG 'start-script' stdout output:
Wed Jul 29 14:21:37 2020 SIGTERM[soft,auth-failure] received, process exiting

 

Second to last line. AUTH_FAILED.  Check to make sure your username and password are correct. 

Link to comment
I just started using deluge (and unraid) yesterday but I have some behaviour that seems odd to me and I'm hoping someone can help out.
1. When I enabled a plugin (label) and restart the docker for any reason, the plugin disables and has to be reenabled. Its frustrating but not the end of the world. Is this behaviour normal, it seems like it should keep any plugin enabled.
2. I can't add a plugin. I want to add a copy plugin and no matter what I do (use the plugin section of the UI or even drop it into the plugin folder) nothing happens. The plugin doesn't appear and even restarting the docker doesn't change anything which brings back up 1 above.
 
Can someone suggest how to solve both of these issues please. I can't be the first person to ever have this happen. Maybe I missed something when setting up unraid. Do I need something else installed that I don't have?

See Q4 here: https://github.com/binhex/documentation/blob/master/docker/faq/delugevpn.md


Sent from my iPhone using Tapatalk
Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.