Re: no specifc dhcpd port found

2006-10-05 Thread Jonathan McKeown
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
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


no specifc dhcpd port found

2006-10-04 Thread Noah

Hi there,

I am unable to find the dhcpd port in /usr/ports

where should  I be looking?

cheer,s

Noah


# find /usr/ports -name dhcp\*
/usr/ports/net/dhcp-agent
/usr/ports/net/dhcp6
/usr/ports/net/dhcp6/files/dhcp6relay.sh.in
/usr/ports/net/dhcp6/files/dhcp6s.sh.in
/usr/ports/net/dhcp6/files/dhcp6c.sh.in
/usr/ports/net/dhcpdump
/usr/ports/net/dhcping
/usr/ports/net/dhcprelay
/usr/ports/net/dhcprelay/files/dhcprelay.sh.in

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: no specifc dhcpd port found

2006-10-04 Thread John Nielsen
On Wednesday 04 October 2006 17:46, Noah wrote:
 Hi there,

 I am unable to find the dhcpd port in /usr/ports

 where should  I be looking?

net/isc-dhcpd and friends.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: no specifc dhcpd port found

2006-10-04 Thread John Nielsen
On Wednesday 04 October 2006 17:53, John Nielsen wrote:
 On Wednesday 04 October 2006 17:46, Noah wrote:
  Hi there,
 
  I am unable to find the dhcpd port in /usr/ports
 
  where should  I be looking?

 net/isc-dhcpd and friends.

Sorry, net/isc-dhcp3-server and similar.

JN
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: no specifc dhcpd port found

2006-10-04 Thread Philip Hallstrom

I am unable to find the dhcpd port in /usr/ports

where should  I be looking?


/usr/ports/net/isc-dhcp3-server/




cheer,s

Noah


# find /usr/ports -name dhcp\*
/usr/ports/net/dhcp-agent
/usr/ports/net/dhcp6
/usr/ports/net/dhcp6/files/dhcp6relay.sh.in
/usr/ports/net/dhcp6/files/dhcp6s.sh.in
/usr/ports/net/dhcp6/files/dhcp6c.sh.in
/usr/ports/net/dhcpdump
/usr/ports/net/dhcping
/usr/ports/net/dhcprelay
/usr/ports/net/dhcprelay/files/dhcprelay.sh.in

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: no specifc dhcpd port found

2006-10-04 Thread Peter A. Giessel
On 2006/10/04 13:46, Noah seems to have typed:
 where should  I be looking?

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-dhcp.html
*** QUOTE 25.5.7.1 ***
The server is not provided as part of FreeBSD, and so you will need to
install the net/isc-dhcp3-server port to provide this service. See
Chapter 4 for more information on using the Ports Collection.
*** END QUOTE ***
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: no specifc dhcpd port found [SOLVED]

2006-10-04 Thread Noah

Peter A. Giessel wrote:

On 2006/10/04 13:46, Noah seems to have typed:
  

where should  I be looking?



http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-dhcp.html
*** QUOTE 25.5.7.1 ***
The server is not provided as part of FreeBSD, and so you will need to
install the net/isc-dhcp3-server port to provide this service. See
Chapter 4 for more information on using the Ports Collection.
*** END QUOTE ***
  


thanks


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
  


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]