I have this experience on slow switch reconnection. This solved my problem:
add from ssh shell: /usr/local/etc/rc.syshook.d/start/99-route-fix:
(do not forget chmod +x 99-route-fix !!!)
#!/bin/sh
# Wait 10 seconds to ensure the parent interface and VLANs are fully stable
sleep 10
# This is the actual backend script that reloads all routing logic,other as "configctl route reload" or "configctl interface reconfigure" did not help
/usr/local/etc/rc.routing_configure
It seems to be bug on 26.1.4? I thing routes must be rebuild after initializing of slowest one interface.
add from ssh shell: /usr/local/etc/rc.syshook.d/start/99-route-fix:
(do not forget chmod +x 99-route-fix !!!)
#!/bin/sh
# Wait 10 seconds to ensure the parent interface and VLANs are fully stable
sleep 10
# This is the actual backend script that reloads all routing logic,other as "configctl route reload" or "configctl interface reconfigure" did not help
/usr/local/etc/rc.routing_configure
It seems to be bug on 26.1.4? I thing routes must be rebuild after initializing of slowest one interface.
"