Skip to content

Latest commit

Β 

History

History
17 lines (14 loc) Β· 478 Bytes

File metadata and controls

17 lines (14 loc) Β· 478 Bytes

MACVLAN.md

Create a macvlan network and bridge

# 10.0.0.0/16 is a standin
# Dictates ingress, make sure every host that needs on is includd in your subnet
docker network create -d macvlan \
  --subnet=10.0.0.0/16 \
  --gateway=10.0.0.1 \
  -o parent=eth0 \
  frontend