AUTH_FAILED #2292
Replies: 3 comments 6 replies
-
email + login is no more allowed as credential for openvpn. Only identifier / password given from advanced service configuration when logged in nordvpn website allow authentification with openvpn. you may have to use quotes if your login or password has special caracters: https://support.asg.com/mob/mvw/10_0/mv_ag/using_quotes_with_yaml_special_characters.htm |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
OK. So oddly enough, I was able to get it to connect by enabling PRIVELEDGED MODE under Runtime & Resources; however, I cannot connect to the application via the http://ip:9091/ or https://ip:9091/ Any tips? Edit: I have tried version 3.7 and 3.7.1 - no success. --
|
Beta Was this translation helpful? Give feedback.
-
Awesome container btw. I had it running until my network crashed and everything went down with it, but since I've been trying to get it back up, I just cannot get my instance to authenticate with NORDVPN.
I've used the two options for authentication (random characters/digits along with my regular email login), but zero success. I've even gone as far as resetting my password to ensure I had no other connections taking up space.
I am hesitant to go to another provider, as I really liked the way this one worked.
--
version: "2"
services:
transmission:
image: haugene/transmission-openvpn
container_name: transmission-openvpn
restart: always
ports:
- "9091:9091"
networks:
- torrent
environment:
- PGID=1000
- PUID=1000
- OPENVPN_PROVIDER=NORDVPN
- OPENVPN_USERNAME=
- OPENVPN_PASSWORD=
volumes:
- /home/brewmaster/docker/zFileDump/incomplete:/incomplete
- /home/brewmaster/docker/zFileDump/watch:/watch
- /home/brewmaster/docker/zFileDump/completed:/completed
- /home/brewmaster/docker/haugene/config:/config
- /home/brewmaster/docker/haugene/data:/data
- /etc/localtime:/etc/localtime
networks:
torrent:
driver: bridge
--
Starting container with revision: 44c82aa
Creating TUN device /dev/net/tun
Using OpenVPN provider: NORDVPN
Running with VPN_CONFIG_SOURCE auto
Provider NORDVPN has a bundled setup script. Defaulting to internal config
Executing setup script for NORDVPN
2022-07-05 22:27:56 Checking curl installation
2022-07-05 22:27:56 Removing existing configs
2022-07-05 22:27:56 Selecting the best server...
2022-07-05 22:27:56 Searching for group: legacy_p2p
2022-07-05 22:27:56 Searching for technology: openvpn_udp
2022-07-05 22:27:56 Best server : ca1050.nordvpn.com
2022-07-05 22:27:56 Downloading config: default.ovpn
2022-07-05 22:27:56 Downloading from: https://downloads.nordcdn.com/configs/files/ovpn_udp/servers/ca1050.nordvpn.com.udp.ovpn
Starting OpenVPN using config default.ovpn
Modifying /etc/openvpn/nordvpn/default.ovpn for best behaviour in this container
Modification: Point auth-user-pass option to the username/password file
Modification: Change ca certificate path
Modification: Change ping options
Modification: Update/set resolv-retry to 15 seconds
Modification: Change tls-crypt keyfile path
Modification: Set output verbosity to 3
Modification: Remap SIGUSR1 signal to SIGTERM, avoid OpenVPN restart loop
Setting OpenVPN credentials...
Tue Jul 5 22:27:57 2022 OpenVPN 2.4.7 x86_64-pc-linux-gnu [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [PKCS11] [MH/PKTINFO] [AEAD] built on Mar 22 2022
Tue Jul 5 22:27:57 2022 library versions: OpenSSL 1.1.1f 31 Mar 2020, LZO 2.10
Tue Jul 5 22:27:57 2022 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts
Tue Jul 5 22:27:57 2022 Outgoing Control Channel Authentication: Using 512 bit message hash 'SHA512' for HMAC authentication
Tue Jul 5 22:27:57 2022 Incoming Control Channel Authentication: Using 512 bit message hash 'SHA512' for HMAC authentication
Tue Jul 5 22:27:57 2022 TCP/UDP: Preserving recently used remote address: [AF_INET]139.28.218.3:1194
Tue Jul 5 22:27:57 2022 Socket Buffers: R=[212992->212992] S=[212992->212992]
Tue Jul 5 22:27:57 2022 UDP link local: (not bound)
Tue Jul 5 22:27:57 2022 UDP link remote: [AF_INET]139.28.218.3:1194
Tue Jul 5 22:27:57 2022 TLS: Initial packet from [AF_INET]139.28.218.3:1194, sid=f3829114 5ce71abc
Tue Jul 5 22:27:57 2022 WARNING: this configuration may cache passwords in memory -- use the auth-nocache option to prevent this
Tue Jul 5 22:27:57 2022 VERIFY OK: depth=2, C=PA, O=NordVPN, CN=NordVPN Root CA
Tue Jul 5 22:27:57 2022 VERIFY OK: depth=1, C=PA, O=NordVPN, CN=NordVPN CA7
Tue Jul 5 22:27:57 2022 VERIFY KU OK
Tue Jul 5 22:27:57 2022 Validating certificate extended key usage
Tue Jul 5 22:27:57 2022 ++ Certificate has EKU (str) TLS Web Server Authentication, expects TLS Web Server Authentication
Tue Jul 5 22:27:57 2022 VERIFY EKU OK
Tue Jul 5 22:27:57 2022 VERIFY OK: depth=0, CN=ca1050.nordvpn.com
Tue Jul 5 22:27:59 2022 Control Channel: TLSv1.3, cipher TLSv1.3 TLS_AES_256_GCM_SHA384, 4096 bit RSA
Tue Jul 5 22:27:59 2022 [ca1050.nordvpn.com] Peer Connection Initiated with [AF_INET]139.28.218.3:1194
Tue Jul 5 22:28:00 2022 SENT CONTROL [ca1050.nordvpn.com]: 'PUSH_REQUEST' (status=1)
Tue Jul 5 22:28:00 2022 AUTH: Received control message: AUTH_FAILED
Tue Jul 5 22:28:00 2022 SIGTERM[soft,auth-failure] received, process exiting
Beta Was this translation helpful? Give feedback.
All reactions