From owner-freebsd-hackers Thu Oct 10 15:29:11 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id PAA21351 for hackers-outgoing; Thu, 10 Oct 1996 15:29:11 -0700 (PDT) Received: from panda.hilink.com.au (panda.hilink.com.au [203.2.144.5]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id PAA21335 for ; Thu, 10 Oct 1996 15:28:40 -0700 (PDT) Received: (from danny@localhost) by panda.hilink.com.au (8.7.6/8.7.3) id IAA03073; Fri, 11 Oct 1996 08:26:38 +1000 (EST) Date: Fri, 11 Oct 1996 08:26:37 +1000 (EST) From: "Daniel O'Callaghan" To: "Marc G. Fournier" cc: hackers@FreeBSD.org Subject: Re: IP ALIASING In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-hackers@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk On Thu, 10 Oct 1996, Marc G. Fournier wrote: > On Thu, 10 Oct 1996, Jordan K. Hubbard wrote: > > > > Hello > > > Why does this not work with ppp0 under -current? > > > > > > >ifconfig ppp0 alias 206.103.246.162 netmask 0xffffffff > > > >ifconfig: ioctl (SIOCAIFADDR): Destination address required > > > > Because it's not the correct syntax for an ifconfig command? ;-) How about: because it is not the correct syntax for ifconfig using a point to point interface. Either: ifconfig ppp0 alias 206.103.246.162 192.168.254.1 netmask 0xffffffff or ifconfig lo0 alias 206.103.246.162 netmask 0xffffffff Danny