
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2015 12:50 AM
I am trying to enable jumbo frame in an interface with the following commands. But got an error "ERROR: Got invalid command attr: 0x3033002e"
policy-map type network-qos jumbo
class type network-qos class-default
mtu 9216
int Eth1/7
service-policy type network-qos jumbo
ERROR: Got invalid command attr: 0x3033002e
What may be the cause behind this?
Solved! Go to Solution.
- Labels:
-
Server Networking
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2015 06:51 AM
You cannot configure MTU per interface on the Nexus 5k which is what you are doing currently. This is why you are getting the error.
You have to apply the policy globally using the below config
!--- You can enable the Jumbo MTU !--- for the whole switch by setting the MTU !--- to its maximum size (9216 bytes) in !--- the policy map for the default !--- Ethernet system class (class-default). 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
link:
http://www.cisco.com/c/en/us/support/docs/switches/nexus-5000-series-switches/112080-config-mtu-nexus.html
-Raj
P.S: Rate threads that helps as it saves time for your peers with similar issues.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2015 06:51 AM
You cannot configure MTU per interface on the Nexus 5k which is what you are doing currently. This is why you are getting the error.
You have to apply the policy globally using the below config
!--- You can enable the Jumbo MTU !--- for the whole switch by setting the MTU !--- to its maximum size (9216 bytes) in !--- the policy map for the default !--- Ethernet system class (class-default). 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
link:
http://www.cisco.com/c/en/us/support/docs/switches/nexus-5000-series-switches/112080-config-mtu-nexus.html
-Raj
P.S: Rate threads that helps as it saves time for your peers with similar issues.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-21-2015 08:24 PM
Yeah.. That is correct.
I have learned that after posting the discussion.
Thanks for the reply.
