1
1
Fork 1

Add iptables FORWARDING due to dockerd conflict.

This commit is contained in:
Derek Smith 2023-08-11 10:26:23 -04:00
parent e602f8be90
commit 62c7fd0504
Signed by: farscapian
GPG Key ID: B443E530A14E1C90
1 changed files with 7 additions and 0 deletions

View File

@ -29,6 +29,13 @@ for i in "$@"; do
done
# ensure the iptables forward policy is set to ACCEPT so your host can act as a router
# Note this is necessary if docker is running (or has been previuosly installed) on the
# same host running LXD.
sudo iptables -F FORWARD
sudo iptables -P FORWARD ACCEPT
# if the user didn't specify the disk or partition, we create a loop device under
# the user's home directory. If the user does specify a disk or partition, we will
# create the ZFS pool there.