From owner-freebsd-doc@FreeBSD.ORG Fri Oct 3 09:59:51 2008 Return-Path: Delivered-To: doc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 52FFD10656A0 for ; Fri, 3 Oct 2008 09:59:51 +0000 (UTC) (envelope-from sonic2000gr@gmail.com) Received: from mu-out-0910.google.com (mu-out-0910.google.com [209.85.134.191]) by mx1.freebsd.org (Postfix) with ESMTP id CEF148FC0C for ; Fri, 3 Oct 2008 09:59:50 +0000 (UTC) (envelope-from sonic2000gr@gmail.com) Received: by mu-out-0910.google.com with SMTP id i2so1259072mue.3 for ; Fri, 03 Oct 2008 02:59:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=4+dQgagotRKVKN5RRzo4O3Hpi7Mo8u52pWSPpZnzV7o=; b=TAz/0Iy4dcxJy1HHfkXXmTWXWG2gtS1l6wVbvb4Q0CatjmfnbgDk4pWwlaDhbt1fru RK7aI+oJZUTYCasEVjQYkB0nLOXwDnkZvQacT4KIjhaKXwBye402aUC7E91S24XJpptk oTf4Fxm2XC1d/tlD8NGuW2lYM/EWweB1S/d1A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; b=mN0M5O5cUJ2Rt7V0u+aHsnldi6zEd3zoh4zjs6EPjKSYwo/f9EgZCjWEdHwqIUbeQm zPQeoyX9F2r6CuU9b/USbLK59iWyKbfylL9uofEmRaCz3wrGdJWDUdwqX4YgrauI+BnV jeLRGUShDYnlxzZYyQt8FZKjPy38U5bVm0Q1o= Received: by 10.103.23.4 with SMTP id a4mr520234muj.0.1223027989616; Fri, 03 Oct 2008 02:59:49 -0700 (PDT) Received: from atlantis.dyndns.org (athedsl-290633.home.otenet.gr [85.73.182.231]) by mx.google.com with ESMTPS id y6sm11491832mug.7.2008.10.03.02.59.47 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 03 Oct 2008 02:59:48 -0700 (PDT) Message-ID: <48E5ED12.2090200@gmail.com> Date: Fri, 03 Oct 2008 12:59:46 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.16 (X11/20080829) MIME-Version: 1.0 To: Phil Sorber References: <48E58AE7.2000107@sorber.net> In-Reply-To: <48E58AE7.2000107@sorber.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: doc@FreeBSD.org, "Thomas J. Canich" Subject: Re: Documentation Correction X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Oct 2008 09:59:51 -0000 Phil Sorber wrote: > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-dhcp.html > > > Section 30.5.4 > > dhcp_program and dhcp_flags should read dhclient_program and > dhclient_flags as per the rc.conf man page: > > http://www.freebsd.org/cgi/man.cgi?query=rc.conf&apropos=0&sektion=0&manpath=FreeBSD+7.0-RELEASE&format=html > > > I've tested and confirmed this. > > Thanks. Hi Phil, A quick look at /etc/defaults/rc.conf confirms your findings: $ more /etc/defaults/rc.conf |grep dhcp dhclient_program="/sbin/dhclient" # Path to dhcp client program. dhclient_flags="" # Extra flags to pass to dhcp client. ... I've patched the handbook a few minutes ago, it will appear on the website in (mostly) a few hours. Thanks for submitting this! manolis@