Hi,
Solved: To get NordVPN and OpenVPN to run
Unsolved: To access the LXC privileged from another server in the same LAN.
I tried to install OpenVPN and ran into the TUN issue like most people. I noticed NordVPN who I use have their own app as well as support for OpenVPN.
The simple fix to get NordVPN to run is to:
append this at the end of /etc/pve/lxc/your_lxc_number.config:
lxc.mount.entry: /dev/net/tun dev/net/tun none bind,create=file
(In my case the file was /etc/pve/lxc/101.conf )
Secondly, in the LXC running Ubuntu latest:
crontab -e
add this line at the end:
@reboot mkdir -p /dev/net && mknod /dev/net/tun c 10 200
now, after a reboot, the nordvpn can be installed as in their lazy tutorial.
Unresolved
I have done the above. NordVPN works great running over systemd
I can't access my server LXC in the local LAN. I just spoke with NordVPN support and they said there are no ways to do port forwarding to access their VPN from the outside.
Well, what about the inside? iptables? UFW is completely disabled when nordvpnd is run.
Any suggestions?
Solved: To get NordVPN and OpenVPN to run
Unsolved: To access the LXC privileged from another server in the same LAN.
I tried to install OpenVPN and ran into the TUN issue like most people. I noticed NordVPN who I use have their own app as well as support for OpenVPN.
The simple fix to get NordVPN to run is to:
append this at the end of /etc/pve/lxc/your_lxc_number.config:
lxc.mount.entry: /dev/net/tun dev/net/tun none bind,create=file
(In my case the file was /etc/pve/lxc/101.conf )
Secondly, in the LXC running Ubuntu latest:
crontab -e
add this line at the end:
@reboot mkdir -p /dev/net && mknod /dev/net/tun c 10 200
now, after a reboot, the nordvpn can be installed as in their lazy tutorial.
Unresolved
I have done the above. NordVPN works great running over systemd
I can't access my server LXC in the local LAN. I just spoke with NordVPN support and they said there are no ways to do port forwarding to access their VPN from the outside.
Well, what about the inside? iptables? UFW is completely disabled when nordvpnd is run.
Any suggestions?