Unsolved
This post is more than 5 years old
19 Posts
0
21559
March 31st, 2006 15:00
SNMP tables on 3448
I’m trying to set up a file copy on the 3448 using SNMP, but am having problems. I create the row in the rlCopyTable, and I seem to be successful in setting the index. When I try to set one of the values for the file copy, the row seems to have disappeared. Am I missing something in trying to set up a table entry, or is there something wrong with this part of SNMP management of this switch. I have software rev 1.0.0.112, boot rev 1.1.0.12, hardware 00.00.01 on the switch. Thanks
0 events found
No Events found!


DELL-Cuong N.
1K Posts
0
March 31st, 2006 15:00
Can you fully describe your procedure - the steps you configure in SNMP exactly?
To use this table you must use the "rowstatus" mechanism to "create" a row in this table. You can't just set the parameters in the row to any index until you create it. You must either use the "create&wait" mechanism which allows you to create the row then setup the parameters then activate the row or you must use "create&go" which requires you to setup everything in a single varbind. This mechanism for "rowstatus" is a common standard mechanism used in SNMP - please review information available online (try google search) if you are not familiar with this mechanism.
Cuong.
etnavy
19 Posts
0
April 3rd, 2006 10:00
DELL-Cuong N.
1K Posts
0
April 3rd, 2006 12:00
That's not the correct OID for the 3448 MIB. Please reload the correct MIB for this switch and try again. The base for this MIB should be .1.3.6.1.4.1.674.3000.....
Cuong.
etnavy
19 Posts
0
April 3rd, 2006 16:00
etnavy
19 Posts
0
April 3rd, 2006 17:00
Here's the part from dell_Vendor.mib that looks like a problem
powerConnect3000MIB OBJECT IDENTIFIER ::= { dellLan 3000 }
dell-VendorMIBObjects OBJECT IDENTIFIER ::= { powerConnect3000MIB 1 }
dellVendorNotifications OBJECT IDENTIFIER ::= { powerConnect3000MIB 2 }
dellStandard OBJECT IDENTIFIER ::= { dellLan 5000 }
-- Dell common and device independent MIB objects.
dellCommon OBJECT IDENTIFIER ::= { dellStandard 1 }
-- Dell extension MIB objects for specific technology or device.
dellExtension OBJECT IDENTIFIER ::= { dellStandard 2 }
rndMib OBJECT IDENTIFIER ::= { dellExtension 89 }
and from apollo.txt
-- Some MIB compilers require that the following 7 lines which define the path
-- to RND MIB are commented out:
-- mib OBJECT IDENTIFIER ::= { mgmt 1 }
-- directory OBJECT IDENTIFIER ::= { internet 1 }
-- experimental OBJECT IDENTIFIER ::= { internet 3 }
-- private OBJECT IDENTIFIER ::= { internet 4 }
-- enterprises OBJECT IDENTIFIER ::= { private 1 }
rnd OBJECT IDENTIFIER ::= { dellExtension 89 }
with RLcopy mapping to rnd
DELL-Cuong N.
1K Posts
0
April 3rd, 2006 17:00
Oops...I got the wrong OID. It should be .1.3.6.1.4.1.674.10895.3000... I also got my MIB from the web and it is correct for me. Make sure you downloaded the one for 34xx switches.
cuong.
DELL-Cuong N.
1K Posts
0
April 3rd, 2006 20:00
I just looked at the MIB again and you are correct about the OID. My mistake. The top of the rlCopyTable is .1.3.6.1.4.1.674.10895.5000.2.89.87.2.
I also just re-run my test script for downloading the running-config file from the switch to a remote TFTP server and also to copy the active image to a remote server using SNMP and it works for me.
This is basically what my script does - it use a single SNMP set request using the "rowstatus" create&go method. The script specifies all the following parameters in the request (there are a few others which I didn't use in this script - see the MIB for more info on the other variables):
Note that the copy succeed really fast when copying a configuration file and when it completes the row is removed so if you want history save it in the history table. If you copy an image then the row may stay around awhile so you can poll status while the copy executes.
Anyway, my script works so this table is fine. The OID you had was correct - my mistake - I was hand creating the OID (I don't use browser - hand scripting using shell scripts :-)) manually and made a mistake in the encoding.
Cuong.
etnavy
19 Posts
0
April 4th, 2006 12:00
DELL-Cuong N.
1K Posts
0
April 4th, 2006 13:00
Mithrilhall
2 Intern
•
128 Posts
0
November 3rd, 2006 14:00
Mithrilhall
2 Intern
•
128 Posts
0
November 10th, 2006 17:00
Could you post an example on how to do this via snmpset for either the 3348 or 3448 series switches, I've had no luck getting either to work?
Thanks
Mithrilhall
2 Intern
•
128 Posts
0
November 13th, 2006 14:00