I want to bridge 2 NICs and have 3 aliases on them.
first one is dhcp, next 2 are static.
Here is my /etc/config/network file
config 'interface' 'loopback'
option 'ifname' 'lo'
option 'proto' 'static'
option 'ipaddr' '127.0.0.1'
option 'netmask' '255.0.0.0'
config 'interface' 'lan'
option 'ifname' 'eth0 eth1'
option 'type' 'bridge'
option 'proto' 'dhcp'
config 'interface' 'lan_1'
option 'ifname' 'br-lan:1'
option 'proto' 'static'
option 'netmask' '255.0.0.0'
option 'ipaddr' '2.215.236.88'
config 'interface' 'lan_2'
option 'ifname' 'br-lan:2'
option 'proto' 'static'
option 'netmask' '255.0.0.0'
option 'ipaddr' '2.215.236.89'
However this worked fine for long time, it now does not create the ip aliases anymore, but only the dhcp address.
Can someone check how it responds on your side (this is on a x86 board, if this matters, using latest trunk)
When I set the "dhcp" to "none" I do get my static aliases and not the dhcp one.
Is my config wrong for setting up such bridge?
Kind regards
Bart