| From | Sent On | Attachments |
|---|---|---|
| basi...@wipro.com | Nov 24, 2011 4:09 am | |
| Dave Shield | Nov 24, 2011 4:55 am | |
| basi...@wipro.com | Nov 24, 2011 6:15 am | |
| Dave Shield | Nov 24, 2011 6:28 am | |
| Dave Shield | Nov 24, 2011 6:34 am | |
| basi...@wipro.com | Nov 24, 2011 9:00 pm | |
| Magnus Fromreide | Nov 24, 2011 10:28 pm | |
| basi...@wipro.com | Nov 24, 2011 10:54 pm | |
| basi...@wipro.com | Nov 25, 2011 12:55 am |
| Subject: | RE: Setting IP address through SNMP | |
|---|---|---|
| From: | basi...@wipro.com (basi...@wipro.com) | |
| Date: | Nov 24, 2011 9:00:58 pm | |
| List: | net.sourceforge.lists.net-snmp-coders | |
Hi,
OK I understand that these two values to be set in a single set command. But it still gives the bad value name error.
[root@localhost ~]# snmpset -v 2c -c public 10.20.20.20 ipAddressIfIndex.ipv4.4.10.10.10.30 = 3 ipAddressStatus.ipv4.4.10.10.10.30 = createAndGo ipAddressStatus.ipv4.4.10.10.10.30: Bad value name (createAndGo)
And I tried with the integer equivalent of createAndGo (4) also
[root@localhost ~]# snmpset -v 2c -c public 10.20.20.20 ipAddressIfIndex.ipv4.4.10.10.10.30 = 3 ipAddressStatus.ipv4.4.10.10.10.30 = 4 Error in packet. Reason: wrongValue (The set value is illegal or unsupported in some way) Failed object: IP-MIB::ipAddressStatus.ipv4."10.10.10.30"
And destroy is also giving bad value name error.
Am I again doing wrong?
Thanks and regards, Basil Joseph.
-----Original Message----- From: dave...@googlemail.com [mailto:dave...@googlemail.com] On Behalf Of Dave Shield Sent: 24 November 2011 19:59 To: Basil Joseph (WT01 - GMT-Telecom Equipment) Cc: net-...@lists.sourceforge.net Subject: Re: Setting IP address through SNMP
On 24 November 2011 14:15, <basi...@wipro.com> wrote:
# snmpget -v 2c -c public 10.20.20.20 ipAddressIfIndex.ipv4.4.10.10.10.10 IP-MIB::ipAddressIfIndex.ipv4."10.10.10.10" = INTEGER: 3
OK - so the ifIndex of the interface with this address is 3
And I believe this is the value to be used in the next command.
Correct
# snmpset -v 2c -c public 10.20.20.20 ipAddressIfIndex.ipv4.4.10.10.10.30 = 3 # snmpset -v 2c -c public 10.20.20.20 ipAddressStatus.ipv4.4.10.10.10.30 = createAndGo
No - those two assignments should be included within the same SET request. You are saying: "please create a row with index IPv4:10.10.10.30, and set the ifIndex value to 3"
You can't set the ifIndex value on its own, since the row doesn't yet exist. You can't create the row (and make it active) on its own, since the agent doesn't know which interface should have this address.
The agent needs *both* bits of information in order to do this.
Dave
------------------------------------------------------------------------------ All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudulent activity, and more. Splunk takes this data and makes sense of it. IT sense. And common sense. http://p.sf.net/sfu/splunk-novd2d
_______________________________________________ Net-snmp-coders mailing list Net-...@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/net-snmp-coders





