cancel
Showing results for 
Search instead for 
Did you mean: 

SNMP set giving undo failed error on the icx switch

amar_deep
New Contributor III
Hi,

I want to untagg the port 2 in VLAN 1050. Initially, it is untagged in VLAN 1025.

                
Request to set the row as “untagged” (untagg port 2 in VLAN 1050)

print_r(snmp2_set('HOST', 'test12345', '1.3.6.1.4.1.1991.1.1.3.2.6.1.4.1050.2', 'i', '2'));

Gettting error: Warning:  snmp2_set(): Error in packet at 'SNMPv2-SMI::enterprises.1991.1.1.3.2.6.1.3.1050.2': undoFailed 

I have also tried using the following SNMP OID:

print_r(snmp2_set('HOST','test1234','dot1qPvid.2','u','1050'));
print_r(snmp2_set('HOST','test1234','dot1qVlanStaticUntaggedPorts.1050','x','400000000000000000000000'));

The above calls are also failing and I am getting a no response.

Any suggestions?
11 REPLIES 11

Hi Denis,

Can you  try removing the initial association of the vlan? In my case also, I need to remove the untagged  port from the vlan otherwise I was getting the same error.

Thanks

Hi Amar,

You absolutely right. After removing untagged port it's started to work
Thanks