From owner-freebsd-questions@FreeBSD.ORG Fri Oct 31 01:49:58 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F65D16A4CE for ; Fri, 31 Oct 2003 01:49:58 -0800 (PST) Received: from CITADEL.NOBULUS.COM (citadel.nobulus.com [212.97.207.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE8EE43FA3 for ; Fri, 31 Oct 2003 01:49:56 -0800 (PST) (envelope-from iva@orange.dk) Received: from CITADEL.NOBULUS.COM (localhost [127.0.0.1]) by CITADEL.NOBULUS.COM (8.12.10/8.12.10) with ESMTP id h9V9nVDF072243 for ; Fri, 31 Oct 2003 10:49:31 +0100 (CET) (envelope-from iva@CITADEL.NOBULUS.COM) Received: (from iva@localhost) by CITADEL.NOBULUS.COM (8.12.10/8.12.10/Submit) id h9V9nVGv072242 for freebsd-questions@freebsd.org; Fri, 31 Oct 2003 10:49:31 +0100 (CET) (envelope-from iva) Date: Fri, 31 Oct 2003 10:49:31 +0100 From: Ilya Varlashkin To: freebsd-questions@freebsd.org Message-ID: <20031031094931.GA72160@CITADEL.NOBULUS.COM> References: <20031030225917.5068.qmail@web10007.mail.yahoo.com> <1067564229.76837.1.camel@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1067564229.76837.1.camel@shumai.marcuscom.com> User-Agent: Mutt/1.5.4i X-Scanned-By: CITADEL.NOBULUS.COM Subject: Re: SNMP help X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Oct 2003 09:49:58 -0000 On Thu, Oct 30, 2003 at 08:37:09PM -0500, Joe Marcus Clarke wrote: > On Thu, 2003-10-30 at 17:59, Ronnie Clark wrote: > > Thanks all for the suggestions. I have the port > > installed, but how do I configure this beast to work > > with OpenView? I have looked at the online docs for > > the port, but it is all jibberish to this newbie. > > Anyone have a simple to follow doc or set of > > guidelines to setup net-snmp to be monitored by > > Openview? > There is nothing so special about HP OpenView - it's just an SNMP manager. They will poll whater it's neccessary from daemon running on your FreeBSD as long as you provide them with appropriate access level in your snmpd.conf. Following could be reasonable start for your /usr/local/share/snmp/snmpd.conf: # syslocation "Room X, Rack Y, second from the top" syscontact "Ronnie Clark , your_telephone" sysservices 76 # # ACL # # name= source community com2sec me localhost VerySecret com2sec hpov Pass4HPOpenView com2sec default default public group meRO v1 me group meRO v2c me group hpovRO v1 hpov group hpovRO v2c hpov group defaultRO v1 default group defaultRO v2c default # incl/excl subtree mask view all included .1 80 view contact included .iso.org.dod.internet.mgmt.mib-2.system.sysContact # Gname context model level prefix read write notif access meRO "" any noauth exact all all none access hpovRO "" any noauth exact all none none access defaultRO "" any noauth exact contact none none #---------------------- end -------------------------------------------- Kind regards, Ilya Varlashkin