SlideShare a Scribd company logo
12
Most read
13
Most read
19
Most read
Oracle Enterprise manager SNMP and Exadata
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
How Enterprise Manager uses
SNMP to monitor Exadata
Mike Chafin
Principal Member of Technical Staff
Maximum Availability Architecture
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
Safe Harbor Statement
The following is intended to outline our general product direction. It is intended for
information purposes only, and may not be incorporated into any contract. It is not a
commitment to deliver any material, code, or functionality, and should not be relied upon
in making purchasing decisions. The development, release, and timing of any features or
functionality described for Oracle’s products remains at the sole discretion of Oracle.
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
What is SNMP?
• SNMP (Simple Network Management Protocol) is an internet standard protocol for
sending and receiving information to and from devices
• SNMP standard is defined by Internet Engineering Task Force (IETF)
• Currently there are four versions: v1, v2, v2c and v3
• v2 was never widely adopted due to an overly complex security model
• v1 and v2c have several areas of incompatibility.
• V2c is the most widely prevalent implementation
• v3 primarily added security and remote configuration enhancements to SNMP
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
SNMP Terminology
• MIB (Management Information Base)
Collection of definitions which define the properties of the
managed object
The MIB resides on the managed object
• Agent
Gathers information about the local device and saves them
in the MIB
• SNMP Manager
A system that is configured to poll SNMP agents for
information
Managed Object
MIB Database
SNMP Agent
SNMP Receiver
Monitoring
Software
SNMP Receiver
Network
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
Why does Enterprise Manager use SNMP for Exadata?
• Exadata Hardware components notify Enterprise Manager of component failures via
SNMP traps
• Information is also gathered using SNMP Get operations on certain components such
as the PDUs
• SNMP is configured in various places
CELLCLI
DBMCLI
IBSWITCH ilom
Cisco Switch admin interface
PDU ilom website
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
SNMP Operations
• GetRequest
A manager-to-agent request to retrieve information
• SetRequest
A manager-to-agent request to change a value
• GetNextRequest
A manager-to-agent request to discover available variables and their values
• GetBulkRequest
A manager-to-agent request for multiple iterations of GetNextRequest
• Response
Returns variable bindings and acknowledgement from agent to manager for GetRequest, SetRequest, GetNextRequest, GetBulkRequest
and InformRequest
• Trap
Asynchronous notification from agent to manager. SNMP traps enable an agent to notify the management station of significant events
by way of an unsolicited SNMP message.
• InformRequest
Acknowledged asynchronous notification
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
SNMP Flow
• There is no need to configure snmpd on the agent hosts to receive traps
• The EM agent contains code to act as a receiver
• All rack components should be configured to send SNMP traps to both the
primary and backup monitoring agents
• Relevant information is then sent from the
agent to the OMS for processing and the
creation of Incidents
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
SNMP Community String
• Sent along with each GET request
• Allows access to the specified Managed Object
• Used only in v1, v2 and v2c
• Most objects ship with a default community string of public
• Enterprise Manager uses read-only community strings
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
Exadata Component SNMP Configuration
• During Exadata discovery some components are automatically configured for SNMP
InfiniBand Switches (v2c)
Storage Servers (v1)
**(Plug-In version 12.1.0.2) and later. Earlier
versions require manual entry
• Enter the desired community string
on screens eight and nine of discovery
• Always use a secure community string!
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
Exadata Component SNMP Configuration(contd.)
• Remaining components must be manually configured
Compute Node ilom (v2c)
Cisco Switch (v1)
PDUs (v1)
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
Exadata Compute Node SNMP Configuration
• Compute nodes are configured using dbmcli (Exadata version 12.1.2.1.0 and later) or
exadata_mon_hw_asr.pl in earlier versions
dbmcli -e "ALTER DBSERVER snmpSubscriber=((host='[agent1_hostname]',port=[agent1_port],
community=‘internal',type=asr),host='[agent2_hostname]',port=[agent2_port],community=‘internal',type=asr))“
• “type=asr” specifies that the SNMP version should be v2c
• To Verify the configuration on the Compute Node
dbmcli -e "LIST DBSERVER attributes snmpSubscriber“
• There should be an entry for the hosts and ports of both monitoring agents
((host=agent1_hostname,port=agent1_port,community=Internal,type=asr),
(host=agent2_hostname,port=agent2_port,community=Internal,type=asr))
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
Exadata Ethernet Switch SNMP Configuration
• Login to the switch and enter configuration mode
ssh cisco-switch-host -l <admin user>
User Access Verification Password:
> enable
Password:
# configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
#
• Allow access for the agents
#access-list 1 permit agent1_ip_address agent2_ip_address
• Add agent subscriptions
#snmp-server host [agent1_ip] version 1 internal udp-port [agent1_port]
#snmp-server host [agent2_ip] version 1 internal udp-port [agent2_port]
• Set the switch to only send relevant traps
#snmp-server enable traps envmon
• Save the configuration
# end
# copy running-config startup-config
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
Exadata Ethernet Switch SNMP Configuration
• Verify the configuration
#show configuration
<TRIMMED>
snmp-server host agent1_ip public udp-port agent1_port entity envmon config snmp
snmp-server host agent2_ip public udp-port agent2_port entity envmon config snmp
<TRIMMED>
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
Exadata PDU SNMP Configuration
• Login to the PDU with a web browser
• Click on the “Net Configuration” button
• Scroll down to the SNMP section
Ensure “SNMP enable” option is checked
Add an entry with each agent’s IP and community string
Select the v1 radio button
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
Exadata PDU SNMP Configuration
• Next click the Submit button
• Repeat the above steps on the second PDU
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
Verify Storage Server SNMP Configuration
• To Verify the configuration on the Storage Server
cellcli -e "LIST cell attributes snmpSubscriber“
• There should be an entry for the hosts and ports of both monitoring agents
((host=agent1_hostname,port=agent1_port,community=Internal,type=asr),
(host=agent2_hostname,port=agent2_port,community=Internal,type=asr))
• If running an Exadata Plugin version below 12.1.0.2 the cell must be manually configured as shown below
cell -e "ALTER CELL snmpSubscriber=((host='agent1_hostname',port=agent1_port,
community=‘internal',type=asr),(host='agent2_hostname’,port=agent2_port,community=‘internal',type=asr))“
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
Verify Infiniband SNMP Configuration
• Login to the Infiniband switch with a web browser
Select ConfigurationAlert Management
• There should be an entry for each agent with the following
Level=minor
Destination=agent_ip,agent_port,snmp1 v1,community “community string”
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
Finding SNMP Information in Enterprise Manager
• There is no way to view some target SNMP information such as community string in
Enterprise Manager once the target is discovered
• However repvfy can be used to extract the information
repvfy -tns haem.world -pwd notwelcome1 dump exadata_validation -name "DB Machine
scab02.us.oracle.com“
• For more information on repvfy see MOS Note 421053.1
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
Conclusion
• With SNMP configuration complete any hardware faults that occur on Exadata rack
components should be reported to Enterprise Manager.
• These faults can be viewed in Enterprise Manager Incident Manager
• For more information on Incident Manager :
https://docs.oracle.com/cd/E24628_01/doc.121/e24473/incident_mgmt.htm#EMADM9790
Copyright © 2014 Oracle and/or its affiliates. All rights reserved. |
References
• For more information refer to: Enterprise Manager Exadata Management Getting Started Guide
• For more information on Exadata Monitoring refer to: Exadata health and resource usage monitoring
• For more information on repvfy see MOS Note 421053.1
Oracle Enterprise manager SNMP and Exadata

More Related Content

PDF
Oracle Cloud Infrastructure:2023年2月度サービス・アップデート
PDF
[dbts-2014-tokyo] 目指せExadata!! Oracle DB高速化を目指した構成
PDF
Ansibleで始めるインフラ構築自動化
PDF
Zero Data Loss Recovery Applianceのご紹介
PDF
Zero Data Loss Recovery Applianceによるデータベース保護のアーキテクチャ
PDF
Oracle Data Guard による高可用性
PDF
Exadata X8M-2 KVM仮想化ベストプラクティス
PDF
NTT DATA と PostgreSQL が挑んだ総力戦
Oracle Cloud Infrastructure:2023年2月度サービス・アップデート
[dbts-2014-tokyo] 目指せExadata!! Oracle DB高速化を目指した構成
Ansibleで始めるインフラ構築自動化
Zero Data Loss Recovery Applianceのご紹介
Zero Data Loss Recovery Applianceによるデータベース保護のアーキテクチャ
Oracle Data Guard による高可用性
Exadata X8M-2 KVM仮想化ベストプラクティス
NTT DATA と PostgreSQL が挑んだ総力戦

What's hot (20)

PDF
WindowsのCP932に苦闘している件
PDF
S13 Oracle Database を Microsoft Azure 上で運用する為に~基本事項とベストプラクティス
PDF
しばちょう先生による特別講義! RMANバックアップの運用と高速化チューニング
PDF
アーキテクチャから理解するPostgreSQLのレプリケーション
PDF
Oracle GoldenGateでの資料採取(トラブル時に採取すべき資料)
PDF
最近のOpenStackを振り返ってみよう
PDF
試して覚えるPacemaker入門 『リソース設定編』
PDF
DockerとPodmanの比較
PDF
[오픈소스컨설팅]RHEL7/CentOS7 Pacemaker기반-HA시스템구성-v1.0
PDF
Standard Edition High Availability (SEHA) - The Why, What & How
PPTX
VMware overview presentation by alamgir hossain
PPTX
VMware vSphere+ and vSAN+ Pricing and Packaging Partner Facing Deck EN (1).pptx
PDF
Oracle Database 11g,12cからのアップグレード対策とクラウド移行 (Oracle Cloudウェビナーシリーズ: 2021年7...
PDF
Oracle RAC Virtualized - In VMs, in Containers, On-premises, and in the Cloud
PDF
YugabyteDBを使ってみよう(NewSQL/分散SQLデータベースよろず勉強会 #1 発表資料)
PDF
今、改めて考えるPostgreSQLプラットフォーム - マルチクラウドとポータビリティ -(PostgreSQL Conference Japan 20...
PPTX
Systems oracle overview_hardware
PDF
データベース技術の羅針盤
PDF
Oracle GoldenGate Veridata概要
PDF
オススメのJavaログ管理手法 ~コンテナ編~(Open Source Conference 2022 Online/Spring 発表資料)
WindowsのCP932に苦闘している件
S13 Oracle Database を Microsoft Azure 上で運用する為に~基本事項とベストプラクティス
しばちょう先生による特別講義! RMANバックアップの運用と高速化チューニング
アーキテクチャから理解するPostgreSQLのレプリケーション
Oracle GoldenGateでの資料採取(トラブル時に採取すべき資料)
最近のOpenStackを振り返ってみよう
試して覚えるPacemaker入門 『リソース設定編』
DockerとPodmanの比較
[오픈소스컨설팅]RHEL7/CentOS7 Pacemaker기반-HA시스템구성-v1.0
Standard Edition High Availability (SEHA) - The Why, What & How
VMware overview presentation by alamgir hossain
VMware vSphere+ and vSAN+ Pricing and Packaging Partner Facing Deck EN (1).pptx
Oracle Database 11g,12cからのアップグレード対策とクラウド移行 (Oracle Cloudウェビナーシリーズ: 2021年7...
Oracle RAC Virtualized - In VMs, in Containers, On-premises, and in the Cloud
YugabyteDBを使ってみよう(NewSQL/分散SQLデータベースよろず勉強会 #1 発表資料)
今、改めて考えるPostgreSQLプラットフォーム - マルチクラウドとポータビリティ -(PostgreSQL Conference Japan 20...
Systems oracle overview_hardware
データベース技術の羅針盤
Oracle GoldenGate Veridata概要
オススメのJavaログ管理手法 ~コンテナ編~(Open Source Conference 2022 Online/Spring 発表資料)
Ad

Similar to Oracle Enterprise manager SNMP and Exadata (20)

PPTX
RR_07 Maint Monitoring and Tshooting.pptx
PDF
CampusSDN2017 - Jawdat: SDN Technology Evolvement
PPTX
Exploring the Final Frontier of Data Center Orchestration: Network Elements -...
PDF
Security defined routing_cybergamut_v1_1
PPTX
L2 and L3 agent restructure
PPSX
SNMP OPC Server from Transcend Automation
PPTX
CCNA4 Verson6 Chapter5
PPTX
CCNA Network Monitoring
PPT
Chapter 2 overview
PPTX
[old] Network Performance Monitoring for DevOps and IT
PPTX
DCUS17 : Docker networking deep dive
PPTX
Vplex rr Installation and Setup document .pptx
PDF
Ch2 - Securing Network Devices - CCNA Security.pdf
PPT
CCNA_Security_02.ppt
PPT
Curso de Seguridad de Redes Inalambricas CCNA
PDF
Puppet devops wdec
PPTX
Ansible benelux meetup - Amsterdam 27-5-2015
PPTX
Virtualization & Network Connectivity
PPTX
CENTRAL MANAGEMENT OF NETWORK AND CALL SERVICES
PDF
DPDK Summit 2015 - RIFT.io - Tim Mortsolf
RR_07 Maint Monitoring and Tshooting.pptx
CampusSDN2017 - Jawdat: SDN Technology Evolvement
Exploring the Final Frontier of Data Center Orchestration: Network Elements -...
Security defined routing_cybergamut_v1_1
L2 and L3 agent restructure
SNMP OPC Server from Transcend Automation
CCNA4 Verson6 Chapter5
CCNA Network Monitoring
Chapter 2 overview
[old] Network Performance Monitoring for DevOps and IT
DCUS17 : Docker networking deep dive
Vplex rr Installation and Setup document .pptx
Ch2 - Securing Network Devices - CCNA Security.pdf
CCNA_Security_02.ppt
Curso de Seguridad de Redes Inalambricas CCNA
Puppet devops wdec
Ansible benelux meetup - Amsterdam 27-5-2015
Virtualization & Network Connectivity
CENTRAL MANAGEMENT OF NETWORK AND CALL SERVICES
DPDK Summit 2015 - RIFT.io - Tim Mortsolf
Ad

Recently uploaded (20)

PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PPTX
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
PPTX
sap open course for s4hana steps from ECC to s4
PDF
Approach and Philosophy of On baking technology
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
A comparative analysis of optical character recognition models for extracting...
PPTX
Machine Learning_overview_presentation.pptx
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
Spectral efficient network and resource selection model in 5G networks
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
The Rise and Fall of 3GPP – Time for a Sabbatical?
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Mobile App Security Testing_ A Comprehensive Guide.pdf
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Reach Out and Touch Someone: Haptics and Empathic Computing
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
ACSFv1EN-58255 AWS Academy Cloud Security Foundations.pptx
sap open course for s4hana steps from ECC to s4
Approach and Philosophy of On baking technology
MIND Revenue Release Quarter 2 2025 Press Release
A comparative analysis of optical character recognition models for extracting...
Machine Learning_overview_presentation.pptx
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Digital-Transformation-Roadmap-for-Companies.pptx
Diabetes mellitus diagnosis method based random forest with bat algorithm
gpt5_lecture_notes_comprehensive_20250812015547.pdf
Spectral efficient network and resource selection model in 5G networks
20250228 LYD VKU AI Blended-Learning.pptx
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx

Oracle Enterprise manager SNMP and Exadata

  • 2. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | How Enterprise Manager uses SNMP to monitor Exadata Mike Chafin Principal Member of Technical Staff Maximum Availability Architecture
  • 3. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle’s products remains at the sole discretion of Oracle.
  • 4. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | What is SNMP? • SNMP (Simple Network Management Protocol) is an internet standard protocol for sending and receiving information to and from devices • SNMP standard is defined by Internet Engineering Task Force (IETF) • Currently there are four versions: v1, v2, v2c and v3 • v2 was never widely adopted due to an overly complex security model • v1 and v2c have several areas of incompatibility. • V2c is the most widely prevalent implementation • v3 primarily added security and remote configuration enhancements to SNMP
  • 5. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | SNMP Terminology • MIB (Management Information Base) Collection of definitions which define the properties of the managed object The MIB resides on the managed object • Agent Gathers information about the local device and saves them in the MIB • SNMP Manager A system that is configured to poll SNMP agents for information Managed Object MIB Database SNMP Agent SNMP Receiver Monitoring Software SNMP Receiver Network
  • 6. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | Why does Enterprise Manager use SNMP for Exadata? • Exadata Hardware components notify Enterprise Manager of component failures via SNMP traps • Information is also gathered using SNMP Get operations on certain components such as the PDUs • SNMP is configured in various places CELLCLI DBMCLI IBSWITCH ilom Cisco Switch admin interface PDU ilom website
  • 7. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | SNMP Operations • GetRequest A manager-to-agent request to retrieve information • SetRequest A manager-to-agent request to change a value • GetNextRequest A manager-to-agent request to discover available variables and their values • GetBulkRequest A manager-to-agent request for multiple iterations of GetNextRequest • Response Returns variable bindings and acknowledgement from agent to manager for GetRequest, SetRequest, GetNextRequest, GetBulkRequest and InformRequest • Trap Asynchronous notification from agent to manager. SNMP traps enable an agent to notify the management station of significant events by way of an unsolicited SNMP message. • InformRequest Acknowledged asynchronous notification
  • 8. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | SNMP Flow • There is no need to configure snmpd on the agent hosts to receive traps • The EM agent contains code to act as a receiver • All rack components should be configured to send SNMP traps to both the primary and backup monitoring agents • Relevant information is then sent from the agent to the OMS for processing and the creation of Incidents
  • 9. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | SNMP Community String • Sent along with each GET request • Allows access to the specified Managed Object • Used only in v1, v2 and v2c • Most objects ship with a default community string of public • Enterprise Manager uses read-only community strings
  • 10. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | Exadata Component SNMP Configuration • During Exadata discovery some components are automatically configured for SNMP InfiniBand Switches (v2c) Storage Servers (v1) **(Plug-In version 12.1.0.2) and later. Earlier versions require manual entry • Enter the desired community string on screens eight and nine of discovery • Always use a secure community string!
  • 11. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | Exadata Component SNMP Configuration(contd.) • Remaining components must be manually configured Compute Node ilom (v2c) Cisco Switch (v1) PDUs (v1)
  • 12. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | Exadata Compute Node SNMP Configuration • Compute nodes are configured using dbmcli (Exadata version 12.1.2.1.0 and later) or exadata_mon_hw_asr.pl in earlier versions dbmcli -e "ALTER DBSERVER snmpSubscriber=((host='[agent1_hostname]',port=[agent1_port], community=‘internal',type=asr),host='[agent2_hostname]',port=[agent2_port],community=‘internal',type=asr))“ • “type=asr” specifies that the SNMP version should be v2c • To Verify the configuration on the Compute Node dbmcli -e "LIST DBSERVER attributes snmpSubscriber“ • There should be an entry for the hosts and ports of both monitoring agents ((host=agent1_hostname,port=agent1_port,community=Internal,type=asr), (host=agent2_hostname,port=agent2_port,community=Internal,type=asr))
  • 13. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | Exadata Ethernet Switch SNMP Configuration • Login to the switch and enter configuration mode ssh cisco-switch-host -l <admin user> User Access Verification Password: > enable Password: # configure terminal Enter configuration commands, one per line. End with CNTL/Z. # • Allow access for the agents #access-list 1 permit agent1_ip_address agent2_ip_address • Add agent subscriptions #snmp-server host [agent1_ip] version 1 internal udp-port [agent1_port] #snmp-server host [agent2_ip] version 1 internal udp-port [agent2_port] • Set the switch to only send relevant traps #snmp-server enable traps envmon • Save the configuration # end # copy running-config startup-config
  • 14. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | Exadata Ethernet Switch SNMP Configuration • Verify the configuration #show configuration <TRIMMED> snmp-server host agent1_ip public udp-port agent1_port entity envmon config snmp snmp-server host agent2_ip public udp-port agent2_port entity envmon config snmp <TRIMMED>
  • 15. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | Exadata PDU SNMP Configuration • Login to the PDU with a web browser • Click on the “Net Configuration” button • Scroll down to the SNMP section Ensure “SNMP enable” option is checked Add an entry with each agent’s IP and community string Select the v1 radio button
  • 16. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | Exadata PDU SNMP Configuration • Next click the Submit button • Repeat the above steps on the second PDU
  • 17. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | Verify Storage Server SNMP Configuration • To Verify the configuration on the Storage Server cellcli -e "LIST cell attributes snmpSubscriber“ • There should be an entry for the hosts and ports of both monitoring agents ((host=agent1_hostname,port=agent1_port,community=Internal,type=asr), (host=agent2_hostname,port=agent2_port,community=Internal,type=asr)) • If running an Exadata Plugin version below 12.1.0.2 the cell must be manually configured as shown below cell -e "ALTER CELL snmpSubscriber=((host='agent1_hostname',port=agent1_port, community=‘internal',type=asr),(host='agent2_hostname’,port=agent2_port,community=‘internal',type=asr))“
  • 18. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | Verify Infiniband SNMP Configuration • Login to the Infiniband switch with a web browser Select ConfigurationAlert Management • There should be an entry for each agent with the following Level=minor Destination=agent_ip,agent_port,snmp1 v1,community “community string”
  • 19. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | Finding SNMP Information in Enterprise Manager • There is no way to view some target SNMP information such as community string in Enterprise Manager once the target is discovered • However repvfy can be used to extract the information repvfy -tns haem.world -pwd notwelcome1 dump exadata_validation -name "DB Machine scab02.us.oracle.com“ • For more information on repvfy see MOS Note 421053.1
  • 20. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | Conclusion • With SNMP configuration complete any hardware faults that occur on Exadata rack components should be reported to Enterprise Manager. • These faults can be viewed in Enterprise Manager Incident Manager • For more information on Incident Manager : https://docs.oracle.com/cd/E24628_01/doc.121/e24473/incident_mgmt.htm#EMADM9790
  • 21. Copyright © 2014 Oracle and/or its affiliates. All rights reserved. | References • For more information refer to: Enterprise Manager Exadata Management Getting Started Guide • For more information on Exadata Monitoring refer to: Exadata health and resource usage monitoring • For more information on repvfy see MOS Note 421053.1

Editor's Notes

  • #8: IB switches and Cisco switches use getbulkrequest and traps PDU uses get operations and traps Cell targets use traps and getrequests Point out that one of the challenges of SNMP management is its distributed nature
  • #13: Go briefly over why we need two enthttps://docs.oracle.com/cd/E24628_01/doc.121/e24473/incident_mgmt.htm#EMADM9790ries. One for the primary agent and one for the backup agent.