You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello i am writing a program to simulate this commands (ip addresses and ids are arbitrary):
ip link add vxlan0 type vxlan id 42 dev eth1 dstport 0
bridge fdb append to 00:00:00:00:00:00 dst 192.168.123.12 dev vxlan0
ip a a dev vxlan0 10.47.252.1/22
ip l set dev vxlan0 up
ip r add 10.32.4.0/22 via 10.47.252.2
The second line
bridge fdb append to 00:00:00:00:00:00 dst 192.168.123.12 dev vxlan0
Hello i am writing a program to simulate this commands (ip addresses and ids are arbitrary):
The second line
is completed by
https://gist.github.com/kazimsarikaya/0a1878bcfa2697d041cf003d3c926864
The main append is at line 67. inside if (disabled by false) I am using netlink.NeighAppend method. At else part I am using bridge command.
Else part works as expected. However if part cannot for. If I enable (I dont know it is correct) AF_BRIDGE it gives Operation not supported.
The text was updated successfully, but these errors were encountered: