From owner-freebsd-net Sun Oct 31 5: 1:19 1999 Delivered-To: freebsd-net@freebsd.org Received: from news.lucky.net (news.lucky.net [193.193.193.102]) by hub.freebsd.org (Postfix) with ESMTP id E06F614CDF for ; Sun, 31 Oct 1999 05:01:09 -0800 (PST) (envelope-from vovik@burka.carrier.kiev.ua) Received: (from mail@localhost) by news.lucky.net (8.Who.Cares/8.Who.Cares) id PAL26981 for freebsd-net@freebsd.org; Sun, 31 Oct 1999 15:01:07 +0200 (envelope-from vovik@burka.carrier.kiev.ua) From: "Vladimir A. Jakovenko" To: freebsd-net@freebsd.org Subject: slip && IFF_RUNNING Date: 31 Oct 1999 12:41:25 GMT Organization: Unknown Message-ID: <7vhddl$67d$1@news.lucky.net> X-Trace: news.lucky.net 941373685 6381 193.193.193.107 (31 Oct 1999 12:41:25 GMT) X-Complaints-To: usenet@news.lucky.net User-Agent: tin/pre-1.4-19990413 ("Endemoniada") (UNIX) (FreeBSD/3.3-RC (i386)) Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Lines: 28 Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! Can someone explain why all network interfaces implementations (ethernets, kernel ppp, tun, sppp, etc) sets IFF_RUNNING on active interfaces, but slip driver doesn't? Some programs relay on IFF_RUNNING interface flag. As example ucd-snmp uses that flag for checking if interface in admup state: [ ucd-snmp-4.0.1/agent/mibgroup/mibII/interfaces.ci ] case IFADMINSTATUS: long_return = if_msg.ifm_flags & IFF_RUNNING ? 1 : 2; return (u_char *) &long_return; case IFOPERSTATUS: long_return = if_msg.ifm_flags & IFF_UP ? 1 : 2; return (u_char *) &long_return; /* ifLastChange */ So side effect of this "feature" on slip inface is interface in admin down and oper up state :-) And what I should fix, /sys/net/if_sl.c or ucd-snmp behaviour? -- Regards, Vladimir. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Sun Oct 31 10:42:55 1999 Delivered-To: freebsd-net@freebsd.org Received: from mta3.rcsntx.swbell.net (mta3.rcsntx.swbell.net [151.164.30.27]) by hub.freebsd.org (Postfix) with ESMTP id 0E46D14CDF; Sun, 31 Oct 1999 10:42:46 -0800 (PST) (envelope-from chris@holly.dyndns.org) Received: from holly.dyndns.org ([216.62.157.60]) by mta3.rcsntx.swbell.net (Sun Internet Mail Server sims.3.5.1999.09.16.21.57.p8) with ESMTP id <0FKH000MQDB7J1@mta3.rcsntx.swbell.net>; Sun, 31 Oct 1999 12:42:44 -0600 (CST) Received: (from chris@localhost) by holly.dyndns.org (8.9.3/8.9.3) id MAA03632; Sun, 31 Oct 1999 12:43:41 -0600 (CST envelope-from chris) X-URL: http://www.FreeBSD.org/~chris/ Date: Sun, 31 Oct 1999 12:43:37 -0600 From: Chris Costello Subject: Implementing ioctl to set MAC address -- question. To: freebsd-net@FreeBSD.org Cc: freebsd-hackers@FreeBSD.org Reply-To: chris@calldei.com Message-id: <19991031124337.I472@holly.calldei.com> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii User-Agent: Mutt/0.96.4i X-Operating-System: FreeBSD 4.0-CURRENT (i386) Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm trying to implement Bill Paul's "setmac" code in the actual source code as a project (and will have it reviewed before it's committed -- if I ever get that far!). However, I'm getting stuck in that ether_ioctl is never getting the ioctl request. I've added the case statement for "SIOCSIFMAC" (probably to be renamed) to net/if.c and dev/ed/if_ed.c (which is the card I'm using) as well as net/if_ethersubr.c. Are there any other files that need to know about the ioctl or am I going about this the wrong way entirely? -- |Chris Costello |This BBS is ancient. Some say from the echocene. `------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Tue Nov 2 2:17:54 1999 Delivered-To: freebsd-net@freebsd.org Received: from hodnet.dev.nanoteq.co.za (hodnet.dev.nanoteq.co.za [196.7.114.27]) by hub.freebsd.org (Postfix) with ESMTP id AB59314FBC for ; Tue, 2 Nov 1999 02:17:28 -0800 (PST) (envelope-from rk@nanoteq.co.za) Received: from nanoteq.co.za (localhost [127.0.0.1]) by hodnet.dev.nanoteq.co.za (8.9.3/8.9.3) with ESMTP id MAA00386 for ; Tue, 2 Nov 1999 12:20:23 +0200 (SAST) (envelope-from rk@nanoteq.co.za) Message-ID: <381EBAE7.2EEBB98D@nanoteq.co.za> Date: Tue, 02 Nov 1999 12:20:23 +0200 From: Riaan Kruger X-Mailer: Mozilla 4.61 [en] (X11; I; FreeBSD 3.2-STABLE-990722 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-net@FreeBSD.ORG Subject: TOS implementation Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Does FreeBSD implement the setting of the TOS field in the IP header from a higher level such as the application level, i.e. through sockets? -- OR -- Where can I get more information about the TOS implementation in FreeBSD except for 'slugging' through the source code? Thanx in advance To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Tue Nov 2 4:25: 9 1999 Delivered-To: freebsd-net@freebsd.org Received: from btm4r4.alcatel.be (btm4r4.alcatel.be [195.207.101.110]) by hub.freebsd.org (Postfix) with ESMTP id 37C65153DC for ; Tue, 2 Nov 1999 04:24:46 -0800 (PST) (envelope-from livensw@rc.bel.alcatel.be) Received: from btmq9s.rc.bel.alcatel.be (btmq9s.rc.bel.alcatel.be [138.203.65.182]) by btm4r4.alcatel.be (8.9.1a/8.9.1) with ESMTP id NAA25021 for ; Tue, 2 Nov 1999 13:24:42 +0100 (MET) Received: from btm161.rc.bel.alcatel.be (btm161 [138.203.65.238]) by btmq9s.rc.bel.alcatel.be (8.8.8+Sun/8.8.8) with ESMTP id NAA26539 for ; Tue, 2 Nov 1999 13:26:01 +0100 (MET) Received: (from livensw@localhost) by btm161.rc.bel.alcatel.be (8.9.3/8.9.3) id MAA17355; Tue, 2 Nov 1999 12:56:16 +0100 (CET) (envelope-from livensw) Date: Tue, 2 Nov 1999 12:56:16 +0100 From: Wim Livens To: Riaan Kruger Cc: freebsd-net@FreeBSD.ORG Subject: Re: TOS implementation Message-ID: <19991102125616.B333@rc.bel.alcatel.be> References: <381EBAE7.2EEBB98D@nanoteq.co.za> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre2i In-Reply-To: <381EBAE7.2EEBB98D@nanoteq.co.za> Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Nov 02, 1999 at 12:20:23PM +0200, Riaan Kruger wrote: > Does FreeBSD implement the setting of the TOS field in the IP header > from a higher level such as the application level, i.e. through sockets? Yes (ofcourse). See 'man ip' and look for the IP_TOS socket option. Something like: setsockopt(s, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)); -- Wim Livens. Alcatel - Corporate Research Center wim.livens@alcatel.be Fr. Wellesplein 1 livensw@rc.bel.alcatel.be B-2018 Antwerpen Tel: +32 3 240 7570 Belgium. Fax: +32 3 240 9932 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Tue Nov 2 13:11:35 1999 Delivered-To: freebsd-net@freebsd.org Received: from houston.matchlogic.com (houston.matchlogic.com [205.216.147.127]) by hub.freebsd.org (Postfix) with ESMTP id 6DB7614C35; Tue, 2 Nov 1999 13:11:19 -0800 (PST) (envelope-from crandall@matchlogic.com) Received: by houston.matchlogic.com with Internet Mail Service (5.5.2448.0) id <43SC7X24>; Tue, 2 Nov 1999 14:11:17 -0700 Message-ID: <64003B21ECCAD11185C500805F31EC03046219A3@houston.matchlogic.com> From: Charles Randall To: freebsd-net@FreeBSD.ORG, "'hackers@freebsd.org'" Subject: RE: FreeBSD reboots Date: Tue, 2 Nov 1999 14:11:16 -0700 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From: Julian Elischer [mailto:julian@whistle.com] >I have a patch to fix the fin-wait-2 problem.. Any reason this could't be applied to -stable with a corresponding sysctl variable? Charles To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Tue Nov 2 17:57:20 1999 Delivered-To: freebsd-net@freebsd.org Received: from alpo.whistle.com (alpo.whistle.com [207.76.204.38]) by hub.freebsd.org (Postfix) with ESMTP id 104D314D50; Tue, 2 Nov 1999 17:57:17 -0800 (PST) (envelope-from julian@whistle.com) Received: from current1.whiste.com (current1.whistle.com [207.76.205.22]) by alpo.whistle.com (8.9.1a/8.9.1) with ESMTP id RAA11072; Tue, 2 Nov 1999 17:57:10 -0800 (PST) Date: Tue, 2 Nov 1999 17:57:10 -0800 (PST) From: Julian Elischer To: Charles Randall Cc: freebsd-net@FreeBSD.ORG, "'hackers@freebsd.org'" Subject: RE: FreeBSD reboots In-Reply-To: <64003B21ECCAD11185C500805F31EC03046219A3@houston.matchlogic.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org because it breaks teh standard and teh networking guru's don't like it. Basically in the face of broken clients, (read PCs) the TCP protocol can gather an unacceptable collection of fin-wait-2 sessions. THis is in the way the protocol was designed. To reduce it we revert to fin-wait-1 and resent the fin. which results in either a FIN or a RST from th eother end if it's still alive. This gets rid of some of the sessions. but it is admittedly a hack. On Tue, 2 Nov 1999, Charles Randall wrote: > From: Julian Elischer [mailto:julian@whistle.com] > >I have a patch to fix the fin-wait-2 problem.. > > Any reason this could't be applied to -stable with a corresponding sysctl > variable? > > Charles > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-net" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Nov 3 1:24:38 1999 Delivered-To: freebsd-net@freebsd.org Received: from news.rdc1.tn.home.com (ha2.rdc1.tn.home.com [24.2.7.67]) by hub.freebsd.org (Postfix) with ESMTP id 4822414CAB for ; Wed, 3 Nov 1999 01:24:35 -0800 (PST) (envelope-from williamsl@Home.Com) Received: from RELIABLE ([24.4.115.31]) by news.rdc1.tn.home.com (InterMail v4.01.01.00 201-229-111) with ESMTP id <19991103092348.PBZO25390.news.rdc1.tn.home.com@RELIABLE> for ; Wed, 3 Nov 1999 01:23:48 -0800 Date: Wed, 3 Nov 1999 04:23:36 -0500 From: Ben WIlliams X-Mailer: The Bat! (v1.34a) UNREG / CD5BF9353B3B7091 Reply-To: Ben WIlliams X-Priority: 3 (Normal) Message-ID: <3183.991103@Home.Com> To: net@FreeBSD.org Subject: Re[2]: Third Ethernet card "fxp2" In-reply-To: <381a2d12.436676377@mail.sentex.net> References: <381a2d12.436676377@mail.sentex.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am in the process of trying to set up 2 Intel EE cards in an old 486 to use as a router. I have installed FreeBSD via FTP install (no CD-ROM) and it boots, but it only recognizes one of the cards. I know they do not conflict because I am really just migrating the box from LRP ( http://www.linuxrouter.org/ ) to FreeBSD so I can do fun things like install a SOCKS server on it. The machine has 2 IDE drives in it with no way to get them out and still have a functional copy of FreeBSD I think. The drives are both 200mb drives with one mounted on /usr while the other carries the rest of the load. Can I simply recompile the kernel with support for both cards or how do I do it? -- Ben Williams. Friday, October 29, 1999, 8:27:25 PM, you wrote: MT> On 29 Oct 1999 14:06:46 -0400, in sentex.lists.freebsd.net you wrote: >>Hello, >> >>I'd like to know if there are any known issues when enabling a 3rd ethernet >>interface on a system config'd as follows >> >>1 PR440FX >>2 Pentium Pro Processors >>128MB RAM >>SCSI HDD and CDROM >>3 Intel EtherExpress Pro 10/100B adapters (fxp0 is onboard) >> >>3.3-STABLE FreeBSD 3.3-STABLE #3: Sat Oct 23 15:57:22 EST 1999 >>SMP Kernel >>IPFW enabled >>NATD enabled MT> There shouldnt be.. On one of my machines, MT> grep fxp /etc/rc.conf MT> network_interfaces="fxp0 fxp1 fxp2 fxp3 lo0" MT> A couple of things to check perhaps, MT> try and make sure the cards all have their individual IRQs, and that if MT> there are no IDE drives in the box, disable the IDE controllers so that MT> they dont take up IRQs and DMA resources. What sort of SCSI controller do MT> you have ? MT> ---Mike MT> Mike Tancsa (mdtancsa@sentex.net) MT> Sentex Communications Corp, MT> Waterloo, Ontario, Canada MT> "Given enough time, 100 monkeys on 100 routers MT> could setup a national IP network." (KDW2) MT> To Unsubscribe: send mail to majordomo@FreeBSD.org MT> with "unsubscribe freebsd-net" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Nov 3 5:31:34 1999 Delivered-To: freebsd-net@freebsd.org Received: from nippon.highcaliber.com (nippon.highcaliber.com [206.217.210.2]) by hub.freebsd.org (Postfix) with ESMTP id BFBD014C40 for ; Wed, 3 Nov 1999 05:31:30 -0800 (PST) (envelope-from Andre@HighCaliber.com) Received: from pavilion ([206.217.210.242]) by nippon.highcaliber.com (post.office MTA v1.9.3 ID# 0-16273) with SMTP id AAA82; Wed, 3 Nov 1999 08:32:41 -0500 Message-ID: <000f01bf2600$1cc521c0$010a0a0a@pavilion> Reply-To: "HIGHCALIBER.COM - Andre" From: Andre@HighCaliber.com (Andre Chang) To: "Mike Tancsa" Cc: References: <381a2d12.436676377@mail.sentex.net> Subject: Re: Third Ethernet card "fxp2" Date: Wed, 3 Nov 1999 08:34:10 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Thanks, There are no IDE devices in the machine and there is a 7860 chip on the motherboard. I finally resolved the problem by moving the card from slot 1 to slot 4 (PCI) I believe that there must have been some IRQ conflict. I'll have to look that over again as I would like to put a scsi controller in the free PCI slot. Does anyone know if the fxp driver supports IRQ sharing?. with the newer motherboards I've come across a lot of IRQ's assigned to more than one slot. Thanks again. -- Andre. ----- Original Message ----- From: Mike Tancsa To: Andre Chang Cc: Sent: Friday, October 29, 1999 8:27 PM Subject: Re: Third Ethernet card "fxp2" > On 29 Oct 1999 14:06:46 -0400, in sentex.lists.freebsd.net you wrote: > > >Hello, > > > >I'd like to know if there are any known issues when enabling a 3rd ethernet > >interface on a system config'd as follows > > > >1 PR440FX > >2 Pentium Pro Processors > >128MB RAM > >SCSI HDD and CDROM > >3 Intel EtherExpress Pro 10/100B adapters (fxp0 is onboard) > > > >3.3-STABLE FreeBSD 3.3-STABLE #3: Sat Oct 23 15:57:22 EST 1999 > >SMP Kernel > >IPFW enabled > >NATD enabled > > There shouldnt be.. On one of my machines, > > grep fxp /etc/rc.conf > network_interfaces="fxp0 fxp1 fxp2 fxp3 lo0" > > A couple of things to check perhaps, > > try and make sure the cards all have their individual IRQs, and that if > there are no IDE drives in the box, disable the IDE controllers so that > they dont take up IRQs and DMA resources. What sort of SCSI controller do > you have ? > > ---Mike > Mike Tancsa (mdtancsa@sentex.net) > Sentex Communications Corp, > Waterloo, Ontario, Canada > "Given enough time, 100 monkeys on 100 routers > could setup a national IP network." (KDW2) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Nov 3 6:31:24 1999 Delivered-To: freebsd-net@freebsd.org Received: from verdi.nethelp.no (verdi.nethelp.no [158.36.41.162]) by hub.freebsd.org (Postfix) with SMTP id 121FC14F85 for ; Wed, 3 Nov 1999 06:31:09 -0800 (PST) (envelope-from sthaug@nethelp.no) Received: (qmail 898 invoked by uid 1001); 3 Nov 1999 14:30:06 +0000 (GMT) To: Andre@HighCaliber.com Cc: mike@sentex.net, freebsd-net@freebsd.org Subject: Re: Third Ethernet card "fxp2" From: sthaug@nethelp.no In-Reply-To: Your message of "Wed, 3 Nov 1999 08:34:10 -0500" References: <000f01bf2600$1cc521c0$010a0a0a@pavilion> X-Mailer: Mew version 1.05+ on Emacs 19.34.2 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Date: Wed, 03 Nov 1999 15:30:06 +0100 Message-ID: <896.941639406@verdi.nethelp.no> Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Does anyone know if the fxp driver supports IRQ sharing?. with the newer > motherboards I've come across a lot of IRQ's assigned to more than one slot. Yes, it does. For instance a nearby machine here show: ahc0: rev 0x00 int a irq 18 on pci0.13.0 ahc1: rev 0x00 int a irq 16 on pci0.15.0 ahc2: rev 0x00 int a irq 17 on pci0.16.0 fxp0: rev 0x05 int a irq 18 on pci2.4.0 fxp1: rev 0x05 int a irq 19 on pci2.5.0 fxp2: rev 0x05 int a irq 19 on pci3.4.0 fxp3: rev 0x05 int a irq 16 on pci3.5.0 Steinar Haug, Nethelp consulting, sthaug@nethelp.no To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Nov 3 6:56:38 1999 Delivered-To: freebsd-net@freebsd.org Received: from granite.sentex.net (granite.sentex.ca [199.212.134.1]) by hub.freebsd.org (Postfix) with ESMTP id 5621814C4C for ; Wed, 3 Nov 1999 06:56:33 -0800 (PST) (envelope-from mike@sentex.net) Received: from simoeon (simeon.sentex.ca [209.112.4.47]) by granite.sentex.net (8.8.8/8.6.9) with SMTP id JAA25558; Wed, 3 Nov 1999 09:55:03 -0500 (EST) Message-Id: <3.0.5.32.19991103095403.01fd5b10@staff.sentex.ca> X-Sender: mdtpop@staff.sentex.ca X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.5 (32) Date: Wed, 03 Nov 1999 09:54:03 -0500 To: "HIGHCALIBER.COM - Andre" From: Mike Tancsa Subject: Re: Third Ethernet card "fxp2" Cc: In-Reply-To: <000f01bf2600$1cc521c0$010a0a0a@pavilion> References: <381a2d12.436676377@mail.sentex.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At 08:34 AM 11/3/99 -0500, Andre Chang wrote: >Hi, > >Thanks, > >There are no IDE devices in the machine and there is a 7860 chip on the >motherboard. I finally resolved the problem by moving the card from slot 1 >to slot 4 (PCI) I believe that there must have been some IRQ conflict. I'll >have to look that over again as I would like to put a scsi controller in the >free PCI slot. Not all PCI slots are DMA capable, and there is usually one that forces you to share an IRQ. In your board's BIOS, try turning off the auto assign of IRQs to the PCI slots, and instead assign some sane IRQs. Since you have no IDE make disable them in your BIOS as well as assigning DMA channels to the IDE controllers. 5,10,11,14,15 should be safe to use. >Does anyone know if the fxp driver supports IRQ sharing?. with the newer >motherboards I've come across a lot of IRQ's assigned to more than one slot. Perhaps there is no basis in it, but I was under the impression that where possible, avoid IRQ sharing, although it should work. ---Mike ------------------------------------------------------------------------ Mike Tancsa, tel 01.519.651.3400 Network Administrator, mike@sentex.net Sentex Communications www.sentex.net Cambridge, Ontario Canada To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Nov 3 7:15:10 1999 Delivered-To: freebsd-net@freebsd.org Received: from hotmail.com (law-f210.hotmail.com [209.185.130.120]) by hub.freebsd.org (Postfix) with SMTP id 55DE514D50 for ; Wed, 3 Nov 1999 07:15:05 -0800 (PST) (envelope-from gnarlymarley@hotmail.com) Received: (qmail 55219 invoked by uid 0); 3 Nov 1999 15:14:45 -0000 Message-ID: <19991103151445.55217.qmail@hotmail.com> Received: from 137.190.162.103 by www.hotmail.com with HTTP; Wed, 03 Nov 1999 07:14:45 PST X-Originating-IP: [137.190.162.103] Reply-To: noone@unforgettable.com From: "Jason Lewis" To: mike@sentex.net, Andre@HighCaliber.com Cc: freebsd-net@FreeBSD.ORG Subject: Re: Third Ethernet card "fxp2" Date: Wed, 03 Nov 1999 08:14:45 MST Mime-Version: 1.0 Content-Type: text/plain; format=flowed Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org If you do use the auto assign, I believe that most motherboards provide an option of IRQ's that cannot be assigned. ----Original Message Follows---- From: Mike Tancsa To: "HIGHCALIBER.COM - Andre" CC: Subject: Re: Third Ethernet card "fxp2" Date: Wed, 03 Nov 1999 09:54:03 -0500 At 08:34 AM 11/3/99 -0500, Andre Chang wrote: >Hi, > >Thanks, > >There are no IDE devices in the machine and there is a 7860 chip on the >motherboard. I finally resolved the problem by moving the card from slot 1 >to slot 4 (PCI) I believe that there must have been some IRQ conflict. I'll >have to look that over again as I would like to put a scsi controller in the >free PCI slot. Not all PCI slots are DMA capable, and there is usually one that forces you to share an IRQ. In your board's BIOS, try turning off the auto assign of IRQs to the PCI slots, and instead assign some sane IRQs. Since you have no IDE make disable them in your BIOS as well as assigning DMA channels to the IDE controllers. 5,10,11,14,15 should be safe to use. >Does anyone know if the fxp driver supports IRQ sharing?. with the newer >motherboards I've come across a lot of IRQ's assigned to more than one slot. Perhaps there is no basis in it, but I was under the impression that where possible, avoid IRQ sharing, although it should work. ---Mike ------------------------------------------------------------------------ Mike Tancsa, tel 01.519.651.3400 Network Administrator, mike@sentex.net Sentex Communications www.sentex.net Cambridge, Ontario Canada To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message ______________________________________________________ Get Your Private, Free Email at http://www.hotmail.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Nov 3 9:49:33 1999 Delivered-To: freebsd-net@freebsd.org Received: from nimitz.ca.sandia.gov (nimitz.ca.sandia.gov [146.246.243.56]) by hub.freebsd.org (Postfix) with ESMTP id 939001566A for ; Wed, 3 Nov 1999 09:49:22 -0800 (PST) (envelope-from bmah@nimitz.ca.sandia.gov) Received: (from bmah@localhost) by nimitz.ca.sandia.gov (8.9.3/8.9.3) id JAA03091; Wed, 3 Nov 1999 09:48:27 -0800 (PST) Message-Id: <199911031748.JAA03091@nimitz.ca.sandia.gov> X-Mailer: exmh version 2.1.0 09/18/1999 To: freebsd-net@freebsd.org Cc: bmah@CA.Sandia.GOV Subject: pchar-1.0 available From: bmah@CA.Sandia.GOV (Bruce A. Mah) Reply-To: bmah@CA.Sandia.GOV X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Url: http://www.ca.sandia.gov/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_-73712493P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Wed, 03 Nov 1999 09:48:27 -0800 Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --==_Exmh_-73712493P Content-Type: text/plain; charset=us-ascii I'm pleased to announce the release of pchar-1.0, a reimplementation of Van Jacobson's pathchar utility for characterizing the individual hops of a path between two network hosts. pchar works on both IPv4 and IPv6 networks. pchar has been tested on various versions of FreeBSD, Solaris, Linux, and IRIX, with the primary development on FreeBSD and Solaris. pchar is written is C++, primarily using recent versions of gcc, but with some testing also on the SparcWorks C++ compiler. Recent additions to pchar include: IPv6 support, better Linux compatability, a more comprehensive tracefile format, and more options for measurement and analysis. A number of bugs have been fixed as well. More information, as well as downloadable source code, can be found at: http://www.ca.sandia.gov/~bmah/Software/pchar/ Bruce. --==_Exmh_-73712493P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 5.0i for non-commercial use MessageID: b13o5QT7c7ibh7aQHyrs/VlXkxk/LMTt iQA/AwUBOCB1a9jKMXFboFLDEQIjxQCeMCFGUsgXEA/7Crls6yduJolrb+AAn2Bt 5DxCvs0+OCvqmFnJ/ceK8fyG =eONY -----END PGP SIGNATURE----- --==_Exmh_-73712493P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Nov 3 12:34:13 1999 Delivered-To: freebsd-net@freebsd.org Received: from valis.worldgate.ca (valis.worldgate.ca [198.161.84.2]) by hub.freebsd.org (Postfix) with ESMTP id 3C3D815904; Wed, 3 Nov 1999 12:33:18 -0800 (PST) (envelope-from skafte@worldgate.ca) Received: from worldgate.ca (skafte@diskless4.worldgate.ca [198.161.84.132]) by valis.worldgate.ca (8.9.3/8.9.1) with ESMTP id NAA09424; Wed, 3 Nov 1999 13:32:46 -0700 (MST) Message-ID: <38209BEE.5090A1ED@worldgate.ca> Date: Wed, 03 Nov 1999 13:32:46 -0700 From: Greg Skafte Organization: WorldGate Inc X-Mailer: Mozilla 4.7 [en] (X11; U; Linux 2.0.36 i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-hackers@freebsd.org Cc: freebsd-net@freebsd.org Subject: Linux* 2.2.x Driver inetl Etherexpress 1000 Content-Type: multipart/mixed; boundary="------------9460C960F8D3090C7ECFE991" Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------9460C960F8D3090C7ECFE991 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit http://www.intel.com/support/network/adapter/1000/30363.htm -- Email: skafte@worldgate.com Voice: +780 413 1910 Fax: +780 421 4929 #575 Sun Life Place * 10123 99 Street * Edmonton, AB * Canada * T5J 3H1 -- -- When things can't get any worse, they simplify themselves by getting a whole lot worse then complicated. A complete and utter disaster is the simplest thing in the world; it's preventing one that's complex. (Janet Morris) --------------9460C960F8D3090C7ECFE991 Content-Type: text/html; charset=us-ascii; name="30363.htm" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="30363.htm" Content-Base: "http://www.intel.com/support/network/a dapter/1000/30363.htm" Content-Location: "http://www.intel.com/support/network/a dapter/1000/30363.htm" Linux* 2.2.x Driver
Support Home
SearchSite MapContact us Intel(R)
Software&DriversTroubleshooting AssistantForum

Return to:
Ethernet Adapters Home

support.intel.com resources
Gigabit Server Home
Software & Drivers
Installation & Use
Manuals & Literature
Year 2000
Intel Forum

other resources
White Papers


Networking
Networking
*
 

Intel® PRO/1000 Gigabit Server Adapter
Linux* 2.2.x Driver

Copyright (c) 1999, Intel Corporation

All rights reserved.

 

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

  3. Neither the name of Intel Corporation nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

 

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

I Agree I Disagree



did you find your answer

Please tell us if the information provided here was useful.
Yes   No   Partially   I have to try it
Please describe what you were looking for:
   

Back to Top


* Legal Information and Privacy Policy © 1999 Intel Corporation

--------------9460C960F8D3090C7ECFE991 Content-Type: text/x-vcard; charset=us-ascii; name="skafte.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for Greg Skafte Content-Disposition: attachment; filename="skafte.vcf" begin:vcard n:Skafte;Greg tel;pager:+1 (780) 491 4791 tel;cell:+1 (780) 718 1570 tel;fax:+1 (780) 421 4929 tel;work:+1 (780) 413 1910 x-mozilla-html:FALSE org:;Network Operations adr:;;#575 10123 99 Street;Edmonton;Alberta;T5J 3H1;Canada version:2.1 email;internet:Skafte@worldgate.ca title:Operations Manager x-mozilla-cpt:;29088 fn:Greg Skafte end:vcard --------------9460C960F8D3090C7ECFE991-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Nov 3 12:45:34 1999 Delivered-To: freebsd-net@freebsd.org Received: from feral.com (feral.com [192.67.166.1]) by hub.freebsd.org (Postfix) with ESMTP id 7A5CA1513B; Wed, 3 Nov 1999 12:45:22 -0800 (PST) (envelope-from mjacob@feral.com) Received: from localhost (mjacob@localhost) by feral.com (8.8.7/8.8.7) with ESMTP id MAA07272; Wed, 3 Nov 1999 12:48:56 -0800 Date: Wed, 3 Nov 1999 12:48:56 -0800 (PST) From: Matthew Jacob Reply-To: mjacob@feral.com To: Greg Skafte Cc: freebsd-hackers@FreeBSD.ORG, freebsd-net@FreeBSD.ORG Subject: Re: Linux* 2.2.x Driver inetl Etherexpress 1000 In-Reply-To: <38209BEE.5090A1ED@worldgate.ca> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Yes, we know. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Nov 3 13:30:15 1999 Delivered-To: freebsd-net@freebsd.org Received: from peedub.muc.de (peedub.muc.de [193.149.49.109]) by hub.freebsd.org (Postfix) with ESMTP id 82D5E15551; Wed, 3 Nov 1999 13:30:03 -0800 (PST) (envelope-from garyj@peedub.muc.de) Received: from peedub.muc.de (localhost [127.0.0.1]) by peedub.muc.de (8.9.3/8.6.9) with ESMTP id WAA10044; Wed, 3 Nov 1999 22:02:38 +0100 (CET) Message-Id: <199911032102.WAA10044@peedub.muc.de> X-Mailer: exmh version 2.1.0 09/18/1999 To: Greg Skafte Cc: freebsd-hackers@FreeBSD.ORG, freebsd-net@FreeBSD.ORG Subject: Re: Linux* 2.2.x Driver inetl Etherexpress 1000 Reply-To: Gary Jennejohn In-reply-to: Your message of "Wed, 03 Nov 1999 12:48:56 PST." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 03 Nov 1999 22:02:38 +0100 From: Gary Jennejohn Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Matthew Jacob writes: > >Yes, we know. > and PLEASE only send the URL in future ! I do not appreciate getting mails which cause my MUA (exmh) to dial out to grab some goddamned crap off the web. If I want to look at the URL, I will. --- Gary Jennejohn Home - garyj@muc.de Work - garyj@fkr.cpqcorp.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Nov 3 14: 9:34 1999 Delivered-To: freebsd-net@freebsd.org Received: from news.lucky.net (news.lucky.net [193.193.193.102]) by hub.freebsd.org (Postfix) with ESMTP id 2230814C85 for ; Wed, 3 Nov 1999 14:09:20 -0800 (PST) (envelope-from samj@itcj.kiev.ua) Received: (from mail@localhost) by news.lucky.net (8.Who.Cares/8.Who.Cares) id ADP17297 for freebsd-net@freebsd.org; Thu, 4 Nov 1999 00:09:19 +0200 (envelope-from samj@itcj.kiev.ua) From: "samj" To: freebsd-net@freebsd.org Subject: ppp.linkup do not work Date: 3 Nov 1999 14:12:43 GMT Organization: itc Message-ID: <01bf2605$3c271730$dc36f43e@primsrv> X-Trace: news.lucky.net 941638363 8030 62.244.54.249 (3 Nov 1999 14:12:43 GMT) X-Complaints-To: usenet@news.lucky.net X-Newsreader: Microsoft Internet News 4.70.1155 Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I 'm use for connection user to server ppp. I have ppp.linkup: ..... papcuaa2: !bg su -c "/etc/ppp/MyProgram" ..... When PPP establishes a connection MyProgram does not execute. Why ? Thanks in advance Yury To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Nov 3 15:57:22 1999 Delivered-To: freebsd-net@freebsd.org Received: from ind.alcatel.com (postal.xylan.com [208.8.0.248]) by hub.freebsd.org (Postfix) with ESMTP id B4E231511E; Wed, 3 Nov 1999 15:57:03 -0800 (PST) (envelope-from wes@softweyr.com) Received: from mailhub.xylan.com (mailhub [198.206.181.70]) by ind.alcatel.com (8.9.3+Sun/8.9.1 (ind.alcatel.com 3.0 [OUT])) with SMTP id PAA27443; Wed, 3 Nov 1999 15:53:46 -0800 (PST) Received: from omni.xylan.com by mailhub.xylan.com (SMI-8.6/SMI-SVR4 (mailhub 2.1 [HUB])) id PAA25493; Wed, 3 Nov 1999 15:53:45 -0800 Received: from softweyr.com (dyn7.utah.xylan.com) by omni.xylan.com (4.1/SMI-4.1 (xylan engr [SPOOL])) id AA22763; Wed, 3 Nov 99 15:53:41 PST Message-Id: <3820CB04.1ABE2D45@softweyr.com> Date: Wed, 03 Nov 1999 16:53:40 -0700 From: Wes Peters Organization: Softweyr LLC X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 3.1-RELEASE i386) X-Accept-Language: en Mime-Version: 1.0 To: mjacob@feral.com Cc: Greg Skafte , freebsd-hackers@FreeBSD.ORG, freebsd-net@FreeBSD.ORG Subject: Re: Linux* 2.2.x Driver inetl Etherexpress 1000 References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Matthew Jacob wrote: > > Yes, we know. Gee, the license terms look AWFULLY familiar. I'd like to think I had some long-lasting effect on the Intel legal department, but I doubt this was it. ;^) -- "Where am I, and what am I doing in this handbasket?" Wes Peters Softweyr LLC wes@softweyr.com http://softweyr.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Nov 3 22:30: 7 1999 Delivered-To: freebsd-net@freebsd.org Received: from jerry.kfunigraz.ac.at (GIGAJERRY.kfunigraz.ac.at [143.50.55.161]) by hub.freebsd.org (Postfix) with ESMTP id 5C63214F0D for ; Wed, 3 Nov 1999 22:29:53 -0800 (PST) (envelope-from mkamm@tom.kfunigraz.ac.at) Received: from tom.kfunigraz.ac.at (mc_tom [10.10.1.160]) by jerry.kfunigraz.ac.at (8.9.3/8.9.3) with ESMTP id HAA28236 for ; Thu, 4 Nov 1999 07:28:34 +0100 (MET) Received: from localhost.kfunigraz.ac.at (BONLINEB13.kfunigraz.ac.at [143.50.33.13]) by tom.kfunigraz.ac.at (8.9.3/8.9.3) with ESMTP id HAA07603 for ; Thu, 4 Nov 1999 07:28:32 +0100 (MET) Received: from localhost (mkamm@localhost) by localhost.kfunigraz.ac.at (8.9.3/8.9.3) with ESMTP id TAA00484 for ; Wed, 3 Nov 1999 19:54:15 +0100 (CET) (envelope-from mkamm@localhost.kfunigraz.ac.at) Date: Wed, 3 Nov 1999 19:54:15 +0100 (CET) From: Martin Kammerhofer Reply-To: Martin Kammerhofer To: freebsd-net@FreeBSD.ORG Subject: RE: FreeBSD reboots In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Note: fw2 := FIN_WAIT_2 On Tue, 2 Nov 1999, Julian Elischer wrote: : because it breaks teh standard and teh networking guru's don't like it. : Starting the 2MSL timer when fw2 state is entered is also breaking the standard and a (useful) hack. ;) Having a sysctlable fw2 timeout like other OSes would be nice though. Currently you have to tweak net.inet.tcp.keepintvl because this totally unrelated parameter is re-used (abused) for fw2 timeouts. I'd like to see a net.inet.tcp.finwait2tmout knob. (A proposed patch for this can be found in this mailing list's archive.) Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Thu Nov 4 7:54:47 1999 Delivered-To: freebsd-net@freebsd.org Received: from ahmler2.mail.eds.com (ahmler2.mail.eds.com [192.85.154.76]) by hub.freebsd.org (Postfix) with ESMTP id 1C43414C58 for ; Thu, 4 Nov 1999 07:54:37 -0800 (PST) (envelope-from douglas.ballentine@eds.com) Received: from ahmlir2.mail.eds.com (ahmlir2-2.mail.eds.com [192.85.154.29]) by ahmler2.mail.eds.com (8.9.3/8.9.3) with ESMTP id KAA03141 for ; Thu, 4 Nov 1999 10:54:26 -0500 (EST) Received: from ahmlir2.mail.eds.com (localhost [127.0.0.1]) by ahmlir2.mail.eds.com (8.9.3/8.9.3) with ESMTP id KAA27276 for ; Thu, 4 Nov 1999 10:53:55 -0500 (EST) Received: from usahm001.exch.eds.com ([207.37.138.140]) by ahmlir2.mail.eds.com (8.9.3/8.9.3) with ESMTP id KAA27271 for ; Thu, 4 Nov 1999 10:53:55 -0500 (EST) Received: by USAHM001 with Internet Mail Service (5.5.2650.21) id ; Thu, 4 Nov 1999 10:53:54 -0500 Message-ID: From: "Ballentine, Douglas A" To: "'net@FreeBSD.ORG'" Subject: OSPF & VRRP Date: Thu, 4 Nov 1999 10:52:52 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="ISO-8859-1" Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Has anyone had occasion to Port zebra to Solaris 2.7 (only the IPv4 part). If so have you any source code for the modifications required to the zebra 0.81 C code and do you have any VRRP C code that interfaces with this? You can e-mail me directly at douglas.ballentine@eds.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Thu Nov 4 8:45:18 1999 Delivered-To: freebsd-net@freebsd.org Received: from marvin.axion.bt.co.uk (marvin.axion.bt.co.uk [132.146.16.82]) by hub.freebsd.org (Postfix) with ESMTP id A235C14CB2 for ; Thu, 4 Nov 1999 08:45:15 -0800 (PST) (envelope-from graeme.n.brown@bt.com) Received: from cbtlipnt01.btlabs.bt.co.uk by marvin (local) with ESMTP; Thu, 4 Nov 1999 16:23:41 +0000 Received: by cbtlipnt01.btlabs.bt.co.uk with Internet Mail Service (5.5.2448.0) id ; Thu, 4 Nov 1999 16:23:39 -0000 Message-ID: <71DA16F18D32D2119A1D0000F8FE9A9402B5A34B@mbtlipnt01.btlabs.bt.co.uk> From: graeme.n.brown@bt.com To: freebsd-net@freebsd.org Subject: FreeBSD drivers for Interphase PMC 4575 ATM Adapters Date: Thu, 4 Nov 1999 16:23:28 -0000 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2448.0) Content-Type: text/plain Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Folks Does anyone know of a FreeBSD (or even *BSD) unix driver for the 155 Mbits/s ATM Adapters from Interphase [Interphase PMC 4575 ATM Adapter]. See http://www.interphase.com/products/datasheet.cfm?ProductID=4575 I am aware of ATM support in FreeBSD for ENI, Adaptec and FORE cards. TIA Graeme N Brown BT Adastral Park, UK email: graeme.n.brown@bt.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Thu Nov 4 20:18:49 1999 Delivered-To: freebsd-net@freebsd.org Received: from smtp10.atl.mindspring.net (smtp10.atl.mindspring.net [207.69.200.246]) by hub.freebsd.org (Postfix) with ESMTP id 53E5D1567E for ; Thu, 4 Nov 1999 20:18:46 -0800 (PST) (envelope-from AKovalenko@mindspring.com) Received: from RabbitsLawn.mindspring.com (PPPa36-ResalePerthAmboy1-3R1063.saturn.bbn.com [4.16.126.143]) by smtp10.atl.mindspring.net (8.8.5/8.8.5) with ESMTP id XAA11291 for ; Thu, 4 Nov 1999 23:18:06 -0500 (EST) Received: (from sunny@localhost) by RabbitsLawn.mindspring.com (8.9.3/8.7.3) id XAA01148 for freebsd-net@freebsd.org; Thu, 4 Nov 1999 23:35:30 -0500 From: Alexandre Kovalenko AKA Sunny Message-Id: <199911050435.XAA01148@RabbitsLawn.mindspring.com> Subject: Interfaces, KLD and friends... To: freebsd-net@freebsd.org Date: Thu, 4 Nov 1999 23:35:30 -0500 (EST) X-Mailer: ELM [version 2.4ME+ PL47 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I would appreciate RTFM with the pointer to the M for the following two questions: -- what is the list of entry points interface (if_xx.c) should implement -- how does one go about making interface a KLD, specifically, how does one dynamically register interface. Thank you in advance. Alexandre Kovalenko. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Fri Nov 5 10:54:51 1999 Delivered-To: freebsd-net@freebsd.org Received: from bubba.whistle.com (bubba.whistle.com [207.76.205.7]) by hub.freebsd.org (Postfix) with ESMTP id 56D7914C84 for ; Fri, 5 Nov 1999 10:54:47 -0800 (PST) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.2/8.9.2) id KAA94203; Fri, 5 Nov 1999 10:54:25 -0800 (PST) From: Archie Cobbs Message-Id: <199911051854.KAA94203@bubba.whistle.com> Subject: Re: Interfaces, KLD and friends... In-Reply-To: <199911050435.XAA01148@RabbitsLawn.mindspring.com> from Alexandre Kovalenko AKA Sunny at "Nov 4, 1999 11:35:30 pm" To: AKovalenko@mindspring.com (Alexandre Kovalenko AKA Sunny) Date: Fri, 5 Nov 1999 10:54:25 -0800 (PST) Cc: freebsd-net@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Alexandre Kovalenko AKA Sunny writes: > I would appreciate RTFM with the pointer to the M for the following > two questions: > -- what is the list of entry points interface (if_xx.c) should implement > -- how does one go about making interface a KLD, specifically, how does > one dynamically register interface. Check out /sys/netgraph/ng_iface.c for an example of how to do this. -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Sat Nov 6 3:23:41 1999 Delivered-To: freebsd-net@freebsd.org Received: from awfulhak.org (dynamic-87.max4-du-ws.dialnetwork.pavilion.co.uk [212.74.9.215]) by hub.freebsd.org (Postfix) with ESMTP id 0CEFB14DE1 for ; Sat, 6 Nov 1999 03:23:33 -0800 (PST) (envelope-from brian@Awfulhak.org) Received: from hak.lan.Awfulhak.org (root@hak.lan.Awfulhak.org [172.16.0.12]) by awfulhak.org (8.9.3/8.9.3) with ESMTP id LAA00365; Sat, 6 Nov 1999 11:23:32 GMT (envelope-from brian@lan.awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost.lan.Awfulhak.org [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id OAA00592; Fri, 5 Nov 1999 14:25:47 GMT (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <199911051425.OAA00592@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.0 09/18/1999 To: "samj" Cc: freebsd-net@FreeBSD.ORG, brian@hak.lan.Awfulhak.org Subject: Re: ppp.linkup do not work In-Reply-To: Message from "samj" of "03 Nov 1999 14:12:43 GMT." <01bf2605$3c271730$dc36f43e@primsrv> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 05 Nov 1999 14:25:47 +0000 From: Brian Somers Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I 'm use for connection user to > server ppp. > I have ppp.linkup: > ..... > papcuaa2: > !bg su -c "/etc/ppp/MyProgram" > ..... > When PPP establishes a connection MyProgram does not execute. > Why ? > Thanks in advance > Yury Because su wants a password ? If you're already root, just use !bg /etc/ppp/MyProgram and make sure MyProgram has the requisite #! at the top. -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message