From owner-freebsd-hackers Thu Oct 31 10:49:59 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id KAA27439 for hackers-outgoing; Thu, 31 Oct 1996 10:49:59 -0800 (PST) Received: from who.cdrom.com (who.cdrom.com [204.216.27.3]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id KAA27434; Thu, 31 Oct 1996 10:49:57 -0800 (PST) Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by who.cdrom.com (8.7.5/8.6.11) with SMTP id KAA01032 ; Thu, 31 Oct 1996 10:49:54 -0800 (PST) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <17352(1)>; Thu, 31 Oct 1996 10:45:29 PST Received: from localhost ([127.0.0.1]) by crevenia.parc.xerox.com with SMTP id <177529>; Thu, 31 Oct 1996 10:44:06 -0800 X-Mailer: exmh version 1.6.7 5/3/96 To: moos@degnet.baynet.de cc: FreeBSD-questions , freebsd-hackers , danny@panda.hilink.com.au Subject: Re: Is this network possible with FreeBSD ??? In-reply-to: Your message of "Thu, 31 Oct 1996 02:33:17 PST." <3278806D.2FA6@degnet.baynet.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 31 Oct 1996 10:44:02 PST From: Bill Fenner Message-Id: <96Oct31.104406pst.177529@crevenia.parc.xerox.com> Sender: owner-hackers@freebsd.org X-Loop: FreeBSD.org Precedence: bulk In message <3278806D.2FA6@degnet.baynet.de>you write: > +---------------+ > | FreeBSD-2.1.0 | > |+-------------+| > || NE 2000 || > || 1.2.3.253 || > || ed1 || > ++------o------++ > | > | > ++-------o-------++ > || NE 2000 || > || 1.2.3.36 || > || ed1 || > |+---------------+| > | | > | ISPA +-------+ Telco-wire > | Router | ISDN o------------o ISP 1.2.3.x > | +-------+ net > | | > ++---------------++ This is a fairly strange network, but there are two things you can do: 1) Make the ISPA router proxy-arp for 1.2.3.* and just configure the FreeBSD machine "normally", with a /24 netmask for 1.2.3.* . 2) Give the FreeBSD machine host routes for 1.2.3.1, 1.2.3.2, ..., all pointing to 1.2.3.36. Something like i=1 while [ $i -lt 255 ]; do if [ $i -ne 36 -and $i ne 253 ]; then route add -host 1.2.3.$i 1.2.3.36 fi i=`expr $i + 1` done Bill