From owner-freebsd-questions@FreeBSD.ORG Thu Oct 5 07:10:20 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 A891116A4D4 for ; Thu, 5 Oct 2006 07:10:20 +0000 (UTC) (envelope-from jonathan@hst.org.za) Received: from sirian.hst.org.za (sirian.hst.org.za [209.203.2.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0315B43D7B for ; Thu, 5 Oct 2006 07:10:02 +0000 (GMT) (envelope-from jonathan@hst.org.za) Received: from localhost (localhost.hst.org.za [127.0.0.1]) by sirian.hst.org.za (Postfix) with ESMTP id ECE1131C874 for ; Thu, 5 Oct 2006 09:11:20 +0200 (SAST) Received: from sirian.hst.org.za ([127.0.0.1]) by localhost (sirian.hst.org.za [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 63363-03 for ; Thu, 5 Oct 2006 09:11:20 +0200 (SAST) Received: by sirian.hst.org.za (Postfix, from userid 1004) id 6353931C808; Thu, 5 Oct 2006 09:11:20 +0200 (SAST) Received: from sysadmin.int.dbn.hst.org.za (sysadmin.int.dbn.hst.org.za [10.1.1.20]) by sirian.hst.org.za (Postfix) with ESMTP id 0910631C974 for ; Thu, 5 Oct 2006 09:11:19 +0200 (SAST) From: Jonathan McKeown Organization: Health Systems Trust To: freebsd-questions@freebsd.org Date: Thu, 5 Oct 2006 09:11:52 +0200 User-Agent: KMail/1.7.2 References: <45242BA9.9060801@enabled.com> In-Reply-To: <45242BA9.9060801@enabled.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200610050911.52898.jonathan@hst.org.za> X-Spam-Checker-Version: SpamAssassin 2.61 (1.212.2.1-2003-12-09-exp) on sirian.hst.org.za X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=7.0 tests=BAYES_00 autolearn=ham version=2.61 X-Virus-Scanned: by amavisd-new at hst.org.za Subject: Re: no specifc dhcpd port found X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Oct 2006 07:10:20 -0000 On Wednesday 04 October 2006 23:46, Noah wrote: > Hi there, > > I am unable to find the dhcpd port in /usr/ports > > where should I be looking? > > # find /usr/ports -name dhcp\* I find the easiest way to search for ports is # cd /usr/ports # make search name=dhcp | grep -A2 '^Port:' This finds every port whose name includes the string dhcp, and then gives the Port: line and the two following it in each response. This drops the Maintainer:, B-deps:, R-deps:, and Web: lines, giving you something like: Port: dhcp-agent-0.41 Path: /usr/ports/net/dhcp-agent Info: A portable UNIX Dynamic Host Configuration suite -- Port: dhcp6-20040903a Path: /usr/ports/net/dhcp6 Info: KAME DHCP6 client and server -- Port: dhcpdump-1.7 Path: /usr/ports/net/dhcpdump Info: Decode and diagnose sniffed DHCP packets -- Port: dhcping-1.2 Path: /usr/ports/net/dhcping Info: Send DHCP request to DHCP server for monitoring purposes -- Port: isc-dhcp3-client-3.0.1.r14_6 Path: /usr/ports/net/isc-dhcp3-client Info: The ISC Dynamic Host Configuration Protocol client -- Port: isc-dhcp3-devel-3.0.1.r14_6 Path: /usr/ports/net/isc-dhcp3-devel Info: The ISC Dynamic Host Configuration Protocol API -- Port: isc-dhcp3-relay-3.0.1.r14_6 Path: /usr/ports/net/isc-dhcp3-relay Info: The ISC Dynamic Host Configuration Protocol relay -- Port: isc-dhcp3-server-3.0.1.r14_6 Path: /usr/ports/net/isc-dhcp3-server Info: The ISC Dynamic Host Configuration Protocol server -- Port: wide-dhcp-1.4.0.6_2 Path: /usr/ports/net-mgmt/wide-dhcp Info: Dynamic Host Configuration Protocol, WIDE Implementation Jonathan