cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
4068
Views
0
Helpful
5
Replies

SSID and channel over SNMP

PawelRutkowski
Level 1
Level 1

Hi,

Is it possible to receive SSID & Channel information on interfaces in Acess Points ? Using SNMP protocol of course.

I searched http://tools.cisco.com/Support/SNMP/do/BrowseOID.do?local=en but there is many MIB, too many.

1 Accepted Solution

Accepted Solutions

There you go!

And please don't forget to rank my posts if they've been helpful. Good Luck!

-Joe

View solution in original post

5 Replies 5

jreekers
Level 4
Level 4

Hi Pawel,

I think that as far as the SSID information goes, you probably want to look at the AWCVX-MIB file. Specifically, this one is a good place to start:

.1.3.6.1.4.1.522.3.6.1.1.1.22

awcDot11InfrastructureSSID OBJECT-TYPE

-- FROM AWCVX-MIB

SYNTAX Integer (0..2007)

MAX-ACCESS read-write

STATUS Current

DESCRIPTION "Index of the SSID which all 802.11 infrastructure stations shall use for Association. If 0, an access point and its repeaters and other subordinate infrastructure devices will Associate through dot11DesiredSSID. If non-0, an access point and its subordinate infrastructure devices will Associate through the auxiliary SSID with awcDot11AuxSSIDIndex equal to awcDot11InfrastructureSSID."

::= { iso(1) org(3) dod(6) internet(1) private(4) enterprises(1) aironet(522) awcVx(3) awc802dot11(6) awcDot11smt(1) awcDot11StationConfigTable(1) awcDot11StationConfigEntry(1) 22 }

which, by reading I get the hint to check the following:

.1.2.840.10036.1.1.1.9

dot11DesiredSSID OBJECT-TYPE

-- FROM IEEE802dot11-MIB

SYNTAX OCTET STRING (0..32)

MAX-ACCESS read-write

STATUS Current

DESCRIPTION "This attribute reflects the Service Set ID (SSID) used in the DesiredSSID parameter of the most recent mlme Scan.request. This value may be modified by an external management entity and used by the local SME to make decisions about the Scanning process."

::= { iso(1) member-body(2) us(840) ieee802dot11(10036) dot11smt(1) dot11StationConfigTable(1) dot11StationConfigEntry(1) 9 }

and

.1.3.6.1.4.1.522.3.6.1.7.1.2

awcDot11AuxSSID OBJECT-TYPE

-- FROM AWCVX-MIB

SYNTAX OCTET STRING (0..32)

MAX-ACCESS read-write

STATUS Current

DESCRIPTION "This attribute reflects a Service Set ID recognized by the access point. The access point shall respond

to Probe Requests specifying this SSID, but does not advertise this SSID in its Beacons."

Anyway, I think this will give you a good starting point. Let me know if you need more specifics, and hope this helps.

Regards,

-Joe

Thanks for answer. I think this: cd11IfAuxSsidEntry.2 is what I'm looking for.

But why when I try to use:

snmpget -c public -v 2c 192.168.69.12 cd11IfAuxSsidEntry.2

got:

CISCO-DOT11-IF-MIB::cd11IfAuxSsid = No Such Instance currently exists at this OID

I checked in access point all MIB's(show snmp mib) and there is cd11IfAuxSsidEntry.2.

For example there isn't cd11IfAuxSsidEntry.1, so when I use:

snmpget -c public -v 2c 192.168.69.12 cd11IfAuxSsidEntry.1

got:

CISCO-DOT11-IF-MIB::cd11IfAuxSsidIndex = No Such Object available on this agent at this OID

so there is a different, but why cd11IfAuxSsidEntry.2 dosen't work. Should I enable it somewhere ?

Thanks

If you try to walk the cd11IfAuxSsidEntry without specifying an index value, what do you get.

For example, try:

snmpget -c public -v 2c 192.168.69.12 cd11IfAuxSsidEntry

and let me know the results.

-Joe

Big thanks, no I know what I forget. It's should be: cd11IfAuxSsid.1.1

snmpwalk -v1 -c public 192.168.69.12 cd11IfAuxSsidEntry

CISCO-DOT11-IF-MIB::cd11IfAuxSsid.1.1 = STRING: "www.mywww.net/07"

CISCO-DOT11-IF-MIB::cd11IfAuxSsidBroadcastSsid.1.1 = INTEGER: true(1)

CISCO-DOT11-IF-MIB::cd11IfAuxSsidMaxAssocSta.1.1 = Gauge32: 255

CISCO-DOT11-IF-MIB::cd11IfAuxSsidMicAlgorithm.1.1 = INTEGER: micNone(1)

CISCO-DOT11-IF-MIB::cd11IfAuxSsidWepPermuteAlg.1.1 = INTEGER: wepPermuteNone(1)

There you go!

And please don't forget to rank my posts if they've been helpful. Good Luck!

-Joe

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community:

Review Cisco Networking products for a $25 gift card