From 0e0d10b617631ab004b51547ae0f485be67e3b65 Mon Sep 17 00:00:00 2001 From: Bill Tao Date: Tue, 28 Feb 2023 21:15:59 -0800 Subject: [PATCH] tap-bridge: (fixes #839) Update LXC configuration files --- src/tap-bridge/examples/lxc-left.conf | 10 +++++----- src/tap-bridge/examples/lxc-right.conf | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/tap-bridge/examples/lxc-left.conf b/src/tap-bridge/examples/lxc-left.conf index 8f7e25a70..ba2c07a39 100644 --- a/src/tap-bridge/examples/lxc-left.conf +++ b/src/tap-bridge/examples/lxc-left.conf @@ -1,7 +1,7 @@ # Container with network virtualized using a pre-configured bridge named br-left and # veth pair virtual network devices -lxc.utsname = left -lxc.network.type = veth -lxc.network.flags = up -lxc.network.link = br-left -lxc.network.ipv4 = 10.0.0.1/24 +lxc.uts.name = left +lxc.net.0.type = veth +lxc.net.0.flags = up +lxc.net.0.link = br-left +lxc.net.0.ipv4.address = 10.0.0.1/24 diff --git a/src/tap-bridge/examples/lxc-right.conf b/src/tap-bridge/examples/lxc-right.conf index 3a25bc0d0..099733aab 100644 --- a/src/tap-bridge/examples/lxc-right.conf +++ b/src/tap-bridge/examples/lxc-right.conf @@ -1,7 +1,7 @@ # Container with network virtualized using a pre-configured bridge named br-right and # veth pair virtual network devices -lxc.utsname = right -lxc.network.type = veth -lxc.network.flags = up -lxc.network.link = br-right -lxc.network.ipv4 = 10.0.0.2/24 +lxc.uts.name = right +lxc.net.0.type = veth +lxc.net.0.flags = up +lxc.net.0.link = br-right +lxc.net.0.ipv4.address = 10.0.0.2/24