While playing around with SoftEther, one of the authentication options was Radius.
So let's setup a radius server:
# install server
$ apt-get install freeradius -y
# create a user
$ echo 'test Cleartext-Password := "test"' >> /etc/freeradius/users
# no need to add clients, localhost is allowed by default
$ touch /etc/freeradius/clients.conf
# apply …