-
Notifications
You must be signed in to change notification settings - Fork 26
[Help] OpenVPN
toulousain79 edited this page Nov 18, 2020
·
4 revisions
To use your VPN you will need a VPN client compatible with OpenVPN. Necessary files to configure your connection are available here:
http://<Server_Name>:<HTTPs_Port>/?user/openvpn-config-file.html
For NFS, you can mount the '/home/username' like below. The IP address can be different depending on the OpenVPN configuration that you have selected.
mount -t nfs 10.0.x.1:/home/<user> <mount_dir> -o nolock
mount -t nfs4 10.0.x.1:/home/<user> <mount_dir> -o nolock
For Samba, you can mount the /home/<user>
like that. The IP address can be different depending on the OpenVPN configuration that you have selected.
mount -t cifs //10.0.x.1/<user> <mount_dir> -o noatime,nodiratime,username=<user>,password=<password>