(no commit message)
[ikiwiki.git] / docs / vxlan / index.mdwn
1 [[!meta title="VXLAN Documentation"]]
2 [[!meta robots="index, follow"]]
3
4
5 bycn82
6
7 15 July, 2016
8
9 ---
10
11 [[!toc  levels=3]]
12
13
14 # Introduction
15 # Specification
16 [RFC7348](https://tools.ietf.org/html/rfc7348)
17 # Examples
18 ## Point to Point Example
19     ifconfig em0 mtu 9000
20     ifconfig vxlan create vxlanid 42 vxlanlocal 192.168.100.1 vxlanremote 192.168.100.2 inet 10.10.99.1/24
21     ifconfig vxlan create vxlanid 42 vxlanlocal 192.168.100.2 vxlanremote 192.168.100.1 inet 10.10.99.2/24
22 ## Multicast Example
23     route add -net 224/8 -interface em0
24     ifconfig vxlan create vxlanid 42 vxlanlocal 192.168.100.1 vxlangroup 224.0.2.6 vxlandev em0 inet 10.10.99.1/24
25     ifconfig vxlan create vxlanid 42 vxlanlocal 192.168.100.2 vxlangroup 224.0.2.6 vxlandev em0 inet 10.10.99.2/24 up
26     
27 # Future Work