View Source Definition of Manager Net if
The Network Interface (Net If) process delivers SNMP PDUs to the manager server, and receives SNMP PDUs from the manager server. The most common behaviour of a Net if process is that is receives request PDU from the manager server, encodes the PDU into bytes and transmits the bytes onto the network to an agent. When the reply from the agent is received by the Net if process, which it decodes into an SNMP PDU, which it sends to the manager server.
However, that simple behaviour can be modified in numerous ways. For example, the Net if process can apply some kind of encrypting/decrypting scheme on the bytes.
The snmp application provides two different modules, snmpm_net_if
(the
default) and snmpm_net_if_mt
, both uses UDP as the transport protocol i.e the
transport domains transportDomainUdpIpv4
and/or transportDomainUdpIpv6
. The
difference between the two modules is that the latter is "multi-threaded", i.e.
for each message/request a new process is created that processes the
message/request and then exits.
There is a server
config option,
netif_sup that enables "active" Net If
supervision. This is very simple mechanism. The (supervising) process simply
sends a ping message and expects a
pong message response (within a specific time).
The interval between each ping/pong
exchange is user configurable. As is the
time that is allowed for the pong message to
arrive. Both the NetIf module(s) provided with the app supports active
supervision. If a NetIf module/process is used which do not implement this, then
the server cannot be configured with active supervision.
It is also possible to write your own Net if process and this section describes how to do that.
Mandatory Functions
A Net If process must implement the SNMP manager network interface behaviour.
Messages
The section Messages describes mandatory (with exception for the ping/pong messages) messages, which Net If must send to the manager server process.
In this section a Domain
field is the transport domain i.e one of
transportDomainUdpIpv4
or transportDomainUdpIpv6
, and an Addr
field is an
{
IpAddr
,IpPort}
tuple.
Outgoing Messages
Net if must send the following message when it receives an SNMP PDU from the network that is aimed for the MasterAgent:
Server ! {snmp_pdu, Pdu, Domain, Addr}
Pdu
is an SNMP PDU record, as defined insnmp_types.hrl
, with the SNMP request.Domain
is the source transport domain.Addr
is the source address.
Server ! {snmp_trap, Trap, Domain, Addr}
Trap
is either an SNMP pdu record or an trappdu record, as defined insnmp_types.hrl
, with the SNMP request.Domain
is the source transport domain.Addr
is the source address.
Server ! {snmp_inform, Ref, Pdu, PduMS, Domain, Addr}
Ref
is either the atomignore
or something that can be used to identify the inform-request (e.g. request-id).ignore
is used if the response (acknowledgment) to the inform-request has already been sent (this means that the server will not make the call to the inform_response function). See the inform request behaviour configuration option for more info.Pdu
is an SNMP PDU record, as defined insnmp_types.hrl
, with the SNMP request.Domain
is the source transport domain.Addr
is the source address.
Server ! {snmp_report, Data, Domain, Addr}
Data
is either{ok, Pdu}
or{error, ReqId, ReasonInfo, Pdu}
. Which one is used depends on the return value from the MPDprocess_msg/6
function. If the MsgData isok
, the first is used, and if it is{error, ReqId, Reason}
the latter is used.Pdu
is an SNMP PDU record, as defined insnmp_types.hrl
, with the SNMP request.ReqId
is an integer.ReasonInfo
is a term().Domain
is the source transport domain.Addr
is the source address.
Supervisor ! {pong, self()}
Supervisor
is the process that sent the ping message (see below).
Incoming Messages
This section describes the incoming messages which a Net If process may choose to respond to.
-
{ping, Supervisor}
This message is sent to the Net If process by a process that has been configured to perform "active supervision" of the Net If process. The Net If process should respond immediately with a pong message.Supervisor
is apid/0
.
Notes
Since the Net if process is responsible for encoding and decoding of SNMP
messages, it must also update the relevant counters in the SNMP group in MIB-II.
It can use the functions in the module snmpm_mpd
for this purpose (refer to
the Reference Manual, section snmp
, module snmpm_mpd
for more details).
There are also some useful functions for encoding and decoding of SNMP messages
in the module snmp_pdus
.