Click or drag to resize

GenericCode Enumeration

Generic trap code.

Namespace: GSF.Net.Snmp
Assembly: GSF.Net (in GSF.Net.dll) Version: 2.4.181-beta
Syntax
[DataContractAttribute]
public enum GenericCode
View Source
Members
Member nameValueDescription
ColdStart0 Indicates that the agent has rebooted. All management variables will be reset; specifically, Counters and Gauges will be reset to zero (0). One nice thing about the coldStart trap is that it can be used to determine when new hardware is added to the network. When a device is powered on, it sends this trap to its trap destination. If the trap destination is set correctly (i.e., to the IP address of your NMS) the NMS can receive the trap and determine whether it needs to manage the device.
WarmStart1 Indicates that the agent has reinitialized itself. None of the management variables will be reset.
LinkDown2 Sent when an interface on a device goes down. The first variable binding identifies which interface went down.
LinkUp3 Sent when an interface on a device comes back up. The first variable binding identifies which interface came back up.
AuthenticationFailure4 Indicates that someone has tried to query your agent with an incorrect community string; useful in determining if someone is trying to gain unauthorized access to one of your devices.
EgpNeighborLoss5 Indicates that an Exterior Gateway Protocol (EGP) neighbor has gone down.
EnterpriseSpecific6 Indicates that the trap is enterprise-specific. SNMP vendors and users define their own traps under the private-enterprise branch of the SMI object tree. To process this trap properly, the NMS has to decode the specific trap number that is part of the SNMP message.
See Also