Skip to content

Instantly share code, notes, and snippets.

@waveform80
Forked from wastrachan/openvpn-in-lxd.txt
Created November 14, 2019 11:54
Show Gist options
  • Save waveform80/af4d581e0e0c02f21e1c613621529a03 to your computer and use it in GitHub Desktop.
Save waveform80/af4d581e0e0c02f21e1c613621529a03 to your computer and use it in GitHub Desktop.
OpenVPN in LXD Container
# On the host
=============
lxc config set openvpn raw.lxc 'lxc.cgroup.devices.allow = c 10:200 rwm'
lxc config device add openvpn tun unix-char path=/dev/net/tun
# In the container
==================
1. mknod /dev/net/tun c 10 200
2. install OpenVPN (https://github.com/Nyr/openvpn-install or manual)
3. edit /lib/systemd/system/openvpn@.service -- comment out/remove `LimitNPROC=10`
4. systemctl daemon-reload or reboot container
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment