1CONFIG_NET_VLAN=y
2
3# We have one non-vlan interface and two VLAN interfaces
4CONFIG_NET_VLAN_COUNT=2
5
6# There will be three network interfaces. Note that the addresses are
7# selected so that our address ends to .1 and the peer one to .2
8
9# First ethernet interface will use these settings
10CONFIG_NET_CONFIG_MY_IPV6_ADDR="2001:db8::1"
11CONFIG_NET_CONFIG_PEER_IPV6_ADDR="2001:db8::2"
12CONFIG_NET_CONFIG_MY_IPV4_ADDR="192.0.2.1"
13CONFIG_NET_CONFIG_PEER_IPV4_ADDR="192.0.2.2"
14
15# Second ethernet interface will have these settings
16CONFIG_NET_SAMPLE_IFACE2_MY_IPV6_ADDR="2001:db8:100::1"
17# TEST-NET-2 from RFC 5737
18CONFIG_NET_SAMPLE_IFACE2_MY_IPV4_ADDR="198.51.100.1"
19# VLAN tag for the second interface
20CONFIG_NET_SAMPLE_IFACE2_VLAN_TAG=100
21
22# Settings for the third network interface
23CONFIG_NET_SAMPLE_IFACE3_MY_IPV6_ADDR="2001:db8:200::1"
24# TEST-NET-3 from RFC 5737
25CONFIG_NET_SAMPLE_IFACE3_MY_IPV4_ADDR="203.0.113.1"
26# VLAN tag for the second interface
27CONFIG_NET_SAMPLE_IFACE3_VLAN_TAG=200
28