Add settings for allowing VPN access in lxc

This commit is contained in:
Manuel Thalmann 2024-11-10 12:56:48 +01:00
parent e1e15ee178
commit c93e900f18

View file

@ -15,7 +15,11 @@ begin
"lxc.apparmor.profile = unconfined" \ "lxc.apparmor.profile = unconfined" \
"" \ "" \
"# Shared Folder" \ "# Shared Folder" \
"lxc.mount.entry = $(realpath "$dir/../..") $valhallaRoot none bind 0 0" "lxc.mount.entry = $(realpath "$dir/../..") $valhallaRoot none bind 0 0" \
"" \
"# VPN" \
"lxc.cgroup.devices.allow = c 10:200 rwm"
"lxc.mount.entry = /dev/net dev/net none bind,create=dir 0 0"
end | sudo tee -a "$containerDir/config" > /dev/null end | sudo tee -a "$containerDir/config" > /dev/null
sudo lxc-start "$container" sudo lxc-start "$container"