Monitor with SNMP

Hello,
we would like to monitor client connection by webapp with SNMP.
How can i make this?
Wich OID ?
THKS in adv.

Start here:
http://edocs.bea.com/wls/docs81/snmpman/index.html
And then here:
http://edocs.bea.com/wls/docs81/snmp/index.html
~Ryan Upton
pasbien wrote:
Hello,
we would like to monitor client connection by webapp with SNMP.
How can i make this?
Wich OID ?
THKS in adv.

Similar Messages

  • Setup Oracle monitoring with SNMP

    Hello,
    I don't understand why I can't read oracle MIB (.1.3.6.1.4.1.111 ).
    I have installed Oracle Entreprise manager and start it :
    --> emctl start dbconsole .... started.
    I have installed Oracle Management Agent and subagent.
    emctl start subagent --> Starting sub agent already running..
    Now I have some scripts below :
    /exec/products/oracle/v10.2.0/agent10g/network/snmp/peer/CONFIG.encap
    AGENT AT PORT 1161 WITH COMMUNITY public
    SUBTREES        1.3.6.1.2.1.1,
    +1.3.6.1.2.1.2,+
    +1.3.6.1.2.1.3,+
    +1.3.6.1.2.1.4,+
    +1.3.6.1.2.1.5,+
    +1.3.6.1.2.1.6,+
    +1.3.6.1.2.1.7,+
    +1.3.6.1.2.1.8,+
    +1.3.6.1.4.1.11.2+
    FORWARD ALL TRAPS;
    /exec/products/oracle/v10.2.0/agent10g/network/snmp/peer/CONFIG.master
    COMMUNITY       public
    ALLOW ALL OPERATIONS
    USE NO ENCRYPTION
    MANAGER         localhost
    SEND ALL TRAPS
    /exec/products/oracle/v10.2.0/agent10g/network/snmp/peer/snmpd.conf (do I need to configure something ?)
    /exec/products/oracle/v10.2.0/agent10g/network/snmp/peer/start_peer (do I need to configure something ?)
    I have lauch the command below :
    /exec/products/oracle/v10.2.0/agent10g/network/snmp/peer/start_peer -a
    --> All starting are down but there is this message in encap_peer.out
    trap bind failure: Address already in use
    +./encap_peer: error opening manager-role port(s)+ --> I have tested configuring an other port like 1165 but it is the same thing.
    Below is the result of the netstat command, snmp port are open :
    +$netstat -an |grep 161+
    udp        0      0 0.0.0.0:1161                0.0.0.0:*
    udp        0      0 0.0.0.0:161                 0.0.0.0:*
    Do I need to configure something in /etc/snmp/snmpd.conf ?
    I dont understand what it is wrong.
    Data are availlable with commande below :
    snmpwalk -m all -v2c -c public 172.16.2.138:1165 1.3.6.1.4.1
    But there is no data available for Oracle (.1.3.6.1.4.1.111 or .1.3.6.1.4.1.39).
    Can you help me please ?
    Thank you very much by advanced.
    Breizho

    Hello,
    below, this is my snmpd.conf configuration file, I have teste to include this line :
    view systemview included .1.3.6.1.4 to allow oracle information but it didn't work.
    Perhaps there is something that I have not understand.
    B.
    # snmpd.conf:
    # An example configuration file for configuring the ucd-snmp snmpd agent.
    # This file is intended to only be as a starting point. Many more
    # configuration directives exist than are mentioned in this file. For
    # full details, see the snmpd.conf(5) manual page.
    # All lines beginning with a '#' are comments and are intended for you
    # to read. All other lines are configuration commands for the agent.
    # Access Control
    # As shipped, the snmpd demon will only respond to queries on the
    # system mib group until this file is replaced or modified for
    # security purposes. Examples are shown below about how to increase the
    # level of access.
    # By far, the most common question I get about the agent is "why won't
    # it work?", when really it should be "how do I configure the agent to
    # allow me to access it?"
    # By default, the agent responds to the "public" community for read
    # only access, if run out of the box without any configuration file in
    # place. The following examples show you other ways of configuring
    # the agent so that you can change the community names, and give
    # yourself write access to the mib tree as well.
    # For more information, read the FAQ as well as the snmpd.conf(5)
    # manual page.
    # First, map the community name "public" into a "security name"
    # sec.name source community
    com2sec notConfigUser default public
    # Second, map the security name into a group name:
    # groupName securityModel securityName
    group notConfigGroup v1 notConfigUser
    group notConfigGroup v2c notConfigUser
    # Third, create a view for us to let the group have rights to:
    # Make at least snmpwalk -v 1 localhost -c public system fast again.
    # name incl/excl subtree mask(optional)
    view systemview included .1.3.6.1.2.1.1
    view systemview included .1.3.6.1.2.1.25.1.1
    # Finally, grant the group read-only access to the systemview view.
    # group context sec.model sec.level prefix read write notif
    access notConfigGroup "" any noauth exact systemview none none
    # Here is a commented out example configuration that allows less
    # restrictive access.
    # YOU SHOULD CHANGE THE "COMMUNITY" TOKEN BELOW TO A NEW KEYWORD ONLY
    # KNOWN AT YOUR SITE. YOU MUST CHANGE THE NETWORK TOKEN BELOW TO
    # SOMETHING REFLECTING YOUR LOCAL NETWORK ADDRESS SPACE.
    ## sec.name source community
    #com2sec local localhost COMMUNITY
    #com2sec mynetwork NETWORK/24 COMMUNITY
    ## group.name sec.model sec.name
    #group MyRWGroup any local
    #group MyROGroup any mynetwork
    #group MyRWGroup any otherv3user
    ## incl/excl subtree mask
    #view all included .1 80
    ## -or just the mib2 tree-
    #view mib2 included .iso.org.dod.internet.mgmt.mib-2 fc
    ## context sec.model sec.level prefix read write notif
    #access MyROGroup "" any noauth 0 all none none
    #access MyRWGroup "" any noauth 0 all all all
    # Sample configuration to make net-snmpd RFC 1213.
    # Unfortunately v1 and v2c don't allow any user based authentification, so
    # opening up the default config is not an option from a security point.
    # WARNING: If you uncomment the following lines you allow write access to your
    # snmpd daemon from any source! To avoid this use different names for your
    # community or split out the write access to a different community and
    # restrict it to your local network.
    # Also remember to comment the syslocation and syscontact parameters later as
    # otherwise they are still read only (see FAQ for net-snmp).
    # First, map the community name "public" into a "security name"
    # sec.name source community
    #com2sec notConfigUser default public
    # Second, map the security name into a group name:
    # groupName securityModel securityName
    #group notConfigGroup v1 notConfigUser
    #group notConfigGroup v2c notConfigUser
    # Third, create a view for us to let the group have rights to:
    # Open up the whole tree for ro, make the RFC 1213 required ones rw.
    # name incl/excl subtree mask(optional)
    #view roview included .1
    #view rwview included system.sysContact
    #view rwview included system.sysName
    #view rwview included system.sysLocation
    #view rwview included interfaces.ifTable.ifEntry.ifAdminStatus
    #view rwview included at.atTable.atEntry.atPhysAddress
    #view rwview included at.atTable.atEntry.atNetAddress
    #view rwview included ip.ipForwarding
    #view rwview included ip.ipDefaultTTL
    #view rwview included ip.ipRouteTable.ipRouteEntry.ipRouteDest
    #view rwview included ip.ipRouteTable.ipRouteEntry.ipRouteIfIndex
    #view rwview included ip.ipRouteTable.ipRouteEntry.ipRouteMetric1
    #view rwview included ip.ipRouteTable.ipRouteEntry.ipRouteMetric2
    #view rwview included ip.ipRouteTable.ipRouteEntry.ipRouteMetric3
    #view rwview included ip.ipRouteTable.ipRouteEntry.ipRouteMetric4
    #view rwview included ip.ipRouteTable.ipRouteEntry.ipRouteType
    #view rwview included ip.ipRouteTable.ipRouteEntry.ipRouteAge
    #view rwview included ip.ipRouteTable.ipRouteEntry.ipRouteMask
    #view rwview included ip.ipRouteTable.ipRouteEntry.ipRouteMetric5
    #view rwview included ip.ipNetToMediaTable.ipNetToMediaEntry.ipNetToMediaIfIndex
    #view rwview included ip.ipNetToMediaTable.ipNetToMediaEntry.ipNetToMediaPhysAddress
    #view rwview included ip.ipNetToMediaTable.ipNetToMediaEntry.ipNetToMediaNetAddress
    #view rwview included ip.ipNetToMediaTable.ipNetToMediaEntry.ipNetToMediaType
    #view rwview included tcp.tcpConnTable.tcpConnEntry.tcpConnState
    #view rwview included egp.egpNeighTable.egpNeighEntry.egpNeighEventTrigger
    #view rwview included snmp.snmpEnableAuthenTraps
    # Finally, grant the group read-only access to the systemview view.
    # group context sec.model sec.level prefix read write notif
    #access notConfigGroup "" any noauth exact roview rwview none
    # System contact information
    # It is also possible to set the sysContact and sysLocation system
    # variables through the snmpd.conf file:
    syslocation Unknown (edit /etc/snmp/snmpd.conf)
    syscontact Root <root@localhost> (configure /etc/snmp/snmp.local.conf)
    # Example output of snmpwalk:
    # % snmpwalk -v 1 localhost -c public system
    # system.sysDescr.0 = "SunOS name sun4c"
    # system.sysObjectID.0 = OID: enterprises.ucdavis.ucdSnmpAgent.sunos4
    # system.sysUpTime.0 = Timeticks: (595637548) 68 days, 22:32:55
    # system.sysContact.0 = "Me <[email protected]>"
    # system.sysName.0 = "name"
    # system.sysLocation.0 = "Right here, right now."
    # system.sysServices.0 = 72
    # Process checks.
    # The following are examples of how to use the agent to check for
    # processes running on the host. The syntax looks something like:
    # proc NAME [MAX=0] [MIN=0]
    # NAME: the name of the process to check for. It must match
    # exactly (ie, http will not find httpd processes).
    # MAX: the maximum number allowed to be running. Defaults to 0.
    # MIN: the minimum number to be running. Defaults to 0.
    # Examples (commented out by default):
    # Make sure mountd is running
    #proc mountd
    # Make sure there are no more than 4 ntalkds running, but 0 is ok too.
    #proc ntalkd 4
    # Make sure at least one sendmail, but less than or equal to 10 are running.
    #proc sendmail 10 1
    # A snmpwalk of the process mib tree would look something like this:
    # % snmpwalk -v 1 localhost -c public .1.3.6.1.4.1.2021.2
    # enterprises.ucdavis.procTable.prEntry.prIndex.1 = 1
    # enterprises.ucdavis.procTable.prEntry.prIndex.2 = 2
    # enterprises.ucdavis.procTable.prEntry.prIndex.3 = 3
    # enterprises.ucdavis.procTable.prEntry.prNames.1 = "mountd"
    # enterprises.ucdavis.procTable.prEntry.prNames.2 = "ntalkd"
    # enterprises.ucdavis.procTable.prEntry.prNames.3 = "sendmail"
    # enterprises.ucdavis.procTable.prEntry.prMin.1 = 0
    # enterprises.ucdavis.procTable.prEntry.prMin.2 = 0
    # enterprises.ucdavis.procTable.prEntry.prMin.3 = 1
    # enterprises.ucdavis.procTable.prEntry.prMax.1 = 0
    # enterprises.ucdavis.procTable.prEntry.prMax.2 = 4
    # enterprises.ucdavis.procTable.prEntry.prMax.3 = 10
    # enterprises.ucdavis.procTable.prEntry.prCount.1 = 0
    # enterprises.ucdavis.procTable.prEntry.prCount.2 = 0
    # enterprises.ucdavis.procTable.prEntry.prCount.3 = 1
    # enterprises.ucdavis.procTable.prEntry.prErrorFlag.1 = 1
    # enterprises.ucdavis.procTable.prEntry.prErrorFlag.2 = 0
    # enterprises.ucdavis.procTable.prEntry.prErrorFlag.3 = 0
    # enterprises.ucdavis.procTable.prEntry.prErrMessage.1 = "No mountd process running."
    # enterprises.ucdavis.procTable.prEntry.prErrMessage.2 = ""
    # enterprises.ucdavis.procTable.prEntry.prErrMessage.3 = ""
    # enterprises.ucdavis.procTable.prEntry.prErrFix.1 = 0
    # enterprises.ucdavis.procTable.prEntry.prErrFix.2 = 0
    # enterprises.ucdavis.procTable.prEntry.prErrFix.3 = 0
    # Note that the errorFlag for mountd is set to 1 because one is not
    # running (in this case an rpc.mountd is, but thats not good enough),
    # and the ErrMessage tells you what's wrong. The configuration
    # imposed in the snmpd.conf file is also shown.
    # Special Case: When the min and max numbers are both 0, it assumes
    # you want a max of infinity and a min of 1.
    # Executables/scripts
    # You can also have programs run by the agent that return a single
    # line of output and an exit code. Here are two examples.
    # exec NAME PROGRAM [ARGS ...]
    # NAME: A generic name.
    # PROGRAM: The program to run. Include the path!
    # ARGS: optional arguments to be passed to the program
    # a simple hello world
    #exec echotest /bin/echo hello world
    # Run a shell script containing:
    # #!/bin/sh
    # echo hello world
    # echo hi there
    # exit 35
    # Note: this has been specifically commented out to prevent
    # accidental security holes due to someone else on your system writing
    # a /tmp/shtest before you do. Uncomment to use it.
    #exec shelltest /bin/sh /tmp/shtest
    # Then,
    # % snmpwalk -v 1 localhost -c public .1.3.6.1.4.1.2021.8
    # enterprises.ucdavis.extTable.extEntry.extIndex.1 = 1
    # enterprises.ucdavis.extTable.extEntry.extIndex.2 = 2
    # enterprises.ucdavis.extTable.extEntry.extNames.1 = "echotest"
    # enterprises.ucdavis.extTable.extEntry.extNames.2 = "shelltest"
    # enterprises.ucdavis.extTable.extEntry.extCommand.1 = "/bin/echo hello world"
    # enterprises.ucdavis.extTable.extEntry.extCommand.2 = "/bin/sh /tmp/shtest"
    # enterprises.ucdavis.extTable.extEntry.extResult.1 = 0
    # enterprises.ucdavis.extTable.extEntry.extResult.2 = 35
    # enterprises.ucdavis.extTable.extEntry.extOutput.1 = "hello world."
    # enterprises.ucdavis.extTable.extEntry.extOutput.2 = "hello world."
    # enterprises.ucdavis.extTable.extEntry.extErrFix.1 = 0
    # enterprises.ucdavis.extTable.extEntry.extErrFix.2 = 0
    # Note that the second line of the /tmp/shtest shell script is cut
    # off. Also note that the exit status of 35 was returned.
    # disk checks
    # The agent can check the amount of available disk space, and make
    # sure it is above a set limit.
    # disk PATH [MIN=100000]
    # PATH: mount path to the disk in question.
    # MIN: Disks with space below this value will have the Mib's errorFlag set.
    # Default value = 100000.
    # Check the / partition and make sure it contains at least 10 megs.
    #disk / 10000
    # % snmpwalk -v 1 localhost -c public .1.3.6.1.4.1.2021.9
    # enterprises.ucdavis.diskTable.dskEntry.diskIndex.1 = 0
    # enterprises.ucdavis.diskTable.dskEntry.diskPath.1 = "/" Hex: 2F
    # enterprises.ucdavis.diskTable.dskEntry.diskDevice.1 = "/dev/dsk/c201d6s0"
    # enterprises.ucdavis.diskTable.dskEntry.diskMinimum.1 = 10000
    # enterprises.ucdavis.diskTable.dskEntry.diskTotal.1 = 837130
    # enterprises.ucdavis.diskTable.dskEntry.diskAvail.1 = 316325
    # enterprises.ucdavis.diskTable.dskEntry.diskUsed.1 = 437092
    # enterprises.ucdavis.diskTable.dskEntry.diskPercent.1 = 58
    # enterprises.ucdavis.diskTable.dskEntry.diskErrorFlag.1 = 0
    # enterprises.ucdavis.diskTable.dskEntry.diskErrorMsg.1 = ""
    # load average checks
    # load [1MAX=12.0] [5MAX=12.0] [15MAX=12.0]
    # 1MAX: If the 1 minute load average is above this limit at query
    # time, the errorFlag will be set.
    # 5MAX: Similar, but for 5 min average.
    # 15MAX: Similar, but for 15 min average.
    # Check for loads:
    #load 12 14 14
    # % snmpwalk -v 1 localhost -c public .1.3.6.1.4.1.2021.10
    # enterprises.ucdavis.loadTable.laEntry.loadaveIndex.1 = 1
    # enterprises.ucdavis.loadTable.laEntry.loadaveIndex.2 = 2
    # enterprises.ucdavis.loadTable.laEntry.loadaveIndex.3 = 3
    # enterprises.ucdavis.loadTable.laEntry.loadaveNames.1 = "Load-1"
    # enterprises.ucdavis.loadTable.laEntry.loadaveNames.2 = "Load-5"
    # enterprises.ucdavis.loadTable.laEntry.loadaveNames.3 = "Load-15"
    # enterprises.ucdavis.loadTable.laEntry.loadaveLoad.1 = "0.49" Hex: 30 2E 34 39
    # enterprises.ucdavis.loadTable.laEntry.loadaveLoad.2 = "0.31" Hex: 30 2E 33 31
    # enterprises.ucdavis.loadTable.laEntry.loadaveLoad.3 = "0.26" Hex: 30 2E 32 36
    # enterprises.ucdavis.loadTable.laEntry.loadaveConfig.1 = "12.00"
    # enterprises.ucdavis.loadTable.laEntry.loadaveConfig.2 = "14.00"
    # enterprises.ucdavis.loadTable.laEntry.loadaveConfig.3 = "14.00"
    # enterprises.ucdavis.loadTable.laEntry.loadaveErrorFlag.1 = 0
    # enterprises.ucdavis.loadTable.laEntry.loadaveErrorFlag.2 = 0
    # enterprises.ucdavis.loadTable.laEntry.loadaveErrorFlag.3 = 0
    # enterprises.ucdavis.loadTable.laEntry.loadaveErrMessage.1 = ""
    # enterprises.ucdavis.loadTable.laEntry.loadaveErrMessage.2 = ""
    # enterprises.ucdavis.loadTable.laEntry.loadaveErrMessage.3 = ""
    # Extensible sections.
    # This alleviates the multiple line output problem found in the
    # previous executable mib by placing each mib in its own mib table:
    # Run a shell script containing:
    # #!/bin/sh
    # echo hello world
    # echo hi there
    # exit 35
    # Note: this has been specifically commented out to prevent
    # accidental security holes due to someone else on your system writing
    # a /tmp/shtest before you do. Uncomment to use it.
    # exec .1.3.6.1.4.1.2021.50 shelltest /bin/sh /tmp/shtest
    # % snmpwalk -v 1 localhost -c public .1.3.6.1.4.1.2021.50
    # enterprises.ucdavis.50.1.1 = 1
    # enterprises.ucdavis.50.2.1 = "shelltest"
    # enterprises.ucdavis.50.3.1 = "/bin/sh /tmp/shtest"
    # enterprises.ucdavis.50.100.1 = 35
    # enterprises.ucdavis.50.101.1 = "hello world."
    # enterprises.ucdavis.50.101.2 = "hi there."
    # enterprises.ucdavis.50.102.1 = 0
    # Now the Output has grown to two lines, and we can see the 'hi
    # there.' output as the second line from our shell script.
    # Note that you must alter the mib.txt file to be correct if you want
    # the .50.* outputs above to change to reasonable text descriptions.
    # Other ideas:
    # exec .1.3.6.1.4.1.2021.51 ps /bin/ps
    # exec .1.3.6.1.4.1.2021.52 top /usr/local/bin/top
    # exec .1.3.6.1.4.1.2021.53 mailq /usr/bin/mailq
    # Pass through control.
    # Usage:
    # pass MIBOID EXEC-COMMAND
    # This will pass total control of the mib underneath the MIBOID
    # portion of the mib to the EXEC-COMMAND.
    # Note: You'll have to change the path of the passtest script to your
    # source directory or install it in the given location.
    # Example: (see the script for details)
    # (commented out here since it requires that you place the
    # script in the right location. (its not installed by default))
    # pass .1.3.6.1.4.1.2021.255 /bin/sh /usr/local/local/passtest
    # % snmpwalk -v 1 localhost -c public .1.3.6.1.4.1.2021.255
    # enterprises.ucdavis.255.1 = "life the universe and everything"
    # enterprises.ucdavis.255.2.1 = 42
    # enterprises.ucdavis.255.2.2 = OID: 42.42.42
    # enterprises.ucdavis.255.3 = Timeticks: (363136200) 42 days, 0:42:42
    # enterprises.ucdavis.255.4 = IpAddress: 127.0.0.1
    # enterprises.ucdavis.255.5 = 42
    # enterprises.ucdavis.255.6 = Gauge: 42
    # % snmpget -v 1 localhost public .1.3.6.1.4.1.2021.255.5
    # enterprises.ucdavis.255.5 = 42
    # % snmpset -v 1 localhost public .1.3.6.1.4.1.2021.255.1 s "New string"
    # enterprises.ucdavis.255.1 = "New string"
    # For specific usage information, see the man/snmpd.conf.5 manual page
    # as well as the local/passtest script used in the above example.
    # Added for support of bcm5820 cards.
    pass .1.3.6.1.4.1.4413.4.1 /usr/bin/ucd5820stat
    # Further Information
    # See the snmpd.conf manual page, and the output of "snmpd -H".

  • Vpn state monitoring with snmp

    I am using Zabbix to monitor my network and am looking for a way to monitor the state of 2 p2p ipsec tunnels in order to trigger an email when 1 goes down.  I am trying cipsectuniketunnelalive, however when I snmpwalk that oid, it returns varying quantities of tunnels with an extra octet on the oid.  And the octet changes as tunnels go down and come back up.
    I am trying to montior an ASA 5505 running 8.2(5)
    Anyone have a suggestion on how to accomplish this?
    Thanks

    I am using Zabbix to monitor my network and am looking for a way to monitor the state of 2 p2p ipsec tunnels in order to trigger an email when 1 goes down.  I am trying cipsectuniketunnelalive, however when I snmpwalk that oid, it returns varying quantities of tunnels with an extra octet on the oid.  And the octet changes as tunnels go down and come back up.
    I am trying to montior an ASA 5505 running 8.2(5)
    Anyone have a suggestion on how to accomplish this?
    Thanks

  • Fortigate Device Monitoring with SNMP

    HI
    I have SCOM 2012 R2 in my environment. I want to do network device monitoring for Fortigate routers\firewalls. I have configured all firewall ports between my management server and fortigate device. I have created SNMP v1,v2 run as account and have added
    community string in network device as well. When i create the rule and run it, my fortigate device appears in the Network Device Pending management. On alerts pane i can see that the rule discovery is failing. The error log says there might be problem in credentials
    or firewall settings. But i have configured all of them properly. Please help

    Hi,
    Please refer to the link below:
    How to Discover Network Devices in Operations Manager
    https://technet.microsoft.com/en-us/library/hh278846.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Would like to monitor teaming with snmp

    Hello,
    I would like to use snmp to monitor the state of teaming/vibe. I can't seem to find much information on the subject in general and none specifically to do with teaming/vibe. Does teaming/vibe have an OID? If not, is there some way I can give it one? It is a java process and I can monitor a process such as java with snmp but I can't differentiate between different java processes such as indexServer and icecore. Any information or links would be appreciated.
    Thanks!
    Toney.

    toneyc,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Monitoring VLANs with SNMP

    Can someone remind me how I can monitor a VLAN other than VLAN 1 with SNMP I think it's something along the lines of public@....
    Any help would be much appreciated.
    Thanks
    Jon

    The @ represents community string indexing. So if you wanted to get snmp output for VLAN 200 you would do something like this:
    snmpwalk -Os -c public@200 -v 2c 10.1.1.1 dot1dTpFdbAddress
    Keep in mind the flags I use above are from my specific snmpwalk utility (net-snmp) but you would add the @ to the comm string and then the value to collect the data

  • Monitoring Cpu with SNMP

    Hello,
    I'am trying to monitor the CPU usage with snmp.
    I found ssCpuRawIdle.0 but each time I do :
    # snmpget -v 2c -c public localhost ssCpuRawIdle.0
    UCD-SNMP-MIB::ssCpuRawIdle.0 = Counter32: 0
    The answer is always 0.
    I think is wrong, there must be value, but I cannot interdstand what.
    snmpd is running and I can obtain answer with other request.
    Thanks in advance fr your help.
    Jacques

    I will add this to my queue of SNMP bugs.
    Incorrect data like this are because OS X looks like FreeBSD to the Net-SNMP project, but OS X has some new APIs/SPIs/KPIs that deprecate or eliminate those used by FreeBSD in an attempt to be a more secure consumer-oriented OS.
    Macs. Lotsa macs. All without SNMP.    

  • Monitoring the Cisco ACE module with SNMP

    We use 2 redundant Cisco ACE loadbalancer in our datacenter
    The models are ACE20-MOD-K9 with software A2(2.0)
    Does anybod know how to monitor the environment (cpu, memory) of such a module with snmp?
    We were not able to find an applicable MIB for that module.
    The CISCO-PROCESS-MIB.oid (ftp://ftp.cisco.com/pub/mibs/oid/CISCO-PROCESS-MIB.oid) seems not to reflect the correct oid's.
    What are the correct oid's for cpu and memory?
    Where can I find a detailed documentation for snmp-monitoring the cisco ace module?
    thanks

    Hi Patrik,
    to monitor the ACE I use these two MIB's:
    ftp://ftp.cisco.com/pub/mibs/v2/CISCO-SLB-MIB.my
    ftp://ftp.cisco.com/pub/mibs/v2/CISCO-ENHANCED-SLB-MIB.my
    Example for CPU:
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Normale Tabelle";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin:0cm;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:11.0pt;
    font-family:"Calibri","sans-serif";
    mso-ascii-font-family:Calibri;
    mso-ascii-theme-font:minor-latin;
    mso-fareast-font-family:"Times New Roman";
    mso-fareast-theme-font:minor-fareast;
    mso-hansi-font-family:Calibri;
    mso-hansi-theme-font:minor-latin;
    mso-bidi-font-family:"Times New Roman";
    mso-bidi-theme-font:minor-bidi;}
    cpmCPUTotalEntry 1.3.6.1.4.1.9.9.109.1.1.1.1
    The resource usage and other interesting things you will find with a MIB browser.
    Achim

  • BGP Peer down monitoring through SNMP Traps

    Hello,
    I'm trying to figure out how I can monitor with BGP peer went down using SNMP traps or any other methods that are out there. Basically I would like to get a trap that tells me the IP address of the peer that went down.
    Looking over the SNMP MIBs for BGP all i can find is snmp traps that tell me there was a change in states in BGP, but don't say which neighbor.
    Is there any way to get such information? Would I have to use EEM with some script? This seems like a very common thing that people would want to know.
    Thank you in advance,
    Tom

    SNMP notifications can be configured on the router and GET operations can be performed from an external management station only after BGP SNMP support is enabled.
    SUMMARY STEPS
    1. enable
    2. configure terminal
    3. snmp-server enable traps bgp [state-changes {[all] [backward-trans] [limited]}] | [threshold prefix]
    4. exit

  • How do i run an external monitor with my macbook and change settings so that when i close the lid the signal to the monitor is not lost and i can continue using the mac with a mouse and a wireless keyboard?

    How do i run an external monitor with my macbook and change settings so that when i close the lid the signal to the monitor is not lost and i can continue using the mac with a mouse and a wireless keyboard?

    No, nothing will prevent the computer from going to sleep when you close its display except third-party hacks that are designed to do exactly that. I strongly advise against using any of those, as they may interfere with successful entry into clamshell mode (and they carry other downside risks as well). Just wait until the computer is asleep (with its sleep light pulsing), then press any key on the keyboard. It sounds as though your setup is working as it's designed to do.

  • How do I use two external monitors with my laptop?

    I have a new Pavilion dm4-301 d cl Entertainment PC.   My OS is Windows 7.   I am used to using two external monitors with a docking station.   This new laptop does not have a docking station.  What do I need to get  to use two external monitors? 
    This question was solved.
    View Solution.

    Certainly not without a dock but even with, HP laptop docks pretty well limit you to one of the external monitor ports, even if there are two on the dock. We have used a device called an Atlona AT-HDPIX2 which is a usb to hdmi adapter. It provides a third monitor capability for a laptop....use the native external monitor port and the internal laptop display and then this device gives a third monitor which is full configurable from the Windows 7 display interface...clone, extend, etc. It allows full HD resolution and is responsive enough for even light gaming.  HP makes no true docking station for your laptop. 

  • Using ADC Monitor with the new Mac Mini

    My husband has an Apple monitor with an ADC connection. I would like to purchase the new Mac Mini, but would like to use his current monitor. I know there is an ADC to DVI adapter, but the new Mac Mini uses the Mini Display...could I use yet another adapter? I am trying to save money, but don't want to the display quality to be really poor. Space is not an issue. Any help would be greatly appreciated.

    I have located that, but my concern is the DVI connection to the Mini Display connection on the Mac Mini. My understanding is that they are different.

  • LCD Monitor with B&W G3 Tower

    Hello, I am looking to replace my 17" Apple Studio Display CRT on my G3 B&W Tower with an LCD monitor. My questions are: 1) Will my computer (VGA port) accept any current LCD screens on the market, or do I have to stay with Apple's LCD monitors? 2) There are several Apple Studio LCD Displays offered on eBay. They mention DVI and ADC connections. How do I know which models will work with my B&W G3? Forgot to mention that I have upgraded the processor with a Sonnet G4 500Mhz. Thanks.

    Hi,
    your B&W (like mine) should be equipped with a standard VGA output on your video card, which should accept any monitor with a VGA connection.
    I tried a couple of LCD (a Samsung and a Hewlett Packard) which worked flawlessly and did not give me any problems.
    I am not sure whether you can connect any of the current generation Apple flat screens due to the different interface, but you surely can take advantage of any VGA equipped LCD.
    cheers

  • 3 Monitors with 1 iMac and 2 Cinema Displays conected to Windows Gaming PC Help!

    Hi
    I want to set up a 3 monitor gaming set up with 1 iMac in the middle and 2 cinema displays either side. This would be a tripple monitor set up.
    I am looking to set up a new computer and i want to have 3 monitors. I also want to have an iMac so i want the iMac in the middle and two cinima displays next to each other. i Want to also conect these monitors with a Windows 7 gaming PC.
    I want to hook up my very powerfull windows 7 gaming computer wich has 3 SLI GTX 560 EVGA cards. These cards have a display port output.
    So i want to run 3 monitors from my gaming machine and i also want to have my iMac use the 3 monitors aswell. I also want to take advantage of the full, maximum resolution. I would get the thunderbolt cinema display monitors.
    Gaming comupter has 3 display ports so i need to connect each graphics card to one of the monitors. I then need to conect the two cinema displays to the middle iMac.
    I have not bought anything yet i just need to know if i can do this. Need to know stuff like what adapers to buy and what compatabilties.
    I need to know if this is posible and how i would do it.
    Thanks

    Could i use some of these cables?
    It says they are thunderbolt conpatable.
    http://www.macfixit.com.au/shop/index.php?_a=viewCat&catId=229
    http://www.macfixit.com.au/shop/index.php?_a=viewProd&productId=2444

  • How to use  two monitors with my Mac mini

    Hello,
    I have a Mac mini and using a 20" Samsung Monitor with it which works well. I also have my 40" LCD Samsung telly, set up next to it. Whenever i watch a DVD using my Mac i have to swap over the cables. Is there a way of getting the right cables etc and making it so i would be able to watch a dvd on the 40" and still use the 20" surfing the net etc. I had a similar set up with my old windows laptop, but cant seem to work out how do it with the mac. Both monitors have modern sockets, the 40in has HDMI/DVI IN and AGV, the 20" has AGV and HDCP/DVI IN. Many thanks.

    To the best of my knowledge there is no way to use dual displays on the Mini. You may be able to find some adapter that will allow you to physically connect two displays, but they will be mirrored, not spanned.
    To do what you describe would take spanning, which the Mini is not capable of doing. Unless something has changed recently,..

Maybe you are looking for