cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2042
Views
0
Helpful
2
Replies

SYSTEM JUMBO MTU 9216 on Nexus 7706

thespecialyst
Level 1
Level 1

Hi All,

Nexus 7706 - Ver 7.3D

Does anyone know the default command system jumbo mtu 9216 is enough to allow jumbo mtu frames on fabricpath interfaces ? or Dow we need to configure mtu 9216 on Layer two interfaces as well ?

As per this document

http://www.cisco.com/c/en/us/td/docs/switches/datacenter/sw/nx-os/interfaces/configuration/guide/b-Cisco-Nexus-7000-Series-NX-OS-Interfaces-Configuration-Guide-Book.pdf

Page 18, the default jumbo mtu is enough to allow higher size frame on Layer 2 links

Thanks

2 Replies 2

Manish Gogna
Cisco Employee
Cisco Employee

Hi,

You can configure and verify it as per the following

http://www.cisco.com/c/en/us/support/docs/switches/nexus-5000-series-switches/112080-config-mtu-nexus.html

Manish

saif ullah
Level 1
Level 1

The process of configuring Jumbo Frames may vary depending on the Nexus series switch model. Below are the steps to configure Jumbo Frames on Cisco Nexus 9000, 7000, and 5000 series switches:

Nexus 9000 Series

The Nexus 9000 series switch supports a system jumbo MTU. Use the `system jumbo MTU` command to set it:

switch# configure terminal
switch(config)# system jumbomtu 9216
switch(config)# exit

After that, you can configure the Jumbo MTU on individual interfaces if needed.

switch# configure terminal
switch(config)# interface Ethernet1/1
switch(config-if)# mtu 9216
switch(config-if)# exit

Nexus 7000 Series

For the Nexus 7000 series, you need to create a QoS class policy for the jumbo frames and then apply it to the relevant interfaces:

switch# configure terminal
switch(config)# policy-map type network-qos jumbo
switch(config-pmap-nq)# class type network-qos class-default
switch(config-pmap-c-nq)# mtu 9216
switch(config-pmap-c-nq)# exit
switch(config-pmap-nq)# exit
switch(config)# system qos
switch(config-sys-qos)# service-policy type network-qos jumbo

Then, use the policy on the interface:

switch(config)# interface Ethernet1/1
switch(config-if)# service-policy type qos input jumbo
switch(config-if)# exit

Nexus 5000 Series

For the Nexus 5000 series, you can set the system jumbo MTU:

switch# configure terminal
switch(config)# policy-map type network-qos jumbo
switch(config-pmap-nq)# class type network-qos class-default
switch(config-pmap-c-nq)# mtu 9216
switch(config-pmap-c-nq)# exit
switch(config)# system qos
switch(config-sys-qos)# service-policy type network-qos jumbo