From owner-freebsd-questions Mon Aug 9 5:24:54 1999 Delivered-To: freebsd-questions@freebsd.org Received: from ns.binep.ac.ru (ns.binep.ac.ru [193.233.37.5]) by hub.freebsd.org (Postfix) with ESMTP id D66F014E18 for ; Mon, 9 Aug 1999 05:24:43 -0700 (PDT) (envelope-from goshik@binep.ac.ru) Received: from serv2.binep.ac.ru (serv2 [193.233.44.77]) by ns.binep.ac.ru (8.9.2/8.8.8) with SMTP id QAA33148; Mon, 9 Aug 1999 16:29:34 +0400 (MSD) (envelope-from goshik@binep.ac.ru) Reply-To: "Igor B. Bykhalo" From: "Igor B. Bykhalo" To: "FreeBSD-questions" Cc: Subject: Re: ipx router Date: Mon, 9 Aug 1999 16:07:03 +0300 Message-ID: <01bee268$133a0c00$0000e9c1@serv2.binep.ac.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.0913.2206 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.0913.2200 Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! On Monday 9 Aug 1999 13:17 wrote: >I have PC with two 3com 590 Combo netcard . >It does not work like ipx router. (i am using Ehernet II frame). >my local network consist of 25 PC workstation under windows 98 and one PC under Freebsd 3.2. >my local network consist of two parts.First part contain 12 PC,second part contain 13 PC. 1. I suppose you have looked at Boris Popov's page http://www.butya.kz/~bp They contain some useful how-to's on setting up IPX for FreeBSD. 2. You may want to search -questions mail archive for "IPX gateway using freebsd" for some thread on topic. Here is the snip from my mail to it: >> <> >> network_interfaces="ep0 ep1 ep2 lo0 sl0" >> [...] >> ifconfig_ep0_ipx="ipx aaaa0000" >> ifconfig_ep1_ipx="ipx bbbb0000" >> ifconfig_ep2_ipx="ipx cccc0000" >> [...] >> ipxgateway_enable="YES" # Set to YES to enable IPX routing. >> ipxrouted_enable="YES" # Set to YES to run the IPX routing daemon. >> ipxrouted_flags="-s" # Flags for IPX routing daemon. >> ipxnetbios_enable="YES" # YES to enable sharing under IPX. >> >> Note last line - I added it by myself (with the corresponding >> entry in /etc/rc.network) to enable disks/printers sharing >> between my different Ethernet segments in the mixed Win3x/Win9x/WinNT >> workstations LAN (sigh...). >The PC belong to first part does not link with another PC that belong to the second part. >How do I make to provide the connection with PC from different parts not using ip protocol ? I think you mean "resource sharing" in windows98 between different Ethernet segments, yes? Well, i was unable to do this without: a. enabling IPXNetbios support for IPX/SPX on win stations b. turning on net.ipx.ipxnetbios variable in kernel (it is OFF by default) on FreeBSD machine Here is beforementioned entry in my /etc/rc.network file: if [ "X$ipxgateway_enable" = X"YES" ]; then echo -n ' IPX gateway=YES' sysctl -w net.ipx.ipx.ipxforwarding=1 >/dev/null 2>&1 fi if [ "X$ipxnetbios_enable" = X"YES" ]; then echo -n ' IPX netbios=YES' sysctl -w net.ipx.ipxnetbios=1 >/dev/null 2>&1 fi Hope this may help... Someone more experienced with this stuff _must_ correct me if this is (totally) wrong. Regards, Goshik To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message