big problem about freebsd 15 bridge ...

dear all:
i have used freebsd15 as host ... one physical network card re0 ... below was my configuration ..

#for ipv4 only LAN
21 │ ifconfig_re0="up"
22 │ create_args_bridge5="addm re0 name re0lan"
28 │ cloned_interfaces="bridge5"
29 │
30 │ #for home..
31 │ ifconfig_re0lan="inet 10.8.1.200 netmask 255.255.255.0"
defaultrouter="10.8.1.253"

ok. #vm switch create -t manual -b re0lan public ...

#vm switch list
NAME TYPE IFACE ADDRESS PRIVATE MTU VLAN PORTS
public manual re0lan n/a no n/a n/a n/a

#vm create -t freebsd-zvol -s 10gb -m 2gb fb15
#vm start fb15

ok. when fb15 start or stop , the bridge ping defaultrouter 10.8.1.253 will lost packages. why ? please help me .thanks..... when i use jail start and stop attach this bridge . got some problem................. i think that was freebsd15 bridge big issue... please help me. thanks.
 
I don't know anything about bridges, but are you saying this is a configuration that used to work e.g. on FreeBSD 14 and now doesn't work after an upgrade?

Or something completely new you are trying on FreeBSD 15 and it is not doing what you expect?
 
It's quite difficult to diagnose what's going on in your system. I did notice in my system (which may have nothing to do with yours) that I need -stp when making changes to the bridge because it would bring my Cisco switch down for a little bit while running the spanning tree protocol.
 
hi . richardtoohey2 , codeedog :
i have build fresh freebsd15 host. then use vm-bhyve create some vms . the host only have one physical network card and create a custom bridge . configure ip to this bridge . add physical network card as memeber . physical network card don't configure anything. when i create jail ,or vms and start it or stop it. the bridge will lost some packages to the gateway.. thanks.
 
Try this:

cloned_interfaces="bridge5"
ifconfig_re0="up"
ifconfig_bridge5="inet 10.8.1.200 netmask 255.255.255.0 addm re0 up"
defaultrouter="10.8.1.253"
 
Back
Top