mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-22 09:41:54 +00:00
4a500725a1
The BIRD protocol SNMP makes it possible to retrieve management information through SNMP. This is accomplished by implementing AgentX protocol. The BIRD acts as an AgentX subagent, registers to master agent and provides management information. Master agent handles SNMP communication and forwards request to registered subagents. You will therefore need an additional component -- a SNMP daemon capable of acting as AgentX master agent. In theory, the information consumer don't have to support SNMP and could be very simple master agent for logging/monitoring the BIRD state. For more detail see provided documentation. This commit is squashed version of development history. Full development history could be found on branch `proto-snmp'.
19 lines
267 B
Plaintext
19 lines
267 B
Plaintext
#
|
|
# snmpd configuration file
|
|
#
|
|
|
|
# SNMP connection address
|
|
agentaddress 127.0.0.1
|
|
|
|
# enable AgentX protocol
|
|
master agentx
|
|
|
|
# AgentX connection address
|
|
agentXSocket tcp:localhost:705
|
|
|
|
|
|
# Create example user
|
|
createUser snmp_name MD5 test_pass
|
|
rwuser snmp_name noauth
|
|
|