User Tools
support:american_tower_-_ruckus
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| support:american_tower_-_ruckus [2019/02/05 15:02] – robrien | support:american_tower_-_ruckus [2021/06/25 10:09] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Ruckus Smart Zone ====== | ||
| + | |||
| + | ==== Overview ==== | ||
| + | |||
| + | The implementation of the Ruckus technology on American Tower differs from the implementation of a traditional technology in several ways. Each Ruckus controller sends its traps to a single, centralised controller which then forwards the traps onto the Errigal. Because of this, all Ruckus traps are received from a single IP address which is the IP address of the centralised controller: | ||
| + | |||
| + | {{ : | ||
| + | |||
| + | |||
| + | ==== Trap Rule Implementation ==== | ||
| + | |||
| + | === Example Varbind Values === | ||
| + | |||
| + | {{: | ||
| + | |||
| + | === Hub Level Logic === | ||
| + | |||
| + | As all traps originate from the same IP address, the only way of determining what controller the trap belongs to is by using a varbind value called ruckusSCGEventZoneName, | ||
| + | |||
| + | |||
| + | <code java> | ||
| + | // Find the hub using the name | ||
| + | hub = com.errigal.snmpmanager.knowledge.DasHub? | ||
| + | </ | ||
| + | |||
| + | === Node Level Logic === | ||
| + | |||
| + | Each Ruckus controller can have any number of Access Points (APs) as child elements. Ruckus is unique in that instead of using the name of the child element for alarm association as done with other technologies, | ||
| + | |||
| + | |||
| + | <code java> | ||
| + | //Search for the AP using the IP address | ||
| + | if(apIpAddress){ | ||
| + | | ||
| + | |||
| + | //If no AP is found, we search using the MAC address | ||
| + | if (!networkElement) { | ||
| + | | ||
| + | </ | ||
| + | |||
| + | === MIB Files === | ||
| + | |||
| + | * RUCKUS-SCG-EVENT-MIB | ||
| + | * RUCKUS-SCG-SYSTEM-MIB | ||
| + | * RUCKUS-SCG-TTG-MIB | ||
| + | * RUCKUS-SCG-WLAN-MIB | ||
| + | |||
| + | |||
| + | |||