From 317fad4a5b452777aeb33c9bfdd9e4578b373ef2 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Sat, 15 Jun 2024 23:19:28 -0600 Subject: [PATCH] Update Networking/Creating a MACVLAN Sub-Interface.md --- Networking/Creating a MACVLAN Sub-Interface.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Networking/Creating a MACVLAN Sub-Interface.md b/Networking/Creating a MACVLAN Sub-Interface.md index bab6f69..f116ce0 100644 --- a/Networking/Creating a MACVLAN Sub-Interface.md +++ b/Networking/Creating a MACVLAN Sub-Interface.md @@ -16,4 +16,7 @@ ip link set macvlan0 up Now you need to run the following command to allow docker to use this interface for the `surveillance_network` ``` sh docker network create -d macvlan --subnet=192.168.4.0/24 --gateway=192.168.4.1 -o parent=macvlan0 surveillance_network -``` \ No newline at end of file +``` + +!!! warning "Not Reboot-Persistent Yet" + Unfortunately due to a lack of documentation yet, I do not have a permanent configuration change to make this persistent, as such, you will need to re-run the commands above (at least the "Temporary Interface" section) in order to get it operational again after a system reboot. \ No newline at end of file