Networking :: Detect SNMP Object Identifiers Of A Device?

May 30, 2011

I have a pair of special radio-devices which support SNMP, but the problem is, that if I snmpwalk those devices, I only see few generic values(sysContact, sysDescr, sysServices etc) and nothing else. Most likely I need MIB files so NMS could know what values can be asked from the radio devices? If yes, is there a possibility to get all the OID's device supports without MIB files as those devices have been out or production for years?

View 2 Replies


ADVERTISEMENT

Ubuntu Networking :: SNMP Error Message - Unknown Object Identifier

Mar 25, 2011

In both CentOS 5.5 and FreeBSD 7.4 when I use
Code:
snmpget -v 1 -c public windows_host system.sysDescr.0
I get the remote windows machine system description just fine. But not in ubuntu.
Searching snmp-net FAQ for the erroe message "Unknown Object Identifier", I got this to work around
Code:
snmpget -v 1 -c public 127.0.0.1 SNMPv2-MIB::system.sysDescr.0
But it not worked either.. Searching "MIB" using apt-file search, I installed "snmp-mibs-downloader", and now
Code:
snmpget -v 1 -c public 127.0.0.1 SNMPv2-MIB::system.sysDescr.0
works.. but
Code:
snmpget -v 1 -c public windows_host system.sysDescr.0
still breaks..
Why it works in CentOS and FreeBSD but not in Ubuntu?

View 2 Replies View Related

CentOS 5 Networking :: Configuring SNMP To Send Traps To SNMP Server?

Aug 12, 2010

I'm trying to configure SNMP service to send traps to SNMP server. I've installed net-snmp-utils, now I need to configure the "snmpd.conf" file...

View 2 Replies View Related

Ubuntu Networking :: 10.04 Can't Detect The Wireless Device?

Jun 24, 2011

My computer is Dell Inspiron N4020.And after I installed the Ubuntu 10.04 successfully,a problem occured:No wireless device appear nor the wireless signal

View 1 Replies View Related

Fedora Installation :: Device Driver For Usb To Detect Device?

Sep 19, 2009

I am currently using fedora 11 kernel 2.6.29 version, i wanted to write device driver for usb to detect my own device. My project is radio with computer. My fm radio get connected to usb port so i need to write h/w interfacing program.

View 1 Replies View Related

Fedora Hardware :: Detect The Usb Device When On Cli Mode?

Oct 31, 2010

How I do detect the usb device when I'm on cli mode? This is possible or not?

View 2 Replies View Related

Ubuntu :: Cannot Detect Network Device When Using Libpcap

May 27, 2011

I use libpcap to write a program to detect network device in Ubuntu but not sucess. The result is no suitable device found. How many reasons are there for that? The code i used is the main user page.

[code]
#define HAVE_REMOTE
#define WPCAP
#include <pcap.h>
#include <stdlib.h>
#include <sys/socket.h>

[Code]....

View 4 Replies View Related

Ubuntu :: Detect And Install A Mic Device Driver?

Jan 8, 2010

how to detect and install a mic device driver? i only plug and play the mic in xp.

View 1 Replies View Related

Ubuntu :: Unable To Detect WMID Device

Apr 22, 2011

So I bought an eMachine e250 from a friend of mine, and installed Backtrack on it. That worked fine, until I realised that I didn't like KDE, and decided to get the gnome-based Gnacktrack (based on Ubuntu 10.10, so I'm fairly sure they work the same). I also have a harddrive from an old laptop that I've scrapped with Ubuntu 10.4 that I run in the laptop, and fpr some bizzare reason, neither operating system is able to detect the wireless card. It worked fine with Backtrack (based on Noppix I believe), and I'm curious as to why the wireless card hates Ubuntu so much. I know that it's unable to detect the wireless card because on start-up it says "Unable to detect WMID device". I even added the wireless card from my scrapped laptop to the laptop, and that NIC was detected just fine. (though I can't use it because the antenna won't reach the slot for the secondary NIC)

View 6 Replies View Related

General :: Detect The Scsi Device Without Restarting?

Mar 25, 2010

I am attaching a LTO-3 tape drivce into my RHEL5 linux machine. Every time i used to restart my machine to detect the tape drive is there any way to rescan the buses to detect the newly attached scsi devices. In solaris "devfsadm" and "iostat" is there. I need the same kind of thing in linux.

View 2 Replies View Related

Ubuntu Multimedia :: Error - Object Reference Not Sent To An Instance Of An Object

Mar 6, 2010

I've been using the PPA version of banshee, and I got this error - just wondering if anyone else has it too! I'm able to play a song, but when the song finishes and the next one starts I get this error: Banshee Encountered a Fatal Error Object reference not sent to an instance of an object Error details:

Code:
An unhandled exception was thrown: Object reference not set to an instance of an object
at Hyena.Gui.Theming.GtkTheme.GetCairoTextMidColor (Gtk.Widget) <0x00017>
at Banshee.NotificationArea.NotificationAreaService.get_TextLightColor () <0x0002f>
at Banshee.NotificationArea.NotificationAreaService.MarkupFormat (string,string[]) <0x00043>
at Banshee.NotificationArea.NotificationAreaService.GetByFrom (string,string,string,string) <0x000d7>

[Code]....

View 4 Replies View Related

General :: Xsane Is Unable To Detect Scanner Device?

Feb 3, 2010

I'm using debian lenny, I bought a new Hp officejet j4500 scanner but the xsane is unable to detect the scanner. It says device not found. If I run xsane as root it detects and works properly it is obvious.I have added the user to scanner,saned and also to root user group.

View 2 Replies View Related

Ubuntu :: Acer Wmi Unable To Detect Wmid Device?

May 8, 2010

im using acer ao532h and just install lucid dual boot with w7. I have problem this mesej coming out when booting after grub then blank screen direct to login screen.

View 1 Replies View Related

General :: Detect FireWire Interface And Connected Device On It, In Ubuntu 11.04?

Sep 6, 2011

I have a FireWire camera LifeSize connected to my PC in the FireWire interface. My PC has miniPCI slot and with external converter its having a FireWire interface. Now its Ubuntu who is not showing me anything at all when i try:

$ uname -a
Linux desktop 2.6.38-11-generic-pae #48-Ubuntu SMP Fri Jul 29 20:51:21 UTC 2011 i686 i686 i386 GNU/Linux

[code]....

View 1 Replies View Related

Programming :: Object To Represent An Object Of Different Types?

Mar 1, 2010

Only ones I can think of seem overly complex, and I'm sure there is a simple solution I am overlooking. I have a class, it has a member who is an object. This object needs to be able to represent an object of different types.

[code]...

Where "surface" could be several different types, which will be set during execution. Hope this is clear enough. I have tried using templates but am getting "data member cannot be a member template". Either I have incorrect syntax, or am not implementing it right. another solution would have one class containing definitions of all possible shapes, But this would take up extra memory. Other solutions I thought of seem too round-about, and seems there is a simpler solution that I have overlooked.

View 8 Replies View Related

Programming :: After USB Boot - Detect Which Device The Ramfs Was Loaded From - Bash Or Python

Sep 22, 2010

How one could determine (for use in a Bash or Python script) which device (eg /dev/sda1, /dev/hda1... etc) a ramfs was loaded from when booting from a USB drive.

I have a RIPLinux/Tinycore live USB disk that automatically needs to run a script that is stored on the same USB drive but not part of the RIPLinux/Tinycore image. (Please note that I do not want to put this script into the RIPLinux image.) I therefore would like to remix the RIPLinux/Tinycore ISO to automatically run this script once it has started up. After RIP linux has booted I would like to automatically mount the USB drive that RIPLinux/Tinycore was booted from. I need help detecting which device this is.

View 3 Replies View Related

Networking :: SNMP Not Responding?

Aug 29, 2010

I have installed Net-SNMP.It is binded to port udp 161I start it with the command: snmpd -Lo
when I do snmpget -v 1 -c public localhost system.sysObjectID.0on the same machine the snmpd is running on- I get a respond SNMPv2-MIB::sysObjectID.0 = OID: ccitt.1when I send same request from another machine (using SNMPc program) - I see no reaction.I used "wireshark" to monitor packets, and I see the requests sent from the other machine. I also see them get to the first machine.

View 1 Replies View Related

Networking :: Enabling SNMP On Suse 10?

Jul 29, 2010

I need to enable SNMP on our Suse linux boxes, so that What's Up Gold can monitor them.

I need to add the community name, that I know, but where?

View 3 Replies View Related

Networking :: Make Mib File For Snmp?

Mar 9, 2011

how to make mib file for snmp....

View 3 Replies View Related

Networking :: SNMP Only Updating Every 12 Seconds?

Sep 14, 2010

I have enabled SNMP monitoring in my debian box (using apt-get install snmp) and configured it to allow my PC to query the server.

I'm able to query the server and get SNMP data but when I get STG to give me a per/second graph of the interface octets, it only updates the data every 12 seconds or so.

Is this a setting in SNMP which could be causing this problem? If so, how can I enable it so that SNMP can give me up to the second octet rates.

View 5 Replies View Related

Networking :: SNMP - Snmpwalk Not Working 100%

Mar 14, 2011

2 machines (one of them working as a server to monitor the network with IP 192.168.100.110 and the other one to be monitored with IP address 192.168.100.1):

In the first machine:

snmpwalk -v1 localhost -c public sysName (working fine)
snmpwalk -v1 192.168.100.1 -c public sysName (don't works -> Timeout: No Response from 192.168.100.1)

In the monitored machine:

snmpwalk -v1 192.168.100.110 -c public sysName (it works)
snmpwalk -v1 localhost -c public sysName (dont works -> Timeout: No Response from localhost)

View 6 Replies View Related

Networking :: Sniff Snmp Traps Being Sent To A NMS?

May 31, 2010

I'm trying to sniff snmp traps being sent to a NMS. I'm setting -s to 0 but when I start sniffing, some of the packets, instead of being decoded, show me messages like this:

Code:
[len1468<asnlen1663]
What is that supposed to mean?

View 4 Replies View Related

Networking :: Snmp - Timeout: No Response From Localhost

May 17, 2010

I am facing issues on few machines but rest all are ok. They have the same config but I don't know what is wrong. I tried as much as I could but couldn't fix it. Here is the rpms installed on this client

[code]...

The same config is working for all clients but have problems with few machines. May be I am doing something wrong in config or testing at very basic level.

View 1 Replies View Related

Networking :: Error When Sending SNMP Traps

May 12, 2010

I have an issue when sending snmp traps. I have an embedded system connected to a SNMP manager. I am sending traps from the box to the manager continuosly. After sometime I don't see any trpas coming out.
I get this error message.

Cannot open file /proc/net/tcp ...
: Too many open files
Cannot open file /proc/net/snmp ...
: Too many open files

What could be the reason for such an error?

View 1 Replies View Related

Networking :: Nagios Not Receiving SNMP Data?

May 18, 2010

I have recently set up nagios on a ubuntu server (9.10), and set it up to monitor all the servers, switches etc, following the quickstart guide provided on the nagios website.My problem is this:I have setup the nagios-plugins, and tried to set it up to monitor the network switches via SNMP but receive the following within the nagios web interface:SNMP problem - No data received from host I tried it from the command line, and got the exact same error.Is there some further configuration I need to do to be able to get this data?I've used up all my google-fu, and read over everyone else's problems on every forum I could find, but to no avail.

View 6 Replies View Related

Networking :: MIBS Using SNMP - Errors In Output

Mar 16, 2011

snmpwalk -v1 -c public localhost system
No log handling enabled - using stderr logging
MIB search path: /root/.snmp/mibs:/usr/local/share/snmp/mibs
Cannot find module (HOST-RESOURCES-MIB.txt): At line 0 in (none)
SNMPv2-MIB::sysDescr.0 = STRING: Linux ipbrick 2.6.30.10-586-smp-64gb #2 SMP Mon Dec 28 14:44:55 GMT 2009 i686
SNMPv2-MIB::sysObjectID.0 = OID: NET-SNMP-MIB::netSnmpAgentOIDs.10
DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (17496443) 2 days, 0:36:04.43

SNMPv2-MIB::sysContact.0 = STRING: Root <root@localhost> (configure /etc/snmp/snmpd.local.conf)
SNMPv2-MIB::sysName.0 = STRING: ipbrick
SNMPv2-MIB::sysLocation.0 = STRING: Unknown (configure /etc/snmp/snmpd.local.conf)
SNMPv2-MIB::sysORLastChange.0 = Timeticks: (1) 0:00:00.01
SNMPv2-MIB::sysORID.1 = OID: IF-MIB::ifMIB
SNMPv2-MIB::sysORID.2 = OID: SNMPv2-MIB::snmpMIB
SNMPv2-MIB::sysORID.3 = OID: TCP-MIB::tcpMIB
SNMPv2-MIB::sysORID.4 = OID: IP-MIB::ip
SNMPv2-MIB::sysORID.5 = OID: UDP-MIB::udpMIB
SNMPv2-MIB::sysORID.6 = OID: SNMP-VIEW-BASED-ACM-MIB::vacmBasicGroup
SNMPv2-MIB::sysORID.7 = OID: SNMP-FRAMEWORK-MIB::snmpFrameworkMIBCompliance
SNMPv2-MIB::sysORID.8 = OID: SNMP-MPD-MIB::snmpMPDCompliance
SNMPv2-MIB::sysORID.9 = OID: SNMP-USER-BASED-SM-MIB::usmMIBCompliance
SNMPv2-MIB::sysORDescr.1 = STRING: The MIB module to describe generic objects for network interface sub-layers

SNMPv2-MIB::sysORDescr.2 = STRING: The MIB module for SNMPv2 entities
SNMPv2-MIB::sysORDescr.3 = STRING: The MIB module for managing TCP implementations
SNMPv2-MIB::sysORDescr.4 = STRING: The MIB module for managing IP and ICMP implementations
SNMPv2-MIB::sysORDescr.5 = STRING: The MIB module for managing UDP implementations
SNMPv2-MIB::sysORDescr.6 = STRING: View-based Access Control Model for SNMP.
SNMPv2-MIB::sysORDescr.7 = STRING: The SNMP Management Architecture MIB.
SNMPv2-MIB::sysORDescr.8 = STRING: The MIB for Message Processing and Dispatching.
SNMPv2-MIB::sysORDescr.9 = STRING: The management information definitions for the SNMP User-based Security Model.

SNMPv2-MIB::sysORUpTime.1 = Timeticks: (0) 0:00:00.00
SNMPv2-MIB::sysORUpTime.2 = Timeticks: (0) 0:00:00.00
SNMPv2-MIB::sysORUpTime.3 = Timeticks: (0) 0:00:00.00
SNMPv2-MIB::sysORUpTime.4 = Timeticks: (0) 0:00:00.00
SNMPv2-MIB::sysORUpTime.5 = Timeticks: (0) 0:00:00.00
SNMPv2-MIB::sysORUpTime.6 = Timeticks: (0) 0:00:00.00
SNMPv2-MIB::sysORUpTime.7 = Timeticks: (1) 0:00:00.01
SNMPv2-MIB::sysORUpTime.8 = Timeticks: (1) 0:00:00.01
SNMPv2-MIB::sysORUpTime.9 = Timeticks: (1) 0:00:00.01
End of MIB

Why are some errors in the beginning of the output? How can I remove them? The file HOST-RESOURCES-MIB.txt is in /usr/local/share/snmp/mibs.

View 4 Replies View Related

Networking :: Sending SNMP Traps FROM A Workstation?

Apr 28, 2011

I have created this thread as it sis realy hard for me to send traps from my Linux workstation... I m lost with v1/v2/v3 snmp... So here is the initial configuration: (without traps)

rocommunity myrocom
rwcommunity MyL33tP4ss 10.5.32.202
rwcommunity MyL33tP4ss 127.0.0.1
syslocation "FR"
syscontact root

From there i can "poll" my system. But what should i do if i want my Linux system sending traps when disks are full or system overloaded etc...I have found information on Internet but not easily understandable It is for v3:

rwuser admin
createUser admin MD5 mypasword
#
# From there i would have to comment the lines regarding the communities
#

[code]....

10.5.32.202 is my management host ... is this config ok ? But it seems that trap2sink is for v2 ? How does it work ?

View 4 Replies View Related

Networking :: Snmp.conf Is EMPTY With Nothing Inside

Mar 11, 2011

I was following the installation guide of SNMP client and server [URL], but when I do an apt-get install snmp scli tkmib the /etc/snmp/snmpd.conf is empty with nothing inside..

View 7 Replies View Related

Networking :: Where Are SNMP Trap Messages Logged

Mar 4, 2011

I'm trying to get SNMP setup so I can send custom snmp trap messages. I followed this "How to" [URL] and I think I have it setup and working. This is my fist time messing around with SNMP, and I don't know where to check to see if I received the trap message. Do the snmp trap message even get logged any where?

View 1 Replies View Related

CentOS 5 Networking :: UCD-SNMP-MIB Doesn't Seem To Work

Aug 20, 2009

I am trying to monitor a Centos 5.3 box using SNMP and I am having a lot of trouble getting the data that i need from it. Everytime I try to get information from the UCD-SNMP MIB it returns "End of MIB". It is my understanding that UCD-SNMP is a standard package when Net-SNMP is installed and should always be there. Then why can't I access it? I have tried removing the reinstalling Net-SNMP, but that hasn't worked. My server is update date on all it's patches as well. It is quite old hardware, but I don't believe that should affect SNMP from being gathered. Iptables is down, and I cant' even get it from the local machine.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved