https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=264883
Kristof Provost <k...@freebsd.org> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |k...@freebsd.org --- Comment #1 from Kristof Provost <k...@freebsd.org> --- I suspect the problem here is one of MTU. if_bridge sets its MTU to that of the first interface added to it. That's either 9001 (ena) or 1500 (epair). When you try to add the second interface it the MTU does not match and the interface is not added. There should be a log in `dmesg` saying 'bridge0: invalid MTU: 9001(ena0) != 1500' or something like it. You should be able to fix that by changing the ena or epair MTU prior to adding it to the bridge. You should also know that the behaviour of if_bridge has been changed in 14, where it will change the MTU of newly added members, rather than rejecting them. -- You are receiving this mail because: You are the assignee for the bug.