From a206b289490fea39bbf24186382212a5c368c094 Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Mon, 1 Aug 2022 16:12:41 -0700 Subject: [PATCH] Add VLAN tagging to WAN interface Configure PPPoE interface to use VLAN-tagged WAN interface --- homelab/router/config/new-config.boot | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/homelab/router/config/new-config.boot b/homelab/router/config/new-config.boot index 3620a6ed..8af2c8d2 100644 --- a/homelab/router/config/new-config.boot +++ b/homelab/router/config/new-config.boot @@ -95,12 +95,14 @@ interfaces { } } ethernet eth4 { - address dhcp hw-id 00:15:17:b8:dc:2b offload { sg tso } + vif 201 { + address dhcp + } } loopback lo { } @@ -120,7 +122,7 @@ interfaces { mtu 1492 no-default-route no-peer-dns - source-interface eth4 + source-interface eth4.201 } } nat { @@ -277,4 +279,4 @@ system { } } time-zone America/Los_Angeles -} \ No newline at end of file +}