How would one set eth2 on the ERL to be untagged VLAN5 in this scenario, when i try to attach the same subnet to eth2 as the vif 5 i get an error stating: Address 192.168.5.1/24 is present on multiple interfaces.
(I'm actually using a ER-POE-5) so setup is not identical but this was the closest example i could find to share.
ethernet eth0 {
address dhcp
description Internet
duplex auto
firewall {
in {
name WAN_IN
}
local {
name WAN_LOCAL
}
}
poe {
output off
}
speed auto
}
ethernet eth1 {
address 192.168.1.1/24
description Local
duplex auto
poe {
output off
}
speed auto
}
ethernet eth2 {
+ address 192.168.5.1/24
description Trunk
duplex auto
poe {
output off
}
speed auto
}
ethernet eth3 {
description "Local 2"
duplex auto
poe {
output off
}
speed auto
}
ethernet eth4 {
description "Local 2"
duplex auto
poe {
output 48v
}
speed auto
}
loopback lo {
}
switch switch0 {
address 192.168.2.1/24
description "Local 2"
switch-port {
interface eth3 {
}
interface eth4 {
}
}
vif 10 {
+ address 192.168.5.1/24
}
}