Home PiHole MACVLAN Network Creation
Post
Cancel

PiHole MACVLAN Network Creation

Pi-Hole Docker macvlan Network Setup

Create Network

1
2
3
4
ip link add macvlan0 link eth0 type macvlan mode bridge
ip addr add 192.168.1.9 dev macvlan0
ip link set macvlan0 up
docker network create --driver=macvlan --gateway=192.168.1.254 --subnet=192.168.1.1/24 -o parent=eth0 macvlan0
This post is licensed under CC BY 4.0 by the author.