From owner-freebsd-doc@FreeBSD.ORG Sun Feb 8 04:00:36 2004 Return-Path: Delivered-To: freebsd-doc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51E9816A4CF for ; Sun, 8 Feb 2004 04:00:36 -0800 (PST) Received: from sis1.snu.ac.kr (sis1.snu.ac.kr [147.46.10.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id CACCF43D1D for ; Sun, 8 Feb 2004 04:00:35 -0800 (PST) (envelope-from nospam@users.sourceforge.net) Received: from users.sourceforge.net (cisr.snu.ac.kr [147.46.44.181]) by sis1.snu.ac.kr (8.12.10/8.12.10) with ESMTP id i18BvLAn069474 for ; Sun, 8 Feb 2004 20:57:21 +0900 Message-ID: <402624E2.8010607@users.sourceforge.net> Date: Sun, 08 Feb 2004 21:00:34 +0900 From: Rob User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040207 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-doc@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Handbook 19.7 Diskless Operation: bug in configuring swap text X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Feb 2004 12:00:36 -0000 Hi, Section "19.7.1.6 Configuring Swap", on diskless operation, has a mistake, that drove me almost crazy. It says there: ---------------------------------------------------------------- /etc/bootptab would use the following syntax instead: T128="192.168.4.4:/netswapvolume/netswap":T129=64000 ---------------------------------------------------------------- The T129 here is totally wrong, because this T129 is a syntax error and stops bootpd from working properly! The syntax for Tn tag is something like: n is an RFC1084 vendor field tag number [...] The generic data may be represented as either a stream of hexadecimal numbers or as a quoted string of ASCII characters. So the second line above should be replaced by: T128="192.168.4.4:/netswapvolume/netswap":T129=0000fa00 Can someone fix this in the handbook? Thanks, Rob.