From firmware 2025.0 the network is handled by systemd. On regular Linux systems this gives the opportunity to modify the network ports with ‘special’ effects.
In my case I need to connect both X1 en X2 on one switch (layer 2) and let then act as one port. Using the bind option it could cause a network storm, but there is also the bound option and so that X1 and X2 will be in double or backup mode.
I tried this settings:
/etc/systemd/network/30-bond0.netdev
[NetDev]
Name=bond0
Kind=bond
[Bond]
Mode=active-backup
/etc/systemd/network/30-bond0.network
[Match]
Name=bond0
[Network]
Address=192.168.100.10/24
Gateway=192.168.100.1
both /etc/systemd/network/10-eth0.network and /etc/systemd/network/10-eth1.network
[Match]
Name=eth0 # (and eth1 for the second file)
[Network]
Bond=bond0
Unfortunately this caused the controller go into a faulty state. The X2 port was still active and the WBM page is accessible with this message: “Failed to query device data!”
Conclusion; this is probably not allowed by plcNext as it loses control over X1 an X2.
Now I wonder is there way to achieve what I want?
Any suggestion is much appreciated.
Kind regards, Wilco