VXLAN over NVIDIA

Supported only on SP2 and SP3 NVIDIA devices

Tunnel Configuration

Reference

Command

tunnel <tunnelname> no tunnel <tunnelname>

Description

Create tunnel

Parameters

Tunnelname

Mode

CONFIG

Example

pbnoscli(config)# tunnel tunnel1
pbnoscli(config)# no tunnel tunnel1

Tunnel Attributes

Using this command, you can configure the attributes of the tunnel. Gateway is provisioned only when the nodes are not directly connected

Note: Updation of the tunnel is not supported. The tunnel must be deleted and re-configured for any change

Reference

Command

[no] tunnel <tunnel-name>

Description

Create tunnel

Parameters

ingress-interface: Configure tunnel ports

source-ip : Source IP address destination-ip : Destination IP address

gateway : Gateway IPv4 Address

vni : VXLAN network identifier[ range: 4096 - 16777215]

source-port : Tunnel Source Port vlan-tagging : Tunnel VLAN Tagging

Mode

TUNNEL

Example

tunnel tunnel1
ingress-interface Ethernet64/1
source-ip 10.10.10.1
gateway 10.10.10.10
destination-ip 10.10.10.2
vni 4098
vlan-tagging disable
decap-vxlan enable
!
flow flow1
enable
network-ports Ethernet63/1
tool-ports tunnel1
rule 1 permit match-all counters enable
!

pbnoscli# show vxlan tunnel all

===============================================
VXLAN Tunnel - tunnel1
===============================================
Tunnel Port       : Ethernet64/1
Source IP         : 10.10.10.1
Destination IP    : 10.10.10.2
Source MAC        : 1c:34:da:23:77:00
Gateway IP        : 10.10.10.10
Destination MAC   : 00:12:01:00:00:01
VN-ID             : 4098
Vlan Tagging      : false
Tunnel Status     : UP

Flow based Encap Configuration

You can set the rules for the VxLAN Encap using flow. Here the tool port must be the tunnel name created using tunnel config command.

Reference

Command

flow flowname

network-ports Ethernet4/1

tool-ports tunnel1

rule 1 permit match all

Description

Add flow

Parameters

description Configure description for flow enable Enable the flow

end Exit to Exec Prompt

exit Exit from the Current Prompt from Configure network or TAP ports

no no form

rule Configure rule

to Configure network tool or analyzer ports

Mode

FLOW

Example

pbnoscli(config)# flow flow1
pbnoscli(config-flow-flow1)# network-ports Ethernet52/1
pbnoscli(config-flow-flow1)# tool-ports tunnel1
pbnoscli(config-flow-flow1)# rule 1 permit match-all
pbnoscli(config-flow-flow1)# end
pbnoscli#

Flow-Based Decap Configuration

You can set the rules for the VxLAN Decap using flow.. Here the Network port must be the tunnel name created using tunnel config command.

Reference

Command

flow flowname

network-ports tunnel1

tool-ports Ethernet10/1

rule 1 permit match all

Description

Add flow

Parameters

description Configure description for flow enable Enable the flow

end Exit to Exec Prompt

exit Exit from the Current Prompt from Configure network or TAP ports

no no form

rule Configure rule

to Configure network tool or analyzer ports

Mode

FLOW

Example

pbnoscli(config)# flow flow1
pbnoscli(config-flow-flow1)# network-ports tunnel1
pbnoscli(config-flow-flow1)# tool-ports Ethernet10/1
pbnoscli(config-flow-flow1)# rule 1 permit match-all counters enable
pbnoscli(config-flow-flow1)# end
pbnoscli#

Show VXLAN Tunnel Command

You can display the Vxlan tunnel configurations using this command.

Reference

Command

vxlan ("VxLAN Tunnel") tunnel ("Tunnel Information") (all ("Displays all VXLAN Tunnel configuration") | ("Displays specific VXLAN Tunnel configuration") <tunnelid:string length[10]> ("Tunnel Name")),

Description

Displays VXLAN tunnel

Example

pbnoscli# show vxlan tunnel all

===============================================
VXLAN Tunnel - tunnel1
===============================================
Tunnel Port       : Ethernet64/1
Source IP         : 10.10.10.1
Destination IP    : 10.10.10.2
Source MAC        : 1c:34:da:23:77:00
Gateway IP        : 10.10.10.10
Destination MAC   : 00:12:01:00:00:01
VN-ID             : 4098
Vlan Tagging      : false
Tunnel Status     : UP

Last updated