# # ***************************************************************** # * * # * Copyright Compaq Computer Corporation, 2001 * # * * # * The software contained on this media is proprietary to * # * and embodies the confidential technology of Compaq * # * Computer Corporation. Possession, use, duplication or * # * dissemination of the software and media is authorized only * # * pursuant to a valid written license from Compaq Computer * # * Corporation. * # * * # * RESTRICTED RIGHTS LEGEND Use, duplication, or disclosure * # * by the U.S. Government is subject to restrictions as set * # * forth in Subparagraph (c)(1)(ii) of DFARS 252.227-7013, * # * or in FAR 52.227-19, as applicable. * # * * # ***************************************************************** # # HISTORY # # @(#)$RCSfile: snmpd.conf,v $ $Revision: 1.1.4.2 $ (DEC) $Date: 1998/01/30 18:41:41 $ # # # # File: snmp agent configuration file for /usr/sbin/snmpd # # Description: This file defines initial values for the system group, # community names, trap community names, and whether # authentication-failure traps should be generated. # # The form of each line is: # # # Where TAG is one of {sysDescr, sysLocation, sysContact, # snmpEnableAuthenTraps, community, trap}, and VALUE # is a valid value for the given key. # # White space (tabs, spaces, line-feeds/carriage-returns) # and blank lines are ignored. # # Initial system group values. # Valid tags are {sysName, sysLocation, sysContact}. # sysName sysLocation ALCS sysContact sysadmin # # Initial SNMP group values. # The only valid tag is snmpEnableAuthenTraps. # It may have the value 1 (enabled) or 2 (disabled). # snmpEnableAuthenTraps 1 # # Community specification. # # The format for a community is: # community # # o community_name may be any string. # o IP_address indicates the remote site for which this # community is valid. If the IP address is 0.0.0.0, any # address may communicate using that community name. # o privileges may be one of: # 'read' for read only # 'write' for read/write # o If a community name appears more than once, the first # match will be chosen. # community public 0.0.0.0 read # # Trap community specification. # # The format for a trap community is: # trap [SNMP_version] [:port] # # o SNMP_version is optional, and may be one of: # 'v1' for SNMPv1 # 'v2c' for SNMPv2c # When no SNMP version is specified, v1 will be used # by default. # o community_name may be any string. # o IP_address indicates the remote site for which this # community is valid. For traps communities, an IP address # of 0.0.0.0 is not considered valid. # o port is optional, and indicates the remote destination # When no port is specified, the well known SNMP-trap # port (162) will be used by default. # # # examples: # #trap v1 test1 127.0.0.1 #trap test1a 127.0.0.1 #trap v2c test2 127.0.0.1:8162 trap public 192.168.1.99