From owner-freebsd-questions@FreeBSD.ORG Wed Dec 10 02:32:31 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7259216A4CF for ; Wed, 10 Dec 2003 02:32:31 -0800 (PST) Received: from smtp1.adl2.internode.on.net (smtp1.adl2.internode.on.net [203.16.214.181]) by mx1.FreeBSD.org (Postfix) with ESMTP id E87FC43D28 for ; Wed, 10 Dec 2003 02:32:26 -0800 (PST) (envelope-from malcolm.kay@internode.on.net) Received: from beta.home (ppp109-47.lns1.adl1.internode.on.net [150.101.109.47])hBAAWEe3042753; Wed, 10 Dec 2003 21:02:24 +1030 (CST) Content-Type: text/plain; charset="iso-8859-1" From: Malcolm Kay Organization: At home To: Cristian Salan , "Feroz F. Basir" User-Agent: KMail/1.4.3 References: <20031208115155.27481.qmail@web40603.mail.yahoo.com> <20031209063332.GA757@xnet.ro> <200312100013.44539.malcolm.kay@internode.on.net> In-Reply-To: <200312100013.44539.malcolm.kay@internode.on.net> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200312102102.13875.malcolm.kay@internode.on.net> cc: freebsd-questions@freebsd.org Subject: Re: freebsd mount nwfs X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Date: Wed, 10 Dec 2003 10:32:31 -0000 X-Original-Date: Wed, 10 Dec 2003 21:02:13 +1030 X-List-Received-Date: Wed, 10 Dec 2003 10:32:31 -0000 On Tue, 9 Dec 2003 17:03, Cristian Salan wrote: > On Mon, Dec 08, 2003 at 11:51:55AM +0000, Feroz F. Basir wrote: > > Hi, > > > > I read your email to freebsd mailing list. You be able > > to mount nwfs under freebsd. I'm trying to mount nwfs > > as well but failed for some reason. I compiled in IPX, > > NCP and NWFS in kernel. I put these two line below in > > rc.conf file: > > > > ipxrouted_enable=3D"YES" > > ifconfig_fxp0_ipx=3D"ipx 0x00010010" > > > > This is base on freebsd example. When I ran "ncplist > > s" I got nothing at all. What am I missing here? Can > > you ched some light, please? How do I go about setting > > this ipx thingy under fxp0 interface? > I have not been able to find the original posting; perhaps to a different mail list. I am mounting nwfs on freebsd versions 4.5 to 4.8. The details of how to do this a not easy to find -- even when I've done it before. I think I originally only found the way through a query to this mailing l= ist. At least for FBSD 4.x it is necessary to generate additional pseudo interfaces derived from the fxp0 (or whatever your base interface is) interface each dedicated to a particular IPX variant. This is done with the pseudo-device ef in the kernel configuration or you should be able to use the loadable module if_ef.ko. Take a look at the man page ef(4). Now configure with # ifconfig fxp0f2 ipx 0x00010010 or whatever the appropriate variant is in your case or if you are not sure you should be able to fire up all 4 variants I have actually included this in the kernel configuration with: options IPX #IPX/SPX communications protocols options NCP #NetWare Core protocol pseudo-device ef # Multiple ethernet frames suppor= t options ETHER_II # enable Ethernet_II frame options ETHER_8023 # enable Ethernet_802.3 (Novell) = frame options ETHER_8022 # enable Ethernet_802.2 frame options ETHER_SNAP and then in rc.conf you could use : ifconfig_fxp0f2_ipx=3D"ipx 0x00010010" Malcolm Kay