Hi FreeBSD community!
After upgrade from 13.0-RELEASE to 13.1-RELEASE can add just
Interfaces:
Now if add tap, then try to add vxlan:
error:
or if add vxlan, then try to add tap:
error:
Tried to equal mtu to 1500 on all interfaces but error the same.
Any ideas?
# uname -a
FreeBSD <hostname> 13.1-RELEASE-p3 FreeBSD 13.1-RELEASE-p3 GENERIC amd64
After upgrade from 13.0-RELEASE to 13.1-RELEASE can add just
vxlan
or just tap
to bridge
, but not both.Interfaces:
# ifconfig vxlan101
vxlan101: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1450
options=80020<JUMBO_MTU,LINKSTATE>
ether 58:9c:fc:10:2d:14
groups: vxlan
vxlan vni 101 local <IP>:<PORT> remote <IP>:<PORT>
media: Ethernet autoselect (autoselect <full-duplex>)
status: active
nd6 options=9<PERFORMNUD,IFDISABLED>
# ifconfig tap101
tap101: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=80000<LINKSTATE>
ether 58:9c:fc:10:0f:3d
groups: tap
media: Ethernet autoselect
status: active
nd6 options=9<PERFORMNUD,IFDISABLED>
Opened by PID 6767
# ifconfig bridge101
bridge101: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
ether 58:9c:fc:10:fd:24
id 00:00:00:00:00:00 priority 32768 hellotime 2 fwddelay 15
maxage 20 holdcnt 6 proto rstp maxaddr 2000 timeout 1200
root id 00:00:00:00:00:00 priority 32768 ifcost 0 port 0
groups: bridge
nd6 options=9<PERFORMNUD,IFDISABLED>
Now if add tap, then try to add vxlan:
# ifconfig bridge101 addm tap101
# ifconfig bridge101 addm vxlan101
error:
ifconfig: BRDGADD vxlan101: Invalid argument
or if add vxlan, then try to add tap:
# ifconfig bridge101 addm vxlan101
# ifconfig bridge101 addm tap101
error:
ifconfig: BRDGADD tap101: Invalid argument
Tried to equal mtu to 1500 on all interfaces but error the same.
Any ideas?