Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
09-04-2005, 07:11 AM
|
#1
|
Senior Member
Registered: Jan 2003
Location: Aachen
Distribution: Opensuse 11.2 (nice and steady)
Posts: 2,203
Rep:
|
snmp question
Hi
Do u have in mind any oid that maps the interface with an ip address?
|
|
|
09-04-2005, 01:55 PM
|
#2
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
just use snmpwalk to read the available oid in the interface branch.
|
|
|
09-04-2005, 04:58 PM
|
#3
|
Senior Member
Registered: Jan 2003
Location: Aachen
Distribution: Opensuse 11.2 (nice and steady)
Posts: 2,203
Original Poster
Rep:
|
In the interface branch there is no ipaddress that i need.. Do u have anything else in mind?
|
|
|
09-05-2005, 04:13 AM
|
#4
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
well search the whole lot then.. it's not tricky just to grep it and look around the output a little...
try IP-MIB::ipAdEntIfIndex (.1.3.6.1.2.1.4.20.1.2)
|
|
|
09-05-2005, 09:10 AM
|
#5
|
Senior Member
Registered: Jan 2003
Location: Aachen
Distribution: Opensuse 11.2 (nice and steady)
Posts: 2,203
Original Poster
Rep:
|
Thx a lot
What make things strange is the fact that the command
snmpwalk -v1 -c public 192.168.1.10 .1.3.6.1.2.1.4.20.1.2
IP-MIB::ipAdEntIfIndex.127.0.0.1 = INTEGER: 1
IP-MIB::ipAdEntIfIndex.192.168.0.1 = INTEGER: 3
IP-MIB::ipAdEntIfIndex.192.168.1.10 = INTEGER: 2
returns 3 entries.. I have some c code that queries the snmp server using the oid and stores the return value to a variable.. The problem i think is how to retrieve the ip address when the specific oids return 1 ,3 and 2 accordingly
|
|
|
09-05-2005, 05:47 PM
|
#6
|
Member
Registered: Sep 2004
Location: Texas, USA
Distribution: Fedora
Posts: 620
Rep:
|
Walking a MIB is not easy.
If I were in your shoes, I would first walk the "if" portion of the mib and find:
1) Number of bound interfaces - IF-MIB::ifNumber.0
2) Setup a loop to walk the "if" MIB like "for ( i =1, IF-MIB::ifNumber.0, i++)"
3) Loop the "if" MIB for the physical interface name you are looking for (like eth0) and find the corresponding "if" index number. Should be 1, 2 or 3 using your example.
4) Now search the "ip" portion of the MIB that corresponds to the physical index number.
BTW: I always add -Ofn to snmpwalk/snmpget commands.
Good Luck
|
|
|
All times are GMT -5. The time now is 12:33 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|