From owner-freebsd-tokenring Wed Jan 9 6:30:26 2002 Delivered-To: freebsd-tokenring@freebsd.org Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by hub.freebsd.org (Postfix) with SMTP id 0458B37B402 for ; Wed, 9 Jan 2002 06:30:19 -0800 (PST) Received: (qmail 2512 invoked by uid 0); 9 Jan 2002 14:30:16 -0000 Received: from pd9e4e8e0.dip.t-dialin.net (HELO gmx.de) (217.228.232.224) by mail.gmx.net (mp015-rz3) with SMTP; 9 Jan 2002 14:30:16 -0000 Message-ID: <3C3C5387.B29240D4@gmx.de> Date: Wed, 09 Jan 2002 15:28:23 +0100 From: Niels Coelle X-Mailer: Mozilla 4.79 [en] (X11; U; Linux 2.4.2 i386) X-Accept-Language: de-DE, de, en MIME-Version: 1.0 To: freebsd-tokenring@FreeBSD.ORG Subject: Re: RFI - Setting up Token Ring Support in FreeBSD References: <000b01c18b11$42573180$0205a8c0@mm> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-tokenring@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hello Douglas! Douglas Cohen wrote: > Could someone please point me to information on how to do this? I have no > problem building a custom kernel; I just need to know what to add (and > where) for Token Ring support and for the drivers for Token Ring NICs. At the office I am using Olicom 3140 (RapidFire). The kernel options are: pseudo-device token #Generic TokenRing device oltr0 Actually I got a lot of warnings, but this does not matter (said our network admin...) Hope it helps Niels To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-tokenring" in the body of the message From owner-freebsd-tokenring Wed Jan 9 9:24:59 2002 Delivered-To: freebsd-tokenring@freebsd.org Received: from mgw1.MEIway.com (mgw1.meiway.com [212.73.210.75]) by hub.freebsd.org (Postfix) with ESMTP id 01CA437B41F for ; Wed, 9 Jan 2002 09:24:53 -0800 (PST) Received: from ms1.meiway.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id DFBC816B2B; Wed, 9 Jan 2002 18:24:50 +0100 (CET) Received: from edaport.meiway.com [193.252.44.38] by ms1.meiway.com with ESMTP (SMTPD32-6.06) id A0A31E9703A8; Wed, 09 Jan 2002 18:40:51 +0100 Message-Id: <5.1.0.14.2.20020109180453.02994fb8@ms1.meiway.com> X-Sender: ericdahan@meiway.com@ms1.meiway.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Wed, 09 Jan 2002 18:21:07 +0100 To: douglas@newmus.net From: Eric Dahan Subject: Re: RFI - Setting up Token Ring Support in FreeBSD Cc: freebsd-tokenring@freebsd.org In-Reply-To: <3C3C5387.B29240D4@gmx.de> References: <000b01c18b11$42573180$0205a8c0@mm> Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="=====================_96637447==_.ALT" Sender: owner-freebsd-tokenring@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=====================_96637447==_.ALT Content-Type: text/plain; charset="iso-8859-1"; format=flowed Content-Transfer-Encoding: quoted-printable At 15:28 09/01/2002 +0100, you wrote: >Hello Douglas! > >Douglas Cohen wrote: > > Could someone please point me to information on how to do this? I have= no > > problem building a custom kernel; I just need to know what to add (and > > where) for Token Ring support and for the drivers for Token Ring NICs. in /usr/scr/sys/i386/conf modify your kernel file like this : # Olicom Token RING device oltr pseudo-device token if you have a problem with the "promisc mode" you can disable it at the boot= : Modify the source code /usr/src/sys/contrib/dev/oltr/if_oltr.c : 989 * Set promiscious mode for now... 990 */ 991 /* TRlldSetPromiscuousMode(sc->TRlldAdapter,= TRLLD_PROM_LLC); 992 * ifp->if_flags |=3D IFF_PROMISC; 993 */ 994 /* 995 * Block on the ring insert and set a timeout 996 */ 997 tsleep(sc, PWAIT, "oltropen", 30*hz); 998 999 /* 1000 * Set up receive buffer ring 1001 */ 1002 for (i =3D 0; i < RING_BUFFER_LEN; i++) { AND config [your Kernel] make depend make make install Eric Eric DAHAN. MEI 25 Avenue des Bretagnes 93230 ROMAINVILLE Tel : 01.41.71.06.06. Fax : 01.41.71.06.04. Centre de formation agr=E9e N=B011752906075 www.meiway.com --=====================_96637447==_.ALT Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable At 15:28 09/01/2002 +0100, you wrote:
Hello Douglas!

Douglas Cohen wrote:
> Could someone please point me to information on how to do this?  I have no
> problem building a custom kernel; I just need to know what to add (and
> where) for Token Ring support and for the drivers for Token Ring NICs.

in /usr/scr/sys/i386/conf

modify your kernel file like this :

# Olicom Token RING
device  oltr
pseudo-device   token

if you have a problem with the "promisc mode" you can disable it at the boot :

Modify the source code /usr/src/sys/contrib/dev/oltr/if_oltr.c=20 :


    989          * Set promiscious mode for now...
    990          */
    991         /* TRlldSetPromiscuousMode(sc->TRlldAdapter, TRLLD_PROM_LLC);
    992          * ifp->if_flags |=3D IFF_PROMISC;
    993          */
    994         /*
    995          * Block on the ring insert and set a timeout
    996          */
    997         tsleep(sc, PWAIT, "oltropen", 30*hz);
    998
    999         /*
   1000          * Set up receive buffer ring
   1001          */
   1002         for (i =3D 0; i < RING_BUFFER_LEN; i++) {

AND

config [your Kernel]
make depend
make
make install

Eric

Eric DAHAN.
MEI
25 Avenue des Bretagnes
93230 ROMAINVILLE
Tel : 01.41.71.06.06.
Fax : 01.41.71.06.04.
Centre de formation agr=E9e N=B011752906075
www.mei= way.com --=====================_96637447==_.ALT-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-tokenring" in the body of the message From owner-freebsd-tokenring Wed Jan 9 9:32:57 2002 Delivered-To: freebsd-tokenring@freebsd.org Received: from tourmaline.propagation.net (tourmaline.propagation.net [216.97.76.1]) by hub.freebsd.org (Postfix) with ESMTP id E913E37B426 for ; Wed, 9 Jan 2002 09:32:36 -0800 (PST) Received: from 4020cdt (dhcp64-134-81-229.hilt.dca.wayport.net [64.134.81.229]) by tourmaline.propagation.net (8.8.5/8.8.5) with SMTP id LAA08590; Wed, 9 Jan 2002 11:29:09 -0600 From: "Douglas Cohen" To: "'Eric Dahan'" Cc: Subject: RE: RFI - Setting up Token Ring Support in FreeBSD Date: Wed, 9 Jan 2002 12:31:10 -0500 Message-ID: <001301c19933$6e373c20$e5518640@4020cdt> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0014_01C19909.85613420" X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4807.1700 In-Reply-To: <5.1.0.14.2.20020109180453.02994fb8@ms1.meiway.com> Sender: owner-freebsd-tokenring@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG This is a multi-part message in MIME format. ------=_NextPart_000_0014_01C19909.85613420 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit Thank you all for your help! I’ve purchased some FreeBSD supported Olicom cards through Ebay and will try Token Ring out as soon as they arrive. ------=_NextPart_000_0014_01C19909.85613420 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable

Thank you all for = your help!

 

I’ve = purchased some FreeBSD supported Olicom cards through Ebay and will try Token Ring out as soon = as they arrive.

 

 <= /p>

------=_NextPart_000_0014_01C19909.85613420-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-tokenring" in the body of the message From owner-freebsd-tokenring Wed Jan 9 9:34:49 2002 Delivered-To: freebsd-tokenring@freebsd.org Received: from mgw1.MEIway.com (mgw1.meiway.com [212.73.210.75]) by hub.freebsd.org (Postfix) with ESMTP id 20F3137B421 for ; Wed, 9 Jan 2002 09:33:55 -0800 (PST) Received: from ms1.meiway.com (ms1.meiway.com [212.73.210.73]) by mgw1.MEIway.com (Postfix Relay Hub) with ESMTP id 9A37D16B1E for ; Wed, 9 Jan 2002 18:33:52 +0100 (CET) Received: from edaport.meiway.com [193.252.44.38] by ms1.meiway.com with ESMTP (SMTPD32-6.06) id A2C2242D03B8; Wed, 09 Jan 2002 18:49:54 +0100 Message-Id: <5.1.0.14.2.20020109182925.02996cd8@ms1.meiway.com> X-Sender: ericdahan@meiway.com@ms1.meiway.com X-Mailer: QUALCOMM Windows Eudora Version 5.1 Date: Wed, 09 Jan 2002 18:30:07 +0100 To: freebsd-tokenring@FreeBSD.ORG From: Eric Dahan Subject: Re: RFI - Setting up Token Ring Support in FreeBSD Mime-Version: 1.0 Content-Type: multipart/alternative; boundary="=====================_97177063==_.ALT" Sender: owner-freebsd-tokenring@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG --=====================_97177063==_.ALT Content-Type: text/plain; charset="iso-8859-1"; format=flowed Content-Transfer-Encoding: quoted-printable At 15:28 09/01/2002 +0100, you wrote: >Hello Douglas! > >Douglas Cohen wrote: > > Could someone please point me to information on how to do this? I have= no > > problem building a custom kernel; I just need to know what to add (and > > where) for Token Ring support and for the drivers for Token Ring NICs. in /usr/scr/sys/i386/conf modify your kernel file like this : # Olicom Token RING device oltr pseudo-device token if you have a problem with the "promisc mode" you can disable it at the boot= : Modify the source code /usr/src/sys/contrib/dev/oltr/if_oltr.c : 989 * Set promiscious mode for now... 990 */ 991 /* TRlldSetPromiscuousMode(sc->TRlldAdapter,= TRLLD_PROM_LLC); 992 * ifp->if_flags |=3D IFF_PROMISC; 993 */ 994 /* 995 * Block on the ring insert and set a timeout 996 */ 997 tsleep(sc, PWAIT, "oltropen", 30*hz); 998 999 /* 1000 * Set up receive buffer ring 1001 */ 1002 for (i =3D 0; i < RING_BUFFER_LEN; i++) { AND config [your Kernel] make depend make make install Eric Eric DAHAN. MEI 25 Avenue des Bretagnes 93230 ROMAINVILLE Tel : 01.41.71.06.06. Fax : 01.41.71.06.04. Centre de formation agr=E9e N=B011752906075 www.meiway.com Eric DAHAN. MEI 25 Avenue des Bretagnes 93230 ROMAINVILLE Tel : 01.41.71.06.06. Fax : 01.41.71.06.04. Centre de formation agr=E9e N=B011752906075 www.meiway.com --=====================_97177063==_.ALT Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable At 15:28 09/01/2002 +0100, you wrote:
Hello Douglas!

Douglas Cohen wrote:
> Could someone please point me to information on how to do this?  I have no
> problem building a custom kernel; I just need to know what to add (and
> where) for Token Ring support and for the drivers for Token Ring NICs.

in /usr/scr/sys/i386/conf

modify your kernel file like this :

# Olicom Token RING
device  oltr
pseudo-device   token

if you have a problem with the "promisc mode" you can disable it at the boot :

Modify the source code /usr/src/sys/contrib/dev/oltr/if_oltr.c=20 :


    989          * Set promiscious mode for now...
    990          */
    991         /* TRlldSetPromiscuousMode(sc->TRlldAdapter, TRLLD_PROM_LLC);
    992          * ifp->if_flags |=3D IFF_PROMISC;
    993          */
    994         /*
    995          * Block on the ring insert and set a timeout
    996          */
    997         tsleep(sc, PWAIT, "oltropen", 30*hz);
    998
    999         /*
   1000          * Set up receive buffer ring
   1001          */
   1002         for (i =3D 0; i < RING_BUFFER_LEN; i++) {

AND

config [your Kernel]
make depend
make
make install

Eric

Eric DAHAN.
MEI
25 Avenue des Bretagnes
93230 ROMAINVILLE
Tel : 01.41.71.06.06.
Fax : 01.41.71.06.04.
Centre de formation agr=E9e N=B011752906075
www.mei= way.com
Eric DAHAN.
MEI
25 Avenue des Bretagnes
93230 ROMAINVILLE
Tel : 01.41.71.06.06.
Fax : 01.41.71.06.04.
Centre de formation agr=E9e N=B011752906075
www.mei= way.com --=====================_97177063==_.ALT-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-tokenring" in the body of the message