Created
March 15, 2016 20:39
-
-
Save dlundquist/194103dc387c4b573bcb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Create VTEP | |
ip link add vxlan-8 type vxlan id 8 | |
# Append duplicate FDB entries | |
bridge fdb append 00:00:00:00:00:00 dev vxlan-8 dst 192.0.2.10 | |
bridge fdb append 00:00:00:00:00:00 dev vxlan-8 dst 192.0.2.10 | |
# Verify only one was created | |
bridge fdb show dev vxlan-8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment