1*bb75b0d5SLexi Winter/* 2*bb75b0d5SLexi Winter * SPDX-License-Identifier: BSD-3-Clause 3*bb75b0d5SLexi Winter * 4*bb75b0d5SLexi Winter * Copyright (c) 1997 The Internet Software Consortium. 5*bb75b0d5SLexi Winter * All rights reserved. 6*bb75b0d5SLexi Winter * 7*bb75b0d5SLexi Winter * Redistribution and use in source and binary forms, with or without 8*bb75b0d5SLexi Winter * modification, are permitted provided that the following conditions 9*bb75b0d5SLexi Winter * are met: 10*bb75b0d5SLexi Winter * 11*bb75b0d5SLexi Winter * 1. Redistributions of source code must retain the above copyright 12*bb75b0d5SLexi Winter * notice, this list of conditions and the following disclaimer. 13*bb75b0d5SLexi Winter * 2. Redistributions in binary form must reproduce the above copyright 14*bb75b0d5SLexi Winter * notice, this list of conditions and the following disclaimer in the 15*bb75b0d5SLexi Winter * documentation and/or other materials provided with the distribution. 16*bb75b0d5SLexi Winter * 3. Neither the name of The Internet Software Consortium nor the names 17*bb75b0d5SLexi Winter * of its contributors may be used to endorse or promote products derived 18*bb75b0d5SLexi Winter * from this software without specific prior written permission. 19*bb75b0d5SLexi Winter * 20*bb75b0d5SLexi Winter * THIS SOFTWARE IS PROVIDED BY THE INTERNET SOFTWARE CONSORTIUM AND 21*bb75b0d5SLexi Winter * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, 22*bb75b0d5SLexi Winter * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 23*bb75b0d5SLexi Winter * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 24*bb75b0d5SLexi Winter * DISCLAIMED. IN NO EVENT SHALL THE INTERNET SOFTWARE CONSORTIUM OR 25*bb75b0d5SLexi Winter * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 26*bb75b0d5SLexi Winter * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 27*bb75b0d5SLexi Winter * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 28*bb75b0d5SLexi Winter * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 29*bb75b0d5SLexi Winter * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 30*bb75b0d5SLexi Winter * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 31*bb75b0d5SLexi Winter * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32*bb75b0d5SLexi Winter * SUCH DAMAGE. 33*bb75b0d5SLexi Winter*/ 34*bb75b0d5SLexi Winter 35*bb75b0d5SLexi Wintercomment = "Dynamic Host Configuration Protocol (DHCP) client" 36*bb75b0d5SLexi Winter 37*bb75b0d5SLexi Winterdesc = <<EOD 38*bb75b0d5SLexi WinterThe dhclient(8) utility provides a means for configuring network interfaces 39*bb75b0d5SLexi Winterusing DHCP, BOOTP, or if these protocols fail, by statically assigning an 40*bb75b0d5SLexi Winteraddress. 41*bb75b0d5SLexi Winter 42*bb75b0d5SLexi WinterThe DHCP client is typically started automatically on boot, or by devd(8) 43*bb75b0d5SLexi Winterwhen a new network interface is attached to the system. 44*bb75b0d5SLexi WinterEOD 45