From owner-freebsd-questions@FreeBSD.ORG Tue Jun 12 00:56:29 2007 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8152716A400 for ; Tue, 12 Jun 2007 00:56:29 +0000 (UTC) (envelope-from r17fbsd@xxiii.com) Received: from cartman.xxiii.com (cartman.xxiii.com [208.62.177.45]) by mx1.freebsd.org (Postfix) with ESMTP id 35BE013C458 for ; Tue, 12 Jun 2007 00:56:29 +0000 (UTC) (envelope-from r17fbsd@xxiii.com) Received: from [172.23.23.190] (lan23.xxiii.com [208.62.177.50]) by cartman.xxiii.com (8.13.8/8.13.8) with ESMTP id l5BEiFrp078244; Mon, 11 Jun 2007 10:44:15 -0400 (EDT) (envelope-from r17fbsd@xxiii.com) Message-ID: <466D5FC2.3090701@xxiii.com> Date: Mon, 11 Jun 2007 10:44:18 -0400 From: Rob User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: "B. Cook" References: <466D57D5.4020803@poughkeepsieschools.org> In-Reply-To: <466D57D5.4020803@poughkeepsieschools.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD Questions Subject: Re: Confused about dhclient .conf and -script.. 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: Tue, 12 Jun 2007 00:56:29 -0000 B. Cook wrote: > After reading way more about isc-dhcpd than I wanted to, I found out > that I can customize /etc/dhclient.conf (great). I found a great > dhclient.conf but it seemed to do things that I could not get my FreeBSD > box(es) to do. I'm not quite sure what problems you're experiencing, but here's the one I use to configure a secondary interface to a cable tv isp: interface "fxp0" { supersede domain-name "mydomain.com"; supersede domain-name-servers 127.0.0.1; prepend routers 208.34.1.33; request subnet-mask, broadcast-address, routers; } And of course: fconfig_fxp0="DHCP" in rc.conf I just want an address for it, I DON'T want their Hostname or DNS, so the supersede lines prevent it from replacing those. You probably want to remove those. -RW