summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--share/man/man8/Makefile4
-rw-r--r--share/man/man8/dhcp.8137
2 files changed, 2 insertions, 139 deletions
diff --git a/share/man/man8/Makefile b/share/man/man8/Makefile
index 2e206b65802..c63d20fa958 100644
--- a/share/man/man8/Makefile
+++ b/share/man/man8/Makefile
@@ -1,9 +1,9 @@
-# $OpenBSD: Makefile,v 1.84 2013/03/26 18:06:00 jasper Exp $
+# $OpenBSD: Makefile,v 1.85 2013/08/08 06:43:02 jmc Exp $
# $NetBSD: Makefile,v 1.13 1996/03/28 21:36:40 mark Exp $
# @(#)Makefile 8.1 (Berkeley) 6/5/93
MAN= afterboot.8 boot_config.8 \
- compat_linux.8 crash.8 daily.8 dhcp.8 \
+ compat_linux.8 crash.8 daily.8 \
diskless.8 genassym.sh.8 intro.8 netstart.8 rc.8 \
rc.conf.8 rc.d.8 rc.shutdown.8 rc.subr.8 release.8 \
security.8 ssl.8 starttls.8 sticky.8 yp.8
diff --git a/share/man/man8/dhcp.8 b/share/man/man8/dhcp.8
deleted file mode 100644
index 23ae0f6d865..00000000000
--- a/share/man/man8/dhcp.8
+++ /dev/null
@@ -1,137 +0,0 @@
-.\" $OpenBSD: dhcp.8,v 1.24 2008/06/08 03:03:37 jdixon Exp $
-.\"
-.\"
-.\" Copyright (c) 1999 Aaron Campbell
-.\" All rights reserved.
-.\"
-.\" Redistribution and use in source and binary forms, with or without
-.\" modification, are permitted provided that the following conditions
-.\" are met:
-.\"
-.\" 1. Redistributions of source code must retain the above copyright
-.\" notice, this list of conditions and the following disclaimer.
-.\" 2. Redistributions in binary form must reproduce the above copyright
-.\" notice, this list of conditions and the following disclaimer in the
-.\" documentation and/or other materials provided with the distribution.
-.\"
-.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
-.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
-.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
-.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
-.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-.\"
-.Dd $Mdocdate: June 8 2008 $
-.Dt DHCP 8
-.Os
-.Sh NAME
-.Nm dhcp
-.Nd configuring
-.Ox
-for DHCP
-.Sh DESCRIPTION
-The Dynamic Host Configuration Protocol (DHCP) allows hosts on a TCP/IP network
-to configure one or more network interfaces based on information collected from
-a DHCP server in response to a DHCP request.
-This mechanism is often used, for example, by cable modem and DSL network
-providers to simplify network configurations for their clients/customers.
-.Pp
-Information typically contained within a DHCP response includes an IP
-address for the interface, subnet mask, broadcast address, router (gateway)
-listing, domain name server listing, and the interface's MTU.
-.Pp
-To set up
-.Ox
-as a DHCP client:
-.Bl -enum -offset indent
-.It
-For each interface that is to be configured via DHCP, create a
-.Pa /etc/hostname.XXX
-file (where XXX is the interface's identifier, e.g., ep1) that starts with
-the word
-.Dq dhcp ,
-optionally followed by additional interface options.
-See
-.Xr hostname.if 5
-for more information on the format of these files.
-.Pp
-The
-.Pa /etc/netstart
-script reads each of these hostname files at boot-time and runs the
-.Xr dhclient 8
-program for each interface that is to be configured via DHCP.
-.It
-[Optional] To tweak settings, edit
-.Pa /etc/dhclient.conf .
-This file is shipped with the system.
-See
-.Xr dhclient.conf 5
-and
-.Xr dhclient 8
-for details.
-.El
-.Pp
-To set up
-.Ox
-as a DHCP server:
-.Bl -enum -offset indent
-.It
-Edit
-.Pa /etc/dhcpd.conf .
-This file is shipped with the system.
-See
-.Xr dhcpd.conf 5
-and
-.Xr dhcpd 8
-for details.
-.It
-Edit
-.Pa /etc/rc.conf.local
-and set
-.Cm dhcpd_flags="" .
-This will cause
-.Ox
-to start the
-.Xr dhcpd 8
-daemon at boot-time and listen for DHCP requests on the local network.
-To start it manually, execute the following command:
-.Pp
-.Dl # /usr/sbin/dhcpd [netif1 netif2 ...]
-.El
-.Pp
-The DHCP client and server use the Berkeley Packet Filter (BPF).
-Ensure the kernel has been compiled with BPF support
-and at least one
-.Pa /dev/bpf*
-file exists per broadcast network interface that is attached to the system.
-This is almost always the case and should only be considered if all other
-troubleshooting options have failed.
-.Pp
-See
-.Xr dhcpd 8
-for information on other available options.
-Note, however, that most of the flags are useful only for debugging purposes.
-.Sh FILES
-.Bl -tag -width /etc/dhcpd.interfaces -compact
-.It Pa /etc/dhcpd.conf
-DHCP server configuration file
-.It Pa /etc/rc.conf.local
-configuration file where
-.Cm dhcpd_flags
-must be set
-.It Pa /etc/dhclient.conf
-DHCP client configuration file
-.It Pa /etc/hostname.XXX
-interface-specific configuration files
-.El
-.Sh SEE ALSO
-.Xr dhclient.conf 5 ,
-.Xr dhcpd.conf 5 ,
-.Xr hostname.if 5 ,
-.Xr dhclient 8 ,
-.Xr dhcpd 8 ,
-.Xr dhcrelay 8