Skip to content

Commit

Permalink
doc: Additional documentation updates for Geneve.
Browse files Browse the repository at this point in the history
Signed-off-by: Jesse Gross <[email protected]>
  • Loading branch information
jessegross committed Jun 21, 2014
1 parent c1fc141 commit 271e6bc
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions INSTALL.RHEL
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ RHEL. On RHEL 5, the default RPM source directory is

A RHEL host has default firewall rules that prevent any Open vSwitch tunnel
traffic from passing through. If a user configures Open vSwitch tunnels like
GRE, VXLAN, LISP etc., they will either have to manually add iptables firewall
rules to allow the tunnel traffic or add it through a startup script (Please
refer to the "enable-protocol" command in the ovs-ctl(8) manpage).
Geneve, GRE, VXLAN, LISP etc., they will either have to manually add iptables
firewall rules to allow the tunnel traffic or add it through a startup script
(Please refer to the "enable-protocol" command in the ovs-ctl(8) manpage).

Red Hat Network Scripts Integration
-----------------------------------
Expand Down
2 changes: 1 addition & 1 deletion INSTALL.XenServer
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ of test-controller(8) for more information on this topic.
* The Open vSwitch startup script automatically adds a firewall rule
to allow GRE traffic. This rule is needed for the XenServer feature
called "Cross-Host Internal Networks" (CHIN) that uses GRE. If a user
configures tunnels other than GRE (ex: VXLAN, LISP), they will have
configures tunnels other than GRE (ex: Geneve, VXLAN, LISP), they will have
to either manually add a iptables firewall rule to allow the tunnel traffic
or add it through a startup script (Please refer to the "enable-protocol"
command in the ovs-ctl(8) manpage).
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ vSwitch supports the following features:
* NIC bonding with or without LACP on upstream switch
* NetFlow, sFlow(R), and mirroring for increased visibility
* QoS (Quality of Service) configuration, plus policing
* GRE, GRE over IPSEC, VXLAN, and LISP tunneling
* Geneve, GRE, GRE over IPSEC, VXLAN, and LISP tunneling
* 802.1ag connectivity fault management
* OpenFlow 1.0 plus numerous extensions
* Transactional configuration database with C and Python bindings
Expand Down
6 changes: 3 additions & 3 deletions include/openflow/nicira-ext.h
Original file line number Diff line number Diff line change
Expand Up @@ -1608,9 +1608,9 @@ OFP_ASSERT(sizeof(struct nx_action_output_reg) == 24);

/* Tunnel ID.
*
* For a packet received via a GRE, VXLAN or LISP tunnel including a (32-bit)
* key, the key is stored in the low 32-bits and the high bits are zeroed. For
* other packets, the value is 0.
* For a packet received via a Geneve, GRE, VXLAN or LISP tunnel including a
* key less than 64 bits, the key is stored in the low bits and the high bits
* are zeroed. For other packets, the value is 0.
*
* All zero bits, for packets not received via a keyed tunnel.
*
Expand Down
16 changes: 8 additions & 8 deletions vswitchd/vswitch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1558,9 +1558,9 @@
key="in_key"/> at all.
</li>
<li>
A positive 24-bit (for VXLAN and LISP), 32-bit (for GRE) or 64-bit
(for GRE64) number. The tunnel receives only packets with the
specified key.
A positive 24-bit (for Geneve, VXLAN, and LISP), 32-bit (for GRE)
or 64-bit (for GRE64) number. The tunnel receives only packets
with the specified key.
</li>
<li>
The word <code>flow</code>. The tunnel accepts packets with any
Expand All @@ -1585,9 +1585,9 @@
key="out_key"/> at all.
</li>
<li>
A positive 24-bit (for VXLAN and LISP), 32-bit (for GRE) or 64-bit
(for GRE64) number. Packets sent through the tunnel will have the
specified key.
A positive 24-bit (for Geneve, VXLAN and LISP), 32-bit (for GRE) or
64-bit (for GRE64) number. Packets sent through the tunnel will
have the specified key.
</li>
<li>
The word <code>flow</code>. Packets sent through the tunnel will
Expand Down Expand Up @@ -1790,8 +1790,8 @@
</column>

<column name="status" key="tunnel_egress_iface">
Egress interface for tunnels. Currently only relevant for GRE tunnels
On Linux systems, this column will show the name of the interface
Egress interface for tunnels. Currently only relevant for tunnels
on Linux systems, this column will show the name of the interface
which is responsible for routing traffic destined for the configured
<ref column="options" key="remote_ip"/>. This could be an internal
interface such as a bridge port.
Expand Down

0 comments on commit 271e6bc

Please sign in to comment.