Re: [PATCH net-next v2 3/3] selftests: drv-net: Add VLAN test

From: Jakub Kicinski

Date: Fri Sep 18 2026 - 18:12:35 EST


On Fri, 18 Sep 2026 14:04:13 +0200 Nicolai Buchwitz wrote:
> > +LOCAL_IP = os.environ.get("VLAN_LOCAL_V4", "198.51.100.1")
> > +REMOTE_IP = os.environ.get("VLAN_REMOTE_V4", "198.51.100.2")
>
> LOCAL_IP = "198.51.100.1"
> REMOTE_IP = "198.51.100.2"

LOCAL_IP / REMOTE_IP are in the default network segment (vlan 0)
Here we need some "unused" IP subnet that we can assign without
conflicts. Getting it from the config would indeed be good, but
since this is the first use perhaps we should defer until it actually
bothers someone?

Or am I missing something?