VPN SERVER HOW-TO - add several users

there is a how to

is there a way to add several user not only one ?
Regards

https://openwrt.org/docs/guide-user/services/vpn/pptp/extras#multi-client

1 Like

am i right that this is right config?

Configure VPN service

uci -q delete pptpd.client1
uci set pptpd.client1="login"
uci set pptpd.client1.username="USERNAME1"
uci set pptpd.client1.password="PASSWORD1"

uci -q delete pptpd.client2
uci set pptpd.client2="login"
uci set pptpd.client2.username="USERNAME2"
uci set pptpd.client2.password="PASSWORD2"
uci commit pptpd
/etc/init.d/pptpd restart

1 Like

Yep, that should work, however note:

WireGuard or OpenVPN are preferred.

2 Likes

sure thanks -- there is no sensitive data

  • private data only send over https
1 Like

ocserv/openconnect is another good choice.

1 Like

There are many good VPN solutions these days (predominantly wireguard, IPsec and OpenVPN), pptp is not one of them and horribly insecure, it shouldn't be used, at all.

1 Like

If you have no sensitive data but only private data, what does that mean anyway in the field of cyber security.

Why do you use a VPN solution with the above statement at all if you use https also?