Error (Error Code 9): User authentication failed.

Post your questions about SoftEther VPN software here. Please answer questions if you can afford.
Post Reply
EckyBrazzz
Posts: 9
Joined: Sun Jul 28, 2019 8:45 pm
Location: Remote Brazil / Netherlands
Contact:

Error (Error Code 9): User authentication failed.

Post by EckyBrazzz » Fri Nov 01, 2019 10:05 pm

Great news, installed the VPN on CENTOS 7

Code: Select all

https://www.softether.org/4-docs/1-manual/7._Installing_SoftEther_VPN_Server/7.3_Install_on_Linux_and_Initial_Configurations


cd /tmp/
wget https://github.com/SoftEtherVPN/SoftEtherVPN_Stable/releases/download/v4.29-9680-rtm/softether-vpnserver-v4.29-9680-rtm-2019.02.28-linux-x64-64bit.tar.gz
tar xzvf softether-vpnserver-v4.29-9680-rtm-2019.02.28-linux-x64-64bit.tar.gz
cd vpnserver
cp -va /tmp/vpnserver/ /
cd vpnserver/
Created init.d script

Code: Select all

#!/bin/sh
# chkconfig: 2345 99 01
# description: SoftEther VPN Server
DAEMON=/usr/local/vpnserver/vpnserver
LOCK=/var/lock/subsys/vpnserver
test -x $DAEMON || exit 0
case "$1" in
start)
$DAEMON start
touch $LOCK
;;
stop)
$DAEMON stop
rm $LOCK
;;
restart)
$DAEMON stop
sleep 3
$DAEMON start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit 0
Works server starts stop & restart

When I check if it listens to a port

Code: Select all

netstat -ltnp | grep -w ':1194' 
tcp6       0      0 :::1194                 :::*                    LISTEN      4918/vpnserver   
Great works.

Create user
Create certificate for user
Create certificate on server

Try to log in on all different ways, password, certificate, no password, but get the message Error (Error Code 9): User authentication failed.

How to solve this?

Thanks for any advice!
It's done when it's done. In my case it's never done, it can always be done better.
YOU DON’T BUILD A BUSINESS YOU BUILD PEOPLE AND THEN PEOPLE BUILD THE BUSINESS
mrEckendonk

EckyBrazzz
Posts: 9
Joined: Sun Jul 28, 2019 8:45 pm
Location: Remote Brazil / Netherlands
Contact:

Re: Error (Error Code 9): User authentication failed.

Post by EckyBrazzz » Sat Nov 02, 2019 5:58 am

Resolved, that CSF issue is the cause so need fix for that.
It's done when it's done. In my case it's never done, it can always be done better.
YOU DON’T BUILD A BUSINESS YOU BUILD PEOPLE AND THEN PEOPLE BUILD THE BUSINESS
mrEckendonk

particlefeever
Posts: 9
Joined: Thu Mar 31, 2022 7:37 pm

Re: Error (Error Code 9): User authentication failed.

Post by particlefeever » Mon Jun 06, 2022 5:46 pm

EckyBrazzz wrote:
Sat Nov 02, 2019 5:58 am
Resolved, that CSF issue is the cause so need fix for that.
Hi! I have the same problem, but didn't understand how did you solve your. What is CSF issue?

Tokkiedekip
Posts: 1
Joined: Fri Jul 22, 2022 6:15 pm

Re: Error (Error Code 9): User authentication failed.

Post by Tokkiedekip » Fri Jul 22, 2022 6:28 pm

particlefeever wrote:
Mon Jun 06, 2022 5:46 pm
EckyBrazzz wrote:
Sat Nov 02, 2019 5:58 am
Resolved, that CSF issue is the cause so need fix for that.
Hi! I have the same problem, but didn't understand how did you solve your. What is CSF issue?
I have the same issue. Did you fixed it?

admin5547
Posts: 4
Joined: Mon Sep 19, 2022 2:16 pm

Re: Error (Error Code 9): User authentication failed.

Post by admin5547 » Mon Sep 19, 2022 4:32 pm

I am having the same issue , 2019 Standard Server & windows 10 client. Can you advise on when I can look ?

solo
Posts: 1228
Joined: Sun Feb 14, 2021 10:31 am

Re: Error (Error Code 9): User authentication failed.

Post by solo » Mon Sep 19, 2022 11:43 pm

EckyBrazzz wrote:
Sat Nov 02, 2019 5:58 am
Resolved, that CSF issue is the cause so need fix for that.
FYI
CSF = ConfigServer Security & Firewall
"A Stateful Packet Inspection (SPI) firewall, Login/Intrusion Detection and Security application for Linux servers."

Post Reply