Common Test user interface module for the SNMP
application.
The purpose of this module is to simplify SNMP configuration for the
test case writer. Many test cases can use default values for common
operations and then no SNMP configuration files need to be supplied.
When it is necessary to change particular configuration parameters, a
subset of the relevant SNMP configuration files can be passed to
ct_snmp by Common Test configuration files. For more
specialized configuration parameters, a simple SNMP configuration file
can be placed in the test suite data directory. To simplify the test
suite, Common Test keeps track of some of the SNMP manager
information. This way the test suite does not have to handle as many
input parameters as if it had to interface wthe OTP SNMP manager
directly.
Configurable SNMP Manager and Agent Parameters:
Manager configuration:
- [{start_manager, boolean()}
Optional. Default is true.
- {users, [{user_name(), [call_back_module(), user_data()]}]}
Optional.
- {usm_users, [{usm_user_name(), [usm_config()]}]}
Optional. SNMPv3 only.
- {managed_agents,[{agent_name(), [user_name(), agent_ip(), agent_port(), [agent_config()]]}]}
managed_agents is optional.
- {max_msg_size, integer()}
Optional. Default is 484.
- {mgr_port, integer()}
Optional. Default is 5000.
- {engine _id, string()}
Optional. Default is "mgrEngine".
Agent configuration:
- {start_agent, boolean()}
Optional. Default is false.
- {agent_sysname, string()}
Optional. Default is "ct_test".
- {agent_manager_ip, manager_ip()}
Optional. Default is localhost.
- {agent_vsns, list()}
Optional. Default is [v2].
- {agent_trap_udp, integer()}
Optional. Default is 5000.
- {agent_udp, integer()}
Optional. Default is 4000.
- {agent_notify_type, atom()}
Optional. Default is trap.
- {agent_sec_type, sec_type()}
Optional. Default is none.
- {agent_passwd, string()}
Optional. Default is "".
- {agent_engine_id, string()}
Optional. Default is "agentEngine".
- {agent_max_msg_size, string()}
Optional. Default is 484.
The following parameters represents the SNMP configuration files
context.conf, standard.conf, community.conf,
vacm.conf, usm.conf, notify.conf,
target_addr.conf, and target_params.conf. Notice that
all values in agent.conf can be modified by the parameters
listed above. All these configuration files have default values set by
the SNMP application. These values can be overridden by suppling
a list of valid configuration values or a file located in the test
suites data directory, which can produce a list of valid configuration
values if you apply function file:consult/1 to the file.
- {agent_contexts, [term()] | {data_dir_file, rel_path()}}
Optional.
- {agent_community, [term()] | {data_dir_file, rel_path()}}
Optional.
- {agent_sysinfo, [term()] | {data_dir_file, rel_path()}}
Optional.
- {agent_vacm, [term()] | {data_dir_file, rel_path()}}
Optional.
- {agent_usm, [term()] | {data_dir_file, rel_path()}}
Optional.
- {agent_notify_def, [term()] | {data_dir_file, rel_path()}}
Optional.
- {agent_target_address_def, [term()] | {data_dir_file, rel_path()}}
Optional.
- {agent_target_param_def, [term()] | {data_dir_file, rel_path()}}
Optional.
Parameter MgrAgentConfName in the functions is to be a name
you allocate in your test suite using a require statement.
Example (where MgrAgentConfName = snmp_mgr_agent):
suite() -> [{require, snmp_mgr_agent, snmp}].
or
ct:require(snmp_mgr_agent, snmp).
Notice that USM users are needed for SNMPv3 configuration and are
not to be confused with users.
SNMP traps, inform, and report messages are handled by the user
callback module. For details, see the
SNMP application.
It is recommended to use the .hrl files created by the
Erlang/OTP MIB compiler to define the Object Identifiers (OIDs).
For example, to get the Erlang node name from erlNodeTable
in the OTP-MIB:
Oid = ?erlNodeEntry ++ [?erlNodeName, 1]
Furthermore, values can be set for SNMP application configuration
parameters, config, server, net_if, and so on (for
a list of valid parameters and types, see the User's Guide for the SNMP application). This is
done by defining a configuration data variable on the following form:
{snmp_app, [{manager, [snmp_app_manager_params()]},
{agent, [snmp_app_agent_params()]}]}.
A name for the data must be allocated in the suite using
require (see the example above). Pass this name as argument
SnmpAppConfName to
ct_snmp:start/3.
ct_snmp specifies default values for some SNMP application
configuration parameters (such as {verbosity,trace} for parameter
config). This set of defaults is merged with the parameters
specified by the user. The user values override ct_snmp
defaults.