From owner-freebsd-isdn Sun Mar 5 0:32:52 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from muzak.iinet.net.au (muzak.iinet.net.au [203.59.24.237]) by hub.freebsd.org (Postfix) with ESMTP id 6D7DC37B9A4; Sun, 5 Mar 2000 00:32:45 -0800 (PST) (envelope-from julian@elischer.org) Received: from jules.elischer.org (reggae-20-35.nv.iinet.net.au [203.59.85.35]) by muzak.iinet.net.au (8.8.5/8.8.5) with SMTP id QAA10107; Sun, 5 Mar 2000 16:32:08 +0800 Message-ID: <38C21B62.2781E494@elischer.org> Date: Sun, 05 Mar 2000 00:31:30 -0800 From: Julian Elischer X-Mailer: Mozilla 3.04Gold (X11; I; FreeBSD 4.0-CURRENT i386) MIME-Version: 1.0 To: hm@hcs.de Cc: Juergen Lock , kuku@gilberto.physik.RWTH-Aachen.DE, freebsd-isdn@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: ijppp for isdn, ppp compression, and netgraph (also: load balancing) References: <20000305053245.84D2336AB@hcswork.hcs.de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hellmuth Michaelis wrote: > > >From the keyboard of Juergen Lock: > > > And the other reason i'm looking at ijppp is ppp compression. It > > currently supports deflate (rfc1979) and predictor1 (rfc1978), which > > should at least help if the other end is running bsd or linux, > > but if your other end is something like an ascend or an external > > router (zyxel, cisco(?), there are probably more that speak this > > protocol), you'd want stac lzs (rfc1974), or if its a wintendo box > > even you'd want M$' special version of that (yes of course they > > invented their own `standard' again.) So my question is, is > > anyone working on this? There is (alpha) code that does this on > > linux, > > > > http://www.ibh-dd.de/~beck/stuff/lzs4i4l/ > > I've looked at that. Its very Linux-centric and i gave up for the moment > when i realized how much work it would be to port it. > > Brian's ppp over i4b does support deflate compression and i get very > good results out of it - too good to put more work into the above URL. > > > today... impressive stuff.) and is someone working on linking i4b > > and netgraph? > > There will be a netgraph node interface which will link an i4b B-channel > to netgraph. There are no plans from my side to netgraphify the D-channel > part of i4b. to add a negraph interface to the B channels should be quite easy. If you need help I can prbably almost do most of it.. (I did look at it already some time ago) when this is done the netgraph PPP nodes (which can support these compression types will be usable. -- __--_|\ Julian Elischer / \ julian@elischer.org ( OZ ) World tour 2000 ---> X_.---._/ presently in: Perth v To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sun Mar 5 0:50:25 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from hcshh.hcs.de (hcshh.hcs.de [194.123.40.1]) by hub.freebsd.org (Postfix) with SMTP id 3BB4737B9AB; Sun, 5 Mar 2000 00:50:18 -0800 (PST) (envelope-from hm@hcs.de) Received: from hcswork.hcs.de([192.76.124.5]) (2821 bytes) by hcshh.hcs.de via sendmail with P:smtp/R:inet_hosts/T:smtp (sender: ) id for ; Sun, 5 Mar 2000 09:49:44 +0100 (CET) (Smail-3.2.0.104 1998-Nov-20 #1 built 1998-Dec-11) Received: by hcswork.hcs.de (Postfix, from userid 200) id 8649A36AB; Sun, 5 Mar 2000 09:49:43 +0100 (MET) Subject: Re: ijppp for isdn, ppp compression, and netgraph (also: load balancing) In-Reply-To: <38C21B62.2781E494@elischer.org> from Julian Elischer at "Mar 5, 0 00:31:30 am" To: julian@elischer.org (Julian Elischer) Date: Sun, 5 Mar 2000 09:49:43 +0100 (MET) Cc: hm@hcs.de, nox@jelal.kn-bremen.de, kuku@gilberto.physik.RWTH-Aachen.DE, freebsd-isdn@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Reply-To: hm@hcs.de Organization: HCS Hanseatischer Computerservice GmbH X-Mailer: ELM [version 2.4ME+ PL39 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 1720 Message-Id: <20000305084943.8649A36AB@hcswork.hcs.de> From: hm@hcs.de (Hellmuth Michaelis) Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From the keyboard of Julian Elischer: > > > today... impressive stuff.) and is someone working on linking i4b > > > and netgraph? > > > > There will be a netgraph node interface which will link an i4b B-channel > > to netgraph. There are no plans from my side to netgraphify the D-channel > > part of i4b. > > to add a negraph interface to the B channels should be quite easy. > If you need help I can prbably almost do most of it.. Its already in the development sources (Archie had a look at it already) and it works with mppd. It was really quite easy, although if Archies daemonnews article had been available at that time i wrote it, it would have been even easier :-) > when this is done the netgraph PPP nodes (which can support > these compression types will be usable. In the mppd i worked with (looking ... mpd3.0b1/mpd3.0b2) deflate was not present, predictor was not usable, bsd was not present. There were just hooks for M$ and stac (which you can not release obviously). Currently i'm using ppp instead of mppd mostly just because it supports deflate compression. I had a look at both mppd and ppp to see how the mentioned free stac compression would be integrateable and found them both similar, given they both come from iijppp. It looks like if it were a good idea if Brian and Archie would merge both to get the best features from each one into a common product ;-) hellmuth -- Hellmuth Michaelis Tel +49 40 55 97 47-70 HCS Hanseatischer Computerservice GmbH Fax +49 40 55 97 47-77 Oldesloer Strasse 97-99 Mail hm [at] hcs.de D-22457 Hamburg WWW http://www.hcs.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sun Mar 5 3:34:57 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from awfulhak.org (tun.AwfulHak.org [194.242.139.173]) by hub.freebsd.org (Postfix) with ESMTP id 83A0437B9C3; Sun, 5 Mar 2000 03:34:51 -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 LAA01436; Sun, 5 Mar 2000 11:32:51 GMT (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id LAA04613; Sun, 5 Mar 2000 11:32:47 GMT (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200003051132.LAA04613@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: hm@hcs.de Cc: julian@elischer.org (Julian Elischer), nox@jelal.kn-bremen.de, kuku@gilberto.physik.RWTH-Aachen.DE, freebsd-isdn@FreeBSD.org, freebsd-hackers@FreeBSD.org, brian@hak.lan.awfulhak.org Subject: Re: ijppp for isdn, ppp compression, and netgraph (also: load balancing) In-Reply-To: Message from hm@hcs.de (Hellmuth Michaelis) of "Sun, 05 Mar 2000 09:49:43 +0100." <20000305084943.8649A36AB@hcswork.hcs.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 05 Mar 2000 11:32:47 +0000 From: Brian Somers Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [.....] > Currently i'm using ppp instead of mppd mostly just because it supports > deflate compression. I had a look at both mppd and ppp to see how the > mentioned free stac compression would be integrateable and found them > both similar, given they both come from iijppp. It looks like if it were > a good idea if Brian and Archie would merge both to get the best features > from each one into a common product ;-) The reason we haven't done this yet is my fault. I've been too busy with other things :-/ I hope this'll change soon. > hellmuth > -- > Hellmuth Michaelis Tel +49 40 55 97 47-70 > HCS Hanseatischer Computerservice GmbH Fax +49 40 55 97 47-77 > Oldesloer Strasse 97-99 Mail hm [at] hcs.de > D-22457 Hamburg WWW http://www.hcs.de -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sun Mar 5 10:14:49 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from blaubaer.kn-bremen.de (blaubaer.kn-bremen.de [195.37.179.254]) by hub.freebsd.org (Postfix) with ESMTP id 26C3F37B564; Sun, 5 Mar 2000 10:14:43 -0800 (PST) (envelope-from nox@saturn.kn-bremen.de) Received: from saturn.kn-bremen.de (uucp@localhost) by blaubaer.kn-bremen.de (8.9.1/8.9.1) with UUCP id TAA06302; Sun, 5 Mar 2000 19:08:34 +0100 Received: (from nox@localhost) by saturn.kn-bremen.de (8.9.3/8.8.5) id SAA22834; Sun, 5 Mar 2000 18:55:49 +0100 (CET) From: Juergen Lock Date: Sun, 5 Mar 2000 18:55:49 +0100 To: Hellmuth Michaelis Cc: kuku@gilberto.physik.RWTH-Aachen.DE, freebsd-isdn@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: ijppp for isdn, ppp compression, and netgraph (also: load balancing) Message-ID: <20000305185548.A16881@saturn.kn-bremen.de> References: <200003042243.XAA82879@saturn.kn-bremen.de> <20000305053245.84D2336AB@hcswork.hcs.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.7i In-Reply-To: <20000305053245.84D2336AB@hcswork.hcs.de> Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Mar 05, 2000 at 06:32:45AM +0100, Hellmuth Michaelis wrote: > >From the keyboard of Juergen Lock: > > > And the other reason i'm looking at ijppp is ppp compression. It > > currently supports deflate (rfc1979) and predictor1 (rfc1978), which > > should at least help if the other end is running bsd or linux, > > but if your other end is something like an ascend or an external > > router (zyxel, cisco(?), there are probably more that speak this > > protocol), you'd want stac lzs (rfc1974), or if its a wintendo box > > even you'd want M$' special version of that (yes of course they > > invented their own `standard' again.) So my question is, is > > anyone working on this? There is (alpha) code that does this on > > linux, > > > > http://www.ibh-dd.de/~beck/stuff/lzs4i4l/ > > I've looked at that. Its very Linux-centric and i gave up for the moment > when i realized how much work it would be to port it. > > Brian's ppp over i4b does support deflate compression and i get very > good results out of it - too good to put more work into the above URL. > I don't see anything wrong with deflate itself either, its just that when you don't have control over whats at the other end of the link its most of the time useless, most equipment thats out there _if_ it does compression at all still only knows the other protocols. :( > > that seems to be the logical way to do more complex > > stuff like this aodi thing that e.g. the german Telekom wants to use > > for their low-bandwidth 10 DEM/month isdn `flatrate' which they plan to > > introduce around the end of the year. (and _if_ this really works it > > sure will become pretty popular over here as long as all the other `real' > > flatrates are still in the 100 DEM or more range... :/ ) this seems to > > be the current draft: > > - this "flatrate" will only be available to T-Online customers. Since i'm > not such a beast and will probably never become one its of not much use > for me. > well for someone who _could_ use it the 8 DEM more (is it still 8?) for the t-offline account may still be worth it, and i don't think they would even be allowed to force you to do _all_ your ip over their system... (yes that may need some routing tweaks but so be it. :) at least the proposed aodi protocol shouldn't be in the way and i've already had two connections open with i4b at the same time over a single card and it worked as expected. the only problem would be you couldn't dynamically up the bandwith of connections that are already open over the slow link without routing that additional B channel over t-offline too. well unless you start playing with tunnels...) > - my usage of the internet is not much compatible with what this "flatrate" > offers. > hmm imho there's a lot of things a low-bandwidth link can be useful for when all your other links are still metered... :/ think of always getting mail delivered near-immediately at no extra cost as soon as the box is up, or that you'd no longer have to close and re-open things like ssh sessions all the time, or that you could just talk(1) to someone instead of having to pay for a phonecall... (in case anyone wonders: yes those are also still _always_ metered here) and that even while both B channels may be busy with other things. Oh and you could then also get at the box from `anywhere' if you need to, whithout having to make (and pay for) a direct isdn connection or other special precautions cause you'd no longer have to worry about portscanning/flood-pinging script kiddies or other kinds of `accidents' causing insane phone bills when you leave the box online while you can't watch it. (well, assuming you made a decent firewall.) (of course when i look at _my_ usage of the net a 100 DEM 64kbit flatrate will probably still be more economical (*sigh*), but i suspect there are lots of people where this wouldn't be so.) > - the Telecom does not give away anything for free. Check when, why and > most important how you are using the internet: the savings you get using > this "flatrate" does not pay even a fraction of the time and work needed > to implement this - in my eyes. > Well yes someone would have to do the work and it probably won't exactly make him rich either, thats true. :) (but it could make bsd more popular if it gets this before linux...) Regards, -- Juergen Lock (remove dot foo from address to reply) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sun Mar 5 10:14:56 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from blaubaer.kn-bremen.de (blaubaer.kn-bremen.de [195.37.179.254]) by hub.freebsd.org (Postfix) with ESMTP id 9B59537BAAB; Sun, 5 Mar 2000 10:14:47 -0800 (PST) (envelope-from nox@saturn.kn-bremen.de) Received: from saturn.kn-bremen.de (uucp@localhost) by blaubaer.kn-bremen.de (8.9.1/8.9.1) with UUCP id TAA06299; Sun, 5 Mar 2000 19:08:33 +0100 Received: (from nox@localhost) by saturn.kn-bremen.de (8.9.3/8.8.5) id TAA23090; Sun, 5 Mar 2000 19:02:15 +0100 (CET) From: Juergen Lock Date: Sun, 5 Mar 2000 19:02:15 +0100 To: Julian Elischer Cc: hm@hcs.de, kuku@gilberto.physik.RWTH-Aachen.DE, freebsd-isdn@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: ijppp for isdn, ppp compression, and netgraph (also: load balancing) Message-ID: <20000305190214.B16881@saturn.kn-bremen.de> References: <20000305053245.84D2336AB@hcswork.hcs.de> <38C21B62.2781E494@elischer.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.7i In-Reply-To: <38C21B62.2781E494@elischer.org> Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Mar 05, 2000 at 12:31:30AM -0800, Julian Elischer wrote: > Hellmuth Michaelis wrote: > > > > >From the keyboard of Juergen Lock: > > > > > And the other reason i'm looking at ijppp is ppp compression. It > > > currently supports deflate (rfc1979) and predictor1 (rfc1978), which > > > should at least help if the other end is running bsd or linux, > > > but if your other end is something like an ascend or an external > > > router (zyxel, cisco(?), there are probably more that speak this > > > protocol), you'd want stac lzs (rfc1974), or if its a wintendo box > > > even you'd want M$' special version of that (yes of course they > > > invented their own `standard' again.) So my question is, is > > > anyone working on this? There is (alpha) code that does this on > > > linux, > > > > > > http://www.ibh-dd.de/~beck/stuff/lzs4i4l/ > > > > I've looked at that. Its very Linux-centric and i gave up for the moment > > when i realized how much work it would be to port it. > > > > Brian's ppp over i4b does support deflate compression and i get very > > good results out of it - too good to put more work into the above URL. > > > > > today... impressive stuff.) and is someone working on linking i4b > > > and netgraph? > > > > There will be a netgraph node interface which will link an i4b B-channel > > to netgraph. There are no plans from my side to netgraphify the D-channel > > part of i4b. > > to add a negraph interface to the B channels should be quite easy. > If you need help I can prbably almost do most of it.. > > (I did look at it already some time ago) > > when this is done the netgraph PPP nodes (which can support > these compression types will be usable. They could, but they don't yet, right? :) Maybe it still should be added to ijppp first cause debugging user processes is easier than the kernel... and at the usual isdn bri speeds a user process should still be pretty fast enough. Regards, -- Juergen Lock (remove dot foo from address to reply) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sun Mar 5 15: 3:17 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from peedub.muc.de (peedub.muc.de [193.149.49.109]) by hub.freebsd.org (Postfix) with ESMTP id 1E61837BA30 for ; Sun, 5 Mar 2000 15:03:12 -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 XAA11973; Sun, 5 Mar 2000 23:39:54 +0100 (CET) Message-Id: <200003052239.XAA11973@peedub.muc.de> X-Mailer: exmh version 2.1.0 09/18/1999 To: Juergen Lock Cc: freebsd-isdn@freebsd.org Subject: Re: ijppp for isdn, ppp compression, and netgraph (also: load balancing) Reply-To: Gary Jennejohn In-reply-to: Your message of "Sun, 05 Mar 2000 18:55:49 +0100." <20000305185548.A16881@saturn.kn-bremen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sun, 05 Mar 2000 23:39:54 +0100 From: Gary Jennejohn Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Juergen Lock writes: >On Sun, Mar 05, 2000 at 06:32:45AM +0100, Hellmuth Michaelis wrote: > - the Telecom does not give away anything for free. Check when, why and >> most important how you are using the internet: the savings you get using >> this "flatrate" does not pay even a fraction of the time and work needed >> to implement this - in my eyes. >> > Well yes someone would have to do the work and it probably won't >exactly make him rich either, thats true. :) (but it could make >bsd more popular if it gets this before linux...) > So, Juergen, when can we expect to see patches from you ? :) _I_ certainly don't plan to invest any of my time in this endeavor. Besides, real flatrate connections are becoming more prevalent here in Germany, and at reasonable (for Germany) prices. www.callando.de is offering a flatrate at 89 DM/mo iwth a 3 GB/mo limit. Not too bad. The other providers will have to follow suit. --- Gary Jennejohn / garyj@muc.de garyj@fkr.cpqcorp.net gj@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sun Mar 5 23:48: 4 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from alpha.netvision.net.il (alpha.netvision.net.il [194.90.1.13]) by hub.freebsd.org (Postfix) with ESMTP id 8D62237BC15 for ; Sun, 5 Mar 2000 23:48:00 -0800 (PST) (envelope-from oded@daronet.com) Received: from ODED ([62.0.37.242]) by alpha.netvision.net.il (8.9.3/8.8.6) with SMTP id JAA10252 for ; Mon, 6 Mar 2000 09:47:58 +0200 (IST) Message-ID: <000801bf873f$11ccff40$1800a8c0@wdcgroup.com> From: "Oded Edelman" To: Subject: Winbond W6692CF Date: Mon, 6 Mar 2000 09:39:12 +0200 Organization: Daronet LTD. MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0005_01BF874F.D48C64C0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.00.2314.1300 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_0005_01BF874F.D48C64C0 Content-Type: text/plain; charset="windows-1255" Content-Transfer-Encoding: quoted-printable Hi, I am looking for drivers for Windows 2000 for Winbond W6692CF Isdn = card. Thanks for your help, Regards, Oded Edelman e-mail: oded@daronet.com Tel: 972-54-243065 Fax: 972-3-5754420 site: www.daronet.com ------=_NextPart_000_0005_01BF874F.D48C64C0 Content-Type: text/html; charset="windows-1255" Content-Transfer-Encoding: quoted-printable
 
Hi,
 
   I am looking for = drivers=20 for Windows 2000 for Winbond W6692CF Isdn=20 card.
 
Thanks for your help,
 
 
 
 
Regards,
 
Oded Edelman
e-mail: oded@daronet.com
Tel:=20 972-54-243065
Fax: 972-3-5754420
site: www.daronet.com
------=_NextPart_000_0005_01BF874F.D48C64C0-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Mar 6 1: 7:40 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from merak.worldonline.fr (merak.worldonline.fr [212.83.128.13]) by hub.freebsd.org (Postfix) with ESMTP id 9FD7A37BCC3 for ; Mon, 6 Mar 2000 01:07:32 -0800 (PST) (envelope-from awb@worldonline.fr) Received: from kosovo (ppp-90.dialup-133.worldonline.fr [212.83.133.90]) by merak.worldonline.fr (Mail pour Wolf) with SMTP id KAA18247 for ; Mon, 6 Mar 2000 10:07:28 +0100 Message-ID: <000001bf874b$6ebde960$0601a8c0@kosovo.idianet.net> From: "Abdelkrim WAHHABI" To: Subject: Date: Mon, 6 Mar 2000 09:59:51 +0100 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 4.72.3110.37 X-Mimeole: Produced By Microsoft MimeOLE V4.72.3110.37 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org i have some problem with isdn configuration i use isdn under sppp i submit you the file /var/log/messages ... Mar 6 09:19:49 idianet /kernel: ppi0: on ppbus 0 Mar 6 09:19:49 idianet /kernel: plip0: on ppbus 0 Mar 6 09:19:49 idianet /kernel: ep0 not found at 0x300 Mar 6 09:19:49 idianet /kernel: ex0 not found Mar 6 09:19:49 idianet /kernel: isic0 at 0x268 irq 5 flags 0x7 on isa Mar 6 09:19:49 idianet /kernel: isic0: USRobotics Sportster ISDN TA intern Mar 6 09:19:49 idianet /kernel: isic0: ISAC 2085 Version A1/A2 or 2086/2186 Version 1.1 (IOM-2) (Addr=0xc268) Mar 6 09:19:49 idianet /kernel: isic0: HSCX 82525 or 21525 Version 2.1 (AddrA=0x268, AddrB=0x4268) Mar 6 09:19:49 idianet /kernel: adv0 not found at 0x330 Mar 6 09:19:49 idianet /kernel: bt0 not found at 0x134 Mar 6 09:19:49 idianet /kernel: aha0 not found at 0x134 Mar 6 09:19:49 idianet /kernel: vga0 at 0x3b0-0x3df maddr 0xa0000 msize 131072 on isa Mar 6 09:19:49 idianet /kernel: npx0 on motherboard Mar 6 09:19:49 idianet /kernel: npx0: INT 16 interface Mar 6 09:19:49 idianet /kernel: i4b: ISDN call control device attached Mar 6 09:19:49 idianet /kernel: i4bisppp: 4 ISDN SyncPPP device(s) attached Mar 6 09:19:49 idianet /kernel: i4bctl: ISDN system control port attached Mar 6 09:19:49 idianet /kernel: i4bipr: 4 IP over raw HDLC ISDN device(s) attached (VJ header compression) Mar 6 09:19:49 idianet /kernel: i4btel: 2 ISDN telephony interface device(s) attached Mar 6 09:19:49 idianet /kernel: i4brbch: 4 raw B channel access device(s) attached Mar 6 09:19:49 idianet /kernel: i4btrc: 4 ISDN trace device(s) attached Mar 6 09:19:49 idianet /kernel: Waiting 15 seconds for SCSI devices to settle Mar 6 09:19:49 idianet /kernel: changing root device to da0s1a Mar 6 09:19:49 idianet /kernel: da0 at ahc0 bus 0 target 0 lun 0 Mar 6 09:19:49 idianet /kernel: da0: Fixed Direct Access SCSI-2 device Mar 6 09:19:49 idianet /kernel: da0: 40.000MB/s transfers (20.000MHz, offset 15, 16bit), Tagged Queueing Enabled Mar 6 09:19:49 idianet /kernel: da0: 6208MB (12715920 512 byte sectors: 255H 63S/T 791C) Mar 6 09:19:49 idianet /kernel: cd0 at ahc0 bus 0 target 1 lun 0 Mar 6 09:19:49 idianet /kernel: cd0: Removable CD-ROM SCSI-2 device Mar 6 09:19:49 idianet /kernel: cd0: 20.000MB/s transfers (20.000MHz, offset 16) Mar 6 09:19:49 idianet /kernel: cd0: Attempt to query device size failed: NOT READY, Medium not present Mar 6 09:19:49 idianet /kernel: isp0: lcp close(initial) Mar 6 09:19:49 idianet /kernel: isp0: lcp close(initial) Mar 6 09:19:49 idianet /kernel: isp0: lcp open(initial) Mar 6 09:19:49 idianet /kernel: isp0: phase establish Mar 6 09:19:49 idianet named[129]: starting. named 8.1.2 Thu Sep 16 22:23:56 GMT 1999 jkh@highwing.cdrom.com:/usr/obj/usr/src/usr.sbin/named Mar 6 09:19:49 idianet named[130]: Ready to answer queries. Mar 6 09:19:52 idianet su: login_getclass: unknown class 'pgsql' Mar 6 09:22:17 idianet isdnd[64]: DMN i4b isdn daemon started (pid = 64) Mar 6 09:22:19 idianet /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal Mar 6 09:22:19 idianet /kernel: i4b-L1-isic_recover: HSCX B: ISTA = 0x0 Mar 6 09:22:19 idianet /kernel: i4b-L1-isic_recover: ISAC: ISTA = 0x0 Mar 6 09:22:19 idianet /kernel: i4b-L1-isic_recover: HSCX B: IMASK = 0xff Mar 6 09:22:19 idianet /kernel: i4b-L1-isic_recover: HSCX A: IMASK = 0xf8 Mar 6 09:22:19 idianet /kernel: i4b-L1-isic_recover: ISAC: IMASK = 0x2a Mar 6 09:22:19 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:22:19 idianet /kernel: i4b-L1-ph_data_req: still in state F3! Mar 6 09:22:21 idianet /kernel: i4b-L3-T303_timeout: SETUP not answered, cr = 43 Mar 6 09:22:21 idianet /kernel: i4b-L3-next_l3state: FSM illegal state, state = ST_OW - Out Wait EST, event = EV_T303EXP - T303 timeout! Mar 6 09:22:21 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:22:21 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:22:21 idianet /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal Mar 6 09:22:21 idianet /kernel: i4b-L1-isic_recover: HSCX B: ISTA = 0x0 Mar 6 09:22:21 idianet /kernel: i4b-L1-isic_recover: ISAC: ISTA = 0x0 Mar 6 09:22:21 idianet /kernel: i4b-L1-isic_recover: HSCX B: IMASK = 0xff Mar 6 09:22:21 idianet /kernel: i4b-L1-isic_recover: HSCX A: IMASK = 0xf8 Mar 6 09:22:21 idianet /kernel: i4b-L1-isic_recover: ISAC: IMASK = 0x2a Mar 6 09:22:23 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:22:23 idianet /kernel: i4b-L1-ph_data_req: still in state F3! Mar 6 09:22:23 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:22:25 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:22:25 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:22:25 idianet /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal Mar 6 09:22:25 idianet /kernel: i4b-L1-isic_recover: HSCX B: ISTA = 0x0 Mar 6 09:22:25 idianet /kernel: i4b-L1-isic_recover: ISAC: ISTA = 0x0 Mar 6 09:22:25 idianet /kernel: i4b-L1-isic_recover: HSCX B: IMASK = 0xff Mar 6 09:22:25 idianet /kernel: i4b-L1-isic_recover: HSCX A: IMASK = 0xf8 Mar 6 09:22:25 idianet /kernel: i4b-L1-isic_recover: ISAC: IMASK = 0x2a Mar 6 09:22:27 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:22:27 idianet /kernel: i4b-L1-ph_data_req: still in state F3! Mar 6 09:22:27 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:22:29 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:22:29 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:22:29 idianet /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal Mar 6 09:22:29 idianet /kernel: i4b-L1-isic_recover: HSCX B: ISTA = 0x0 Mar 6 09:22:29 idianet /kernel: i4b-L1-isic_recover: ISAC: ISTA = 0x0 Mar 6 09:22:29 idianet /kernel: i4b-L1-isic_recover: HSCX B: IMASK = 0xff Mar 6 09:22:29 idianet /kernel: i4b-L1-isic_recover: HSCX A: IMASK = 0xf8 Mar 6 09:22:29 idianet /kernel: i4b-L1-isic_recover: ISAC: IMASK = 0x2a Mar 6 09:22:31 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:22:31 idianet /kernel: i4b-L1-ph_data_req: still in state F3! Mar 6 09:22:31 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:22:33 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:22:33 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:22:33 idianet /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal Mar 6 09:22:33 idianet /kernel: i4b-L1-isic_recover: HSCX B: ISTA = 0x0 Mar 6 09:22:33 idianet /kernel: i4b-L1-isic_recover: ISAC: ISTA = 0x0 Mar 6 09:22:33 idianet /kernel: i4b-L1-isic_recover: HSCX B: IMASK = 0xff Mar 6 09:22:33 idianet /kernel: i4b-L1-isic_recover: HSCX A: IMASK = 0xf8 Mar 6 09:22:33 idianet /kernel: i4b-L1-isic_recover: ISAC: IMASK = 0x2a Mar 6 09:22:33 idianet /kernel: i4b-L2-i4b_mph_status_ind: unit 0, cannot access S0 bus! Mar 6 09:22:33 idianet /kernel: i4b-L3-i4b_mdl_status_ind: STI_NOL1ACC: unit 0 no outgoing access to S0 Mar 6 09:22:33 idianet isdnd[64]: ERR set_channel_idle: controller [0], invalid channel [-1]! Mar 6 09:22:33 idianet isdnd[64]: ERR msg_disconnect_ind: set_channel_idle failed! Mar 6 09:22:49 idianet /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal Mar 6 09:22:49 idianet /kernel: i4b-L1-isic_recover: HSCX B: ISTA = 0x0 Mar 6 09:22:49 idianet /kernel: i4b-L1-isic_recover: ISAC: ISTA = 0x0 Mar 6 09:22:49 idianet /kernel: i4b-L1-isic_recover: HSCX B: IMASK = 0xff Mar 6 09:22:49 idianet /kernel: i4b-L1-isic_recover: HSCX A: IMASK = 0xf8 Mar 6 09:22:49 idianet /kernel: i4b-L1-isic_recover: ISAC: IMASK = 0x2a Mar 6 09:22:49 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:22:49 idianet /kernel: i4b-L1-ph_data_req: still in state F3! Mar 6 09:22:49 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:22:51 idianet /kernel: i4b-L3-T303_timeout: SETUP not answered, cr = 79 Mar 6 09:22:51 idianet /kernel: i4b-L3-next_l3state: FSM illegal state, state = ST_OW - Out Wait EST, event = EV_T303EXP - T303 timeout! Mar 6 09:22:51 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:22:51 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:22:51 idianet /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal Mar 6 09:22:51 idianet /kernel: i4b-L1-isic_recover: HSCX B: ISTA = 0x0 Mar 6 09:22:51 idianet /kernel: i4b-L1-isic_recover: ISAC: ISTA = 0x0 Mar 6 09:22:51 idianet /kernel: i4b-L1-isic_recover: HSCX B: IMASK = 0xff Mar 6 09:22:51 idianet /kernel: i4b-L1-isic_recover: HSCX A: IMASK = 0xf8 Mar 6 09:22:51 idianet /kernel: i4b-L1-isic_recover: ISAC: IMASK = 0x2a Mar 6 09:22:53 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:22:53 idianet /kernel: i4b-L1-ph_data_req: still in state F3! Mar 6 09:22:53 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:22:55 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:22:55 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:22:55 idianet /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal Mar 6 09:22:55 idianet /kernel: i4b-L1-isic_recover: HSCX B: ISTA = 0x0 Mar 6 09:22:55 idianet /kernel: i4b-L1-isic_recover: ISAC: ISTA = 0x0 Mar 6 09:22:55 idianet /kernel: i4b-L1-isic_recover: HSCX B: IMASK = 0xff Mar 6 09:22:55 idianet /kernel: i4b-L1-isic_recover: HSCX A: IMASK = 0xf8 Mar 6 09:22:55 idianet /kernel: i4b-L1-isic_recover: ISAC: IMASK = 0x2a Mar 6 09:22:57 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:22:57 idianet /kernel: i4b-L1-ph_data_req: still in state F3! Mar 6 09:22:57 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:22:59 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:22:59 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:22:59 idianet /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal Mar 6 09:22:59 idianet /kernel: i4b-L1-isic_recover: HSCX B: ISTA = 0x0 Mar 6 09:22:59 idianet /kernel: i4b-L1-isic_recover: ISAC: ISTA = 0x0 Mar 6 09:22:59 idianet /kernel: i4b-L1-isic_recover: HSCX B: IMASK = 0xff Mar 6 09:22:59 idianet /kernel: i4b-L1-isic_recover: HSCX A: IMASK = 0xf8 Mar 6 09:22:59 idianet /kernel: i4b-L1-isic_recover: ISAC: IMASK = 0x2a Mar 6 09:23:01 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:23:01 idianet /kernel: i4b-L1-ph_data_req: still in state F3! Mar 6 09:23:01 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:23:03 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:23:03 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:23:03 idianet /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal Mar 6 09:23:03 idianet /kernel: i4b-L1-isic_recover: HSCX B: ISTA = 0x0 Mar 6 09:23:03 idianet /kernel: i4b-L1-isic_recover: ISAC: ISTA = 0x0 Mar 6 09:23:03 idianet /kernel: i4b-L1-isic_recover: HSCX B: IMASK = 0xff Mar 6 09:23:03 idianet /kernel: i4b-L1-isic_recover: HSCX A: IMASK = 0xf8 Mar 6 09:23:03 idianet /kernel: i4b-L1-isic_recover: ISAC: IMASK = 0x2a Mar 6 09:23:03 idianet /kernel: i4b-L2-i4b_mph_status_ind: unit 0, cannot access S0 bus! Mar 6 09:23:03 idianet /kernel: i4b-L3-i4b_mdl_status_ind: STI_NOL1ACC: unit 0 no outgoing access to S0 Mar 6 09:23:03 idianet isdnd[64]: WRN msg_disconnect_ind: cdid not found Mar 6 09:23:03 idianet isdnd[64]: ERR set_channel_idle: controller [0], invalid channel [-1]! Mar 6 09:23:03 idianet isdnd[64]: ERR msg_disconnect_ind: set_channel_idle failed! Mar 6 09:23:19 idianet /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal Mar 6 09:23:19 idianet /kernel: i4b-L1-isic_recover: HSCX B: ISTA = 0x0 Mar 6 09:23:19 idianet /kernel: i4b-L1-isic_recover: ISAC: ISTA = 0x0 Mar 6 09:23:19 idianet /kernel: i4b-L1-isic_recover: HSCX B: IMASK = 0xff Mar 6 09:23:19 idianet /kernel: i4b-L1-isic_recover: HSCX A: IMASK = 0xf8 Mar 6 09:23:19 idianet /kernel: i4b-L1-isic_recover: ISAC: IMASK = 0x2a Mar 6 09:23:19 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:23:19 idianet /kernel: i4b-L1-ph_data_req: still in state F3! Mar 6 09:23:19 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:23:21 idianet /kernel: i4b-L3-T303_timeout: SETUP not answered, cr = 124 Mar 6 09:23:21 idianet /kernel: i4b-L3-next_l3state: FSM illegal state, state = ST_OW - Out Wait EST, event = EV_T303EXP - T303 timeout! Mar 6 09:23:21 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:23:21 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:23:21 idianet /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal Mar 6 09:23:21 idianet /kernel: i4b-L1-isic_recover: HSCX B: ISTA = 0x0 Mar 6 09:23:21 idianet /kernel: i4b-L1-isic_recover: ISAC: ISTA = 0x0 Mar 6 09:23:21 idianet /kernel: i4b-L1-isic_recover: HSCX B: IMASK = 0xff Mar 6 09:23:21 idianet /kernel: i4b-L1-isic_recover: HSCX A: IMASK = 0xf8 Mar 6 09:23:21 idianet /kernel: i4b-L1-isic_recover: ISAC: IMASK = 0x2a Mar 6 09:23:23 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:23:23 idianet /kernel: i4b-L1-ph_data_req: still in state F3! Mar 6 09:23:23 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:23:25 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:23:25 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:23:25 idianet /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal Mar 6 09:23:25 idianet /kernel: i4b-L1-isic_recover: HSCX B: ISTA = 0x0 Mar 6 09:23:25 idianet /kernel: i4b-L1-isic_recover: ISAC: ISTA = 0x0 Mar 6 09:23:25 idianet /kernel: i4b-L1-isic_recover: HSCX B: IMASK = 0xff Mar 6 09:23:25 idianet /kernel: i4b-L1-isic_recover: HSCX A: IMASK = 0xf8 Mar 6 09:23:25 idianet /kernel: i4b-L1-isic_recover: ISAC: IMASK = 0x2a Mar 6 09:23:27 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:23:27 idianet /kernel: i4b-L1-ph_data_req: still in state F3! Mar 6 09:23:27 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:23:29 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:23:29 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:23:29 idianet /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal Mar 6 09:23:29 idianet /kernel: i4b-L1-isic_recover: HSCX B: ISTA = 0x0 Mar 6 09:23:29 idianet /kernel: i4b-L1-isic_recover: ISAC: ISTA = 0x0 Mar 6 09:23:29 idianet /kernel: i4b-L1-isic_recover: HSCX B: IMASK = 0xff Mar 6 09:23:29 idianet /kernel: i4b-L1-isic_recover: HSCX A: IMASK = 0xf8 Mar 6 09:23:29 idianet /kernel: i4b-L1-isic_recover: ISAC: IMASK = 0x2a Mar 6 09:23:31 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:23:31 idianet /kernel: i4b-L1-ph_data_req: still in state F3! Mar 6 09:23:31 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:23:33 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 6 09:23:33 idianet /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal Mar 6 09:23:33 idianet /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal Mar 6 09:23:33 idianet /kernel: i4b-L1-isic_recover: HSCX B: ISTA = 0x0 Mar 6 09:23:33 idianet /kernel: i4b-L1-isic_recover: ISAC: ISTA = 0x0 Mar 6 09:23:33 idianet /kernel: i4b-L1-isic_recover: HSCX B: IMASK = 0xff Mar 6 09:23:33 idianet /kernel: i4b-L1-isic_recover: HSCX A: IMASK = 0xf8 Mar 6 09:23:33 idianet /kernel: i4b-L1-isic_recover: ISAC: IMASK = 0x2a Mar 6 09:23:33 idianet /kernel: i4b-L2-i4b_mph_status_ind: unit 0, cannot access S0 bus! Mar 6 09:23:33 idianet /kernel: i4b-L3-i4b_mdl_status_ind: STI_NOL1ACC: unit 0 no outgoing access to S0 Mar 6 09:23:33 idianet isdnd[64]: WRN msg_disconnect_ind: cdid not found Mar 6 09:23:33 idianet isdnd[64]: WRN msg_disconnect_ind: cdid not found Mar 6 09:23:33 idianet isdnd[64]: ERR set_channel_idle: controller [0], invalid channel [-1]! Mar 6 09:23:33 idianet isdnd[64]: ERR msg_disconnect_ind: set_channel_idle failed! Mar 6 09:42:17 idianet login: login_getclass: unknown class 'pgsql' Mar 6 09:42:32 idianet su: pgsql to root on /dev/ttyp0 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Mar 6 2:26:36 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from bw85zhb.bluewin.ch (bw85zhb.bluewin.ch [195.186.1.75]) by hub.freebsd.org (Postfix) with ESMTP id B6D7F37BCFE for ; Mon, 6 Mar 2000 02:26:33 -0800 (PST) (envelope-from finesse@bluewin.de) Received: from loch.sexy ([195.226.100.215]) by bw85zhb.bluewin.ch ( with ESMTP id AAA50AF; Mon, 6 Mar 2000 11:26:27 +0100 Received: from [192.168.1.5] (helo=blue.sexy ident=exim) by loch.sexy with esmtp (Exim 3.02 #1) id 12RuhL-000AYI-00; Mon, 06 Mar 2000 11:25:11 +0100 Received: from pascal by blue.sexy with local (Exim 3.13 #1) id 12RuhK-0003r6-00; Mon, 06 Mar 2000 11:25:10 +0100 From: "Pascal Gienger" Message-Id: <10003061125.ZM14810@blue.sexy> Date: Mon, 6 Mar 2000 11:25:10 +0100 In-Reply-To: "Abdelkrim WAHHABI" "" (Mar 6, 9:59am) References: <000001bf874b$6ebde960$0601a8c0@kosovo.idianet.net> X-Mailer: Z-Mail (3.2.3 08feb96 MediaMail) To: "Abdelkrim WAHHABI" Cc: freebsd-isdn@freebsd.org Subject: Re: Abdelkrims Problem Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mar 6, 9:59am, Abdelkrim WAHHABI wrote: > Subject: > i have some problem with isdn configuration > i use isdn under sppp > i submit you the file /var/log/messages > > ... [...] > Mar 6 09:19:49 idianet /kernel: isic0 at 0x268 irq 5 flags 0x7 on isa > Mar 6 09:19:49 idianet /kernel: isic0: USRobotics Sportster ISDN TA intern > Mar 6 09:19:49 idianet /kernel: isic0: ISAC 2085 Version A1/A2 or 2086/2186 > Version 1.1 (IOM-2) (Addr=0xc268) > Mar 6 09:19:49 idianet /kernel: isic0: HSCX 82525 or 21525 Version 2.1 > (AddrA=0x268, AddrB=0x4268) [...] > Mar 6 09:22:19 idianet /kernel: i4b-L1-timer3_expired: state = F4 Awaiting > Signal > Mar 6 09:22:19 idianet /kernel: i4b-L1-isic_recover: HSCX B: ISTA = 0x0 > Mar 6 09:22:19 idianet /kernel: i4b-L1-isic_recover: ISAC: ISTA = 0x0 > Mar 6 09:22:19 idianet /kernel: i4b-L1-isic_recover: HSCX B: IMASK = 0xff > Mar 6 09:22:19 idianet /kernel: i4b-L1-isic_recover: HSCX A: IMASK = 0xf8 > Mar 6 09:22:19 idianet /kernel: i4b-L1-isic_recover: ISAC: IMASK = 0x2a > Mar 6 09:22:19 idianet /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 > Mar 6 09:22:19 idianet /kernel: i4b-L1-ph_data_req: still in state F3! > Mar 6 09:22:21 idianet /kernel: i4b-L3-T303_timeout: SETUP not answered, cr > = 43 This looks like an interrupt problem. Are you sure IRQ 5 is ok? I don't think so :) Il parait que cela est un probleme avec l'irq choisi (5). Est-tu sur que tu as vraiment programme irq 5 sur ta carte USRobotics? Pascal -- Unix, Pascal Gienger, Steinstr. 21 /\ 12 .rtsnietS ,regneiG lacsaP ,xinU Networx 78467 Konstanz / \ znatsnoK 76487 xrowteN & WWW finesse@bluewin.de / \ ed.niweulb@essenif WWW & T: +49 7531 52709, F: 52739 / \ 93725 :F ,90725 1357 94+ :T To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Mar 6 2:28:11 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from peedub.muc.de (peedub.muc.de [193.149.49.109]) by hub.freebsd.org (Postfix) with ESMTP id 7C54737BD3B for ; Mon, 6 Mar 2000 02:28:08 -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 LAA13313; Mon, 6 Mar 2000 11:26:30 +0100 (CET) Message-Id: <200003061026.LAA13313@peedub.muc.de> X-Mailer: exmh version 2.1.0 09/18/1999 To: "Abdelkrim WAHHABI" Cc: freebsd-isdn@FreeBSD.org Reply-To: Gary Jennejohn In-reply-to: Your message of "Mon, 06 Mar 2000 09:59:51 +0100." <000001bf874b$6ebde960$0601a8c0@kosovo.idianet.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 06 Mar 2000 11:26:30 +0100 From: Gary Jennejohn Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Abdelkrim WAHHABI" writes: >i have some problem with isdn configuration >i use isdn under sppp >i submit you the file /var/log/messages > [snip] >Mar 6 09:19:49 idianet /kernel: isic0 at 0x268 irq 5 flags 0x7 on isa >Mar 6 09:19:49 idianet /kernel: isic0: USRobotics Sportster ISDN TA intern >Mar 6 09:19:49 idianet /kernel: isic0: ISAC 2085 Version A1/A2 or 2086/2186 >Version 1.1 (IOM-2) (Addr=0xc268) >Mar 6 09:19:49 idianet /kernel: isic0: HSCX 82525 or 21525 Version 2.1 >(AddrA=0x268, AddrB=0x4268) Are you *positive* that these settings (port 0x268 and irq 5) are correct ? From the log it looks like the card never delivers any interrupts to the kernel. --- Gary Jennejohn / garyj@muc.de garyj@fkr.cpqcorp.net gj@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Mar 6 2:28:16 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from peedub.muc.de (peedub.muc.de [193.149.49.109]) by hub.freebsd.org (Postfix) with ESMTP id 54C9137BD3B for ; Mon, 6 Mar 2000 02:28:13 -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 LAA13227; Mon, 6 Mar 2000 11:18:18 +0100 (CET) Message-Id: <200003061018.LAA13227@peedub.muc.de> X-Mailer: exmh version 2.1.0 09/18/1999 To: "Oded Edelman" Cc: freebsd-isdn@FreeBSD.org Subject: Re: Winbond W6692CF Reply-To: Gary Jennejohn In-reply-to: Your message of "Mon, 06 Mar 2000 09:39:12 +0200." <000801bf873f$11ccff40$1800a8c0@wdcgroup.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 06 Mar 2000 11:18:18 +0100 From: Gary Jennejohn Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Oded Edelman" writes: >Hi, > > I am looking for drivers for Windows 2000 for Winbond W6692CF Isdn = >card. > >Thanks for your help, > you won't find them here. This is a FreeBSD only list, no M$ products are supported here. --- Gary Jennejohn / garyj@muc.de garyj@fkr.cpqcorp.net gj@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Mar 6 6:31: 0 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from picalon.gun.de (picalon.gun.de [192.109.159.1]) by hub.freebsd.org (Postfix) with ESMTP id 8485C37BDB2 for ; Mon, 6 Mar 2000 06:30:28 -0800 (PST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by picalon.gun.de (8.9.3/8.9.3) id PAA06889; Mon, 6 Mar 2000 15:30:07 +0100 (MET) >Received: (from andreas@localhost) by klemm.gtn.com (8.9.3/8.9.3) id PAA13981; Mon, 6 Mar 2000 15:23:27 +0100 (CET) (envelope-from andreas) Date: Mon, 6 Mar 2000 15:23:26 +0100 From: Andreas Klemm To: Gary Jennejohn Cc: freebsd-isdn@FreeBSD.ORG Subject: calando - off topic (was Re: ijppp for isdn, ppp compression, ...) Message-ID: <20000306152326.A13360@titan.klemm.gtn.com> References: <20000305185548.A16881@saturn.kn-bremen.de> <200003052239.XAA11973@peedub.muc.de> Mime-Version: 1.0 X-Mailer: Mutt 1.0.1i In-Reply-To: <200003052239.XAA11973@peedub.muc.de>; from garyj@peedub.muc.de on Sun, Mar 05, 2000 at 11:39:54PM +0100 X-Operating-System: FreeBSD 4.0-CURRENT SMP X-Disclaimer: A free society is one where it is safe to be unpopular Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Mar 05, 2000 at 11:39:54PM +0100, Gary Jennejohn wrote: > Besides, real flatrate connections are becoming more prevalent here in > Germany, and at reasonable (for Germany) prices. www.callando.de is > offering a flatrate at 89 DM/mo iwth a 3 GB/mo limit. Not too bad. > The other providers will have to follow suit. Hmm, what about reliability ? Und ab in den Schlund with the packets... ;-) root@titan{582} $ traceroute www.callando.de traceroute to www.callando.de (195.20.225.21), 30 hops max, 40 byte packets 1 cisco (172.16.2.2) 3.145 ms 2.762 ms 2.584 ms 2 gtn-gw2.dpn.de (194.231.123.161) 37.964 ms 34.320 ms 30.905 ms 3 cisco13.ne.dpn.net (194.77.0.4) 31.871 ms 31.439 ms 31.555 ms 4 cisco4.f.dpn.net (194.231.40.126) 39.374 ms 38.816 ms 38.420 ms 5 de-cix.frankfurt.nacamar.net (194.31.232.31) 92.348 ms 38.631 ms 39.168 ms 6 atm1-0.ffm16.nacamar.net (194.112.25.245) 45.376 ms 39.683 ms 39.261 ms 7 hssi3-0.ka1.nacamar.net (194.162.254.110) 53.842 ms 42.655 ms 45.922 ms 8 * * * 9 eth0.gw7.ka.schlund.net (195.20.224.7) 74.235 ms 268.239 ms 99.803 ms 10 * * * 11 * * * andreas@freefall 51% ping www.callando.de PING www.callando.de (195.20.225.21): 56 data bytes ^C --- www.callando.de ping statistics --- 9 packets transmitted, 0 packets received, 100% packet loss andreas@freefall 52% traceroute www.callando.de traceroute to www.callando.de (195.20.225.21), 30 hops max, 40 byte packets 1 gate-free.cdrom.com (204.216.27.17) 23.938 ms 22.372 ms 40.462 ms 2 R-CRL-SFO-01-EX.US.CRL.NET (165.113.118.1) 726.009 ms 624.708 ms 672.742 ms 3 FA-0-0-GW2.F0.US.CRL.NET (165.113.55.2) 693.106 ms 692.803 ms 754.638 ms 4 209.155.255.2 (209.155.255.2) 704.091 ms 723.527 ms 793.740 ms 5 core2.NewYork1.Level3.net (209.244.2.31) 841.787 ms 790.956 ms 703.223 ms 6 209.244.3.197 (209.244.3.197) 887.288 ms 865.038 ms 866.676 ms 7 * core1.Frankfurt1.Level3.net (212.113.2.3) 889.291 ms 898.028 ms 8 hsipaccess1.Frankfurt1.Level3.net (212.162.32.3) 905.739 ms * 973.339 ms 9 212.162.47.10 (212.162.47.10) 935.359 ms 917.144 ms 838.359 ms 10 212.227.112.29 (212.227.112.29) 835.460 ms 864.804 ms * 11 eth0.gw7.ka.schlund.net (195.20.224.7) 745.843 ms 954.755 ms 871.406 ms 12 * * * 13 * * -- Andreas Klemm http://www.FreeBSD.ORG/~andreas http://www.freebsd.org/~fsmp/SMP/SMP.html powered by Symmetric MultiProcessor FreeBSD Get new songs from our band: http://www.freebsd.org/~andreas/64bits/index.html To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Mar 6 11:33:11 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by hub.freebsd.org (Postfix) with ESMTP id CC98A37B8CD for ; Mon, 6 Mar 2000 11:33:03 -0800 (PST) (envelope-from mw@theatre.sax.de) Received: (from uucp@localhost) by sax.sax.de (8.9.3/8.9.3) with UUCP id UAA06579; Mon, 6 Mar 2000 20:33:02 +0100 (CET) Received: (from mw@localhost) by theatre.lan (8.9.3/8.9.3) id FAA26540; Mon, 6 Mar 2000 05:20:20 +0100 (CET) (envelope-from mw) Date: Mon, 6 Mar 2000 05:20:20 +0100 From: Martin Welk To: "Dirk.Nerling" Cc: "FreeBSD ISDN (MList) (E-Mail)" Subject: Re: I4B and two provider ??? Message-ID: <20000306052019.C25915@theatre.lan> References: <6CC81B07CB44D311A1D20001FA7E9956115074@exchange.pdv.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <6CC81B07CB44D311A1D20001FA7E9956115074@exchange.pdv.de>; from Dirk.Nerling@pdv.de on Fri, Mar 03, 2000 at 09:57:02PM +0100 Organization: Private UUCP/Usenet site. X-Operating-System: FreeBSD http://www.freebsd.org/ Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Mar 03, 2000 at 09:57:02PM +0100, Dirk.Nerling wrote: > I have to connect to my firm (RFC1918) but now I need a second real > provider. I'd like to use MSN - does anybody of you have an configurtaion or > idea how I could switch between my firm and a real provider? I thought I run > squid and some sort of a firewall like TIS to use everytime the IP of my > router: 192.168.15.10. but I have to choose different configurations and > (default) routes. You can... - reconfigure one isp device by script and add some cron job doing this and that for you :-) - add as much isp devices as you need, configure each one as it were single, set up natd for each, route based on the interface and switch by changing the default route (this is how I do it here) (look for the -interface command line switch in the route man page) You need FreeBSD >= 3.0 for running multiple natd processes. Regards, Martin -- ,,Oh, there's a lot of opportunities, if you're knowing to take them, you know, there's a lot of opportunities, if there aren't you can make them, make or break them!'' (Tennant/Lowe) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Mar 6 13:48:17 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from bellatrix.worldonline.fr (bellatrix.worldonline.fr [212.83.128.15]) by hub.freebsd.org (Postfix) with ESMTP id 7D6C337BBC3 for ; Mon, 6 Mar 2000 13:48:12 -0800 (PST) (envelope-from awb@worldonline.fr) Received: from kosovo (ppp-116.dialup-134.worldonline.fr [212.83.134.116]) by bellatrix.worldonline.fr (Mail pour Wolf) with SMTP id WAA10475 for ; Mon, 6 Mar 2000 22:48:08 +0100 Message-ID: <004001bf87b5$b078cb80$0601a8c0@kosovo.idianet.net> From: "Abdelkrim WAHHABI" To: Subject: config isp0 Date: Mon, 6 Mar 2000 22:48:19 +0100 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 4.72.3110.37 X-Mimeole: Produced By Microsoft MimeOLE V4.72.3110.37 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hello all how can i say the number of major and minor of isp0 ? thanks To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Mar 6 18:35:43 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from blaubaer.kn-bremen.de (blaubaer.kn-bremen.de [195.37.179.254]) by hub.freebsd.org (Postfix) with ESMTP id 23E1E37BE4C for ; Mon, 6 Mar 2000 18:35:39 -0800 (PST) (envelope-from nox@saturn.kn-bremen.de) Received: from saturn.kn-bremen.de (uucp@localhost) by blaubaer.kn-bremen.de (8.9.1/8.9.1) with UUCP id DAA13049; Tue, 7 Mar 2000 03:29:37 +0100 Received: (from nox@localhost) by saturn.kn-bremen.de (8.9.3/8.8.5) id CAA73748; Tue, 7 Mar 2000 02:24:32 +0100 (CET) From: Juergen Lock Date: Tue, 7 Mar 2000 02:24:31 +0100 To: Gary Jennejohn Cc: freebsd-isdn@freebsd.org Subject: Re: ijppp for isdn, ppp compression, and netgraph (also: load balancing) Message-ID: <20000307022431.D66328@saturn.kn-bremen.de> References: <20000305185548.A16881@saturn.kn-bremen.de> <200003052239.XAA11973@peedub.muc.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.7i In-Reply-To: <200003052239.XAA11973@peedub.muc.de> Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Mar 05, 2000 at 11:39:54PM +0100, Gary Jennejohn wrote: > Juergen Lock writes: > > Well yes someone would have to do the work and it probably won't > >exactly make him rich either, thats true. :) (but it could make > >bsd more popular if it gets this before linux...) > > > > So, Juergen, when can we expect to see patches from you ? :) > Heh i probably deserved something like that for that posting... :) but i don't think i'm the right one for that, sorry. > _I_ certainly don't plan to invest any of my time in this endeavor. > > Besides, real flatrate connections are becoming more prevalent here in > Germany, and at reasonable err... > (for Germany) prices. well :/ > www.callando.de is > offering a flatrate at 89 DM/mo iwth a 3 GB/mo limit. Not too bad. Still elsewhere you'd get a nice DSL for _much_ less. (and what happens when your box or even some script kiddie anywhere on the net causes more than those 3 G traffic? again insane bills? one important point of a flat rate (especially for home users) is that you'll _never_ get charged more than what you expected.) > The other providers will have to follow suit. the problem seems to be less the isps than the Telekom whose only effective monoply left is the `last mile', and so they still charge everyone (including the isps for their leased lines) an Arm and a Leg for that. (and don't get me wrong, i too hope this 9600bps-over-the-d-channel thing will be obsolete rather sooner than later, but at least it would for the first time allow average germans to take advantage of the net* without the current obscene phonebills.) *: i.e. being able to do more than just occasionally looking at flashy websites... Regards, -- Juergen Lock (remove dot foo from address to reply) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Tue Mar 7 0:58:26 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from relaisint.laposte.fr (relaisint.laposte.fr [212.234.213.242]) by hub.freebsd.org (Postfix) with ESMTP id A8B6437B792 for ; Tue, 7 Mar 2000 00:58:09 -0800 (PST) (envelope-from eric.feillant@laposte.fr) Received: from mail.federation.log.intra.laposte.fr ([10.16.0.254]) by relaisint.laposte.fr (Netscape Messaging Server 4.05) with ESMTP id FR1QBM00.GVP for ; Tue, 7 Mar 2000 09:57:22 +0000 Received: from mail.log.intra.laposte.fr by mail.federation.log.intra.laposte.fr with ESMTP for freebsd-isdn@FreeBSD.ORG; Tue, 7 Mar 2000 09:56:39 +0100 Received: from laposte.fr ([150.0.205.32]) by mail.log.intra.laposte.fr (Netscape Messaging Server 4.03) with ESMTP id FR1NH100.B0E; Tue, 7 Mar 2000 09:55:49 +0100 Message-Id: <38C4C26B.58AB166F@laposte.fr> Date: Tue, 07 Mar 2000 09:48:43 +0100 From: "Eric FEILLANT" Organization: LA POSTE - DISIT - SGT X-Mailer: Mozilla 4.51 [fr] (WinNT; I) X-Accept-Language: fr To: Abdelkrim WAHHABI Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: config isp0 References: <004001bf87b5$b078cb80$0601a8c0@kosovo.idianet.net> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----------7NhE3WuB9OnU6N9D2A0R5Y7" Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------------7NhE3WuB9OnU6N9D2A0R5Y7 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: Quoted-Printable Abdelkrim WAHHABI a =E9crit : > hello all > > how can i say the number of major and minor of isp0 ? > Why do u want to create these files manually ? The kernel creates i4b devices for u. But if u really need this =3D> crw------- 1 root wheel 60, 0 Feb 8 14:07 /dev/i4b crw------- 1 root wheel 55, 0 Feb 8 14:07 /dev/i4bctl crw------- 1 root wheel 57, 0 Feb 28 12:44 /dev/i4brbch0 crw------- 1 root wheel 57, 1 Feb 8 14:07 /dev/i4brbch1 crw------- 1 root wheel 57, 2 Feb 8 14:07 /dev/i4brbch2 crw------- 1 root wheel 57, 3 Feb 8 14:07 /dev/i4brbch3 crw------- 1 root wheel 56, 0 Feb 8 14:07 /dev/i4btel0 crw------- 1 root wheel 56, 1 Feb 8 14:07 /dev/i4btel1 crw------- 1 root wheel 56, 2 Feb 8 14:07 /dev/i4btel2 crw------- 1 root wheel 56, 3 Feb 8 14:07 /dev/i4btel3 crw------- 1 root wheel 56, 64 Feb 8 14:07 /dev/i4bteld0 crw------- 1 root wheel 56, 65 Feb 8 14:07 /dev/i4bteld1 crw------- 1 root wheel 56, 66 Feb 8 14:07 /dev/i4bteld2 crw------- 1 root wheel 56, 67 Feb 8 14:07 /dev/i4bteld3 crw------- 1 root wheel 59, 0 Feb 8 14:07 /dev/i4btrc0 crw------- 1 root wheel 59, 1 Feb 8 14:07 /dev/i4btrc1 crw------- 1 root wheel 59, 2 Feb 8 14:07 /dev/i4btrc2 crw------- 1 root wheel 59, 3 Feb 8 14:07 /dev/i4btrc3 Eric. > > thanks > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-isdn" in the body of the message ------------7NhE3WuB9OnU6N9D2A0R5Y7 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: Quoted-Printable Post-scriptum La Poste=0D =0D Ce message est confidentiel. Sous r=E9serve de tout accord conclu par=0D =E9crit entre vous et La Poste, son contenu ne repr=E9sente en aucun cas un= =0D engagement de la part de La Poste. Toute publication, utilisation ou=0D diffusion, m=EAme partielle, doit =EAtre autoris=E9e pr=E9alablement. Si vo= us=0D n'=EAtes pas destinataire de ce message, merci d'en avertir imm=E9diatement= =0D l'exp=E9diteur.=0D =0D =0D ------------7NhE3WuB9OnU6N9D2A0R5Y7-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Tue Mar 7 4: 0:39 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from peedub.muc.de (peedub.muc.de [193.149.49.109]) by hub.freebsd.org (Postfix) with ESMTP id 6130A37B9C4 for ; Tue, 7 Mar 2000 04:00:36 -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 MAA15931; Tue, 7 Mar 2000 12:59:49 +0100 (CET) Message-Id: <200003071159.MAA15931@peedub.muc.de> X-Mailer: exmh version 2.1.0 09/18/1999 To: "Abdelkrim WAHHABI" Cc: freebsd-isdn@freebsd.org Subject: Re: config isp0 Reply-To: Gary Jennejohn In-reply-to: Your message of "Mon, 06 Mar 2000 22:48:19 +0100." <004001bf87b5$b078cb80$0601a8c0@kosovo.idianet.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 07 Mar 2000 12:59:49 +0100 From: Gary Jennejohn Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Abdelkrim WAHHABI" writes: >hello all > >how can i say the number of major and minor of isp0 ? > It's a network interface, it doesn't have major and minor numbers. man ifconfig man sppp man i4bisppp --- Gary Jennejohn / garyj@muc.de garyj@fkr.cpqcorp.net gj@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Tue Mar 7 4: 0:47 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from peedub.muc.de (peedub.muc.de [193.149.49.109]) by hub.freebsd.org (Postfix) with ESMTP id A8A2237B9C4 for ; Tue, 7 Mar 2000 04:00:42 -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 MAA15925; Tue, 7 Mar 2000 12:59:36 +0100 (CET) Message-Id: <200003071159.MAA15925@peedub.muc.de> X-Mailer: exmh version 2.1.0 09/18/1999 To: Andreas Klemm Cc: Gary Jennejohn , freebsd-isdn@freebsd.org Subject: Re: calando - off topic (was Re: ijppp for isdn, ppp compression, ...) Reply-To: Gary Jennejohn In-reply-to: Your message of "Mon, 06 Mar 2000 15:23:26 +0100." <20000306152326.A13360@titan.klemm.gtn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 07 Mar 2000 12:59:36 +0100 From: Gary Jennejohn Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Andreas Klemm writes: >On Sun, Mar 05, 2000 at 11:39:54PM +0100, Gary Jennejohn wrote: >> Besides, real flatrate connections are becoming more prevalent here in >> Germany, and at reasonable (for Germany) prices. www.callando.de is >> offering a flatrate at 89 DM/mo iwth a 3 GB/mo limit. Not too bad. >> The other providers will have to follow suit. > >Hmm, what about reliability ? > >Und ab in den Schlund with the packets... ;-) > [nasty traceroute results snipped] well, I wasn't recommending callando. It was merely an example that the German market is finally opening up re flat rates. I expect things to get better as the year progresses. However, I doubt that the market in Germany will ever be able to compete with prices in the US until the Telekom loses its strangle hold on the last mile. A good site to look at is http://www.onlinekosten.de/flatrate/. --- Gary Jennejohn / garyj@muc.de garyj@fkr.cpqcorp.net gj@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Tue Mar 7 10:36: 9 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from bubba.whistle.com (bubba.whistle.com [207.76.205.7]) by hub.freebsd.org (Postfix) with ESMTP id A3D4137BD5D; Tue, 7 Mar 2000 10:36:03 -0800 (PST) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.3/8.9.2) id KAA41887; Tue, 7 Mar 2000 10:34:41 -0800 (PST) From: Archie Cobbs Message-Id: <200003071834.KAA41887@bubba.whistle.com> Subject: Re: ijppp for isdn, ppp compression, and netgraph (also: load balancing) In-Reply-To: <20000305084943.8649A36AB@hcswork.hcs.de> from Hellmuth Michaelis at "Mar 5, 2000 09:49:43 am" To: hm@hcs.de Date: Tue, 7 Mar 2000 10:34:40 -0800 (PST) Cc: julian@elischer.org (Julian Elischer), nox@jelal.kn-bremen.de, kuku@gilberto.physik.RWTH-Aachen.DE, freebsd-isdn@FreeBSD.ORG, freebsd-hackers@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-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hellmuth Michaelis writes: > > to add a negraph interface to the B channels should be quite easy. > > If you need help I can prbably almost do most of it.. > > Its already in the development sources (Archie had a look at it already) > and it works with mppd. It was really quite easy, although if Archies > daemonnews article had been available at that time i wrote it, it would > have been even easier :-) > > > when this is done the netgraph PPP nodes (which can support > > these compression types will be usable. > > In the mppd i worked with (looking ... mpd3.0b1/mpd3.0b2) deflate was not > present, predictor was not usable, bsd was not present. There were just > hooks for M$ and stac (which you can not release obviously). > > Currently i'm using ppp instead of mppd mostly just because it supports > deflate compression. I had a look at both mppd and ppp to see how the > mentioned free stac compression would be integrateable and found them > both similar, given they both come from iijppp. It looks like if it were > a good idea if Brian and Archie would merge both to get the best features > from each one into a common product ;-) Here is my list of things that 'should be done' at some point: 1. Implement the various PPP compression types as netgraph nodes, starting with Deflate, then maybe predictor-1, STAC (if we can do it legally), and MPPC (same thing). Once these exist, then mpd 'adapters' will have to be written for each one -- these are easy, they just decode the config-req's. I already have code for MPPC/MPPE, minus the proprietary STAC code and the patented RC4 algorithm, and am going to submit it after 4.0-REL as soon as somebody submits an RC4 implementation to /sys/crypto in the international repository. Mpd-3.x already has support for MPPC/MPPE. This is available on our ftp site.. ftp://ftp.whistle.com/pub/archie/netgraph/mppc.tgz 2. We should come up with a 'standard' netgraph control message API for an ISDN basic rate interface, and have i4b implement this interface. Then mpd/ppp/etc can "know" this interface and therefore work automatically with any ISDN BRI device. Here is the interface that we use at Whistle: ftp://ftp.whistle.com/pub/archie/netgraph/ng_tn.h (note: the switch types are #defined in another file but include all of the usual suspects: ETSI, NI-1, AT&T, DMS100, etc.) -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Tue Mar 7 10:38: 6 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from bubba.whistle.com (bubba.whistle.com [207.76.205.7]) by hub.freebsd.org (Postfix) with ESMTP id C7A3C37BFFB; Tue, 7 Mar 2000 10:38:00 -0800 (PST) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.3/8.9.2) id KAA41919; Tue, 7 Mar 2000 10:36:42 -0800 (PST) From: Archie Cobbs Message-Id: <200003071836.KAA41919@bubba.whistle.com> Subject: Re: ijppp for isdn, ppp compression, and netgraph (also: load balancing) In-Reply-To: <20000305190214.B16881@saturn.kn-bremen.de> from Juergen Lock at "Mar 5, 2000 07:02:15 pm" To: nox@jelal.kn-bremen.de (Juergen Lock) Date: Tue, 7 Mar 2000 10:36:42 -0800 (PST) Cc: julian@elischer.org (Julian Elischer), hm@hcs.de, kuku@gilberto.physik.RWTH-Aachen.DE, freebsd-isdn@FreeBSD.ORG, freebsd-hackers@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-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Juergen Lock writes: > > when this is done the netgraph PPP nodes (which can support > > these compression types will be usable. > > They could, but they don't yet, right? :) > > Maybe it still should be added to ijppp first cause debugging user > processes is easier than the kernel... and at the usual isdn bri > speeds a user process should still be pretty fast enough. That makes perfect sense.. just be sure to write the code so that it's easily ported to the kernel.. the main issues being mbuf's.. for that it's probably eassiest to just punt and copy each packet into a contiguous buffer. -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Tue Mar 7 14:22:33 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from peedub.muc.de (peedub.muc.de [193.149.49.109]) by hub.freebsd.org (Postfix) with ESMTP id A569C37C12C for ; Tue, 7 Mar 2000 14:22:27 -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 XAA17816 for ; Tue, 7 Mar 2000 23:22:09 +0100 (CET) Message-Id: <200003072222.XAA17816@peedub.muc.de> X-Mailer: exmh version 2.1.0 09/18/1999 To: freebsd-isdn@freebsd.org Subject: sPPP and PPP keepalives From: Gary Jennejohn Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 07 Mar 2000 23:22:09 +0100 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This should be of interest for those of you whose ISP uses PPP keepalives to decide when to break a connection. Use of PPP keepalives usually circumvents the short hold timer in i4b. A rather old patch exists in contrib/lcp-patch2.tar.uu in various releases. This patch is against 0.70 and difficult to apply to any more recent releases. The appended patch is against the 0.90 release and can be applied with no problems. It also updates the patch such that it should be usable as a standard part of i4b. What I request is that those who need this patch test it and report back to the list whether it works OK. This will help Hwllmuth to decide whether it can be made a standard part of i4b. Note that I tested this in FreeBSD-current OK, but my ISP does not use keepalives, so I could only prove to my satisfaction that it won't break the normal short hold timeouts. Just uudecode and apply the patch to a clean 0.90 release tree. ==================== PPP keepalive patch ======================= begin 644 sppptimeoutdiff.gz M'XL("*#MO#@``T1I9F9S`.U:;7.;2!+^3'Y%)UO913*2`;TBQ]ZR+271G2/G M+/MNJY(4A6$D44%`8+"CS>6_7\\,("1AQ;&=7'*WJKQ(P_2\=#_]=#/3U6H5 MZKM.Y%Z1:-=M7IIN'(9AW:X'D3N5QA:%OR4>Z$W06CU=ZS5UT`S#>%2KU4K% MI'\1!UY9$8`&JM%KM7NM%NBJJCZJKG[8;_9`T=46\`8VI&AH`WZO/0*(J45= M&ZX"UY%P$CZ'R1J):<\L?TH<.:918E-@3Z`:APJX/@6?7(MNE;V;1O')-*`N M/@A\TP[FH4XQ0];=LV)JQ@0WO@_%IHC85]@T'AR?COI[9>LITT#;:"L=55^" MIFUTE([6S1;\Z5%1[VB^B,J_+G\'$VJ_809X5X]MTYW@-OAL.VB)VL-]JC@@ M5*7SE\,QQ+,@\="T!)(83>SZ,44E03`!K@;+INA&)D,'T`!=UWD=T'#-#^5.XM.SW0&>$]P:TW81$Q+=Q$)I'/Q_:L:$IB*N9( M-U1/MSQ#TKBV%KR?'3BD.`BZ)G%B"'Q)H0*E<.+^C!*1T)(L;T#]&:P[1.7WC2;H;?@(YY3/ MG"L>4CTX()J+SMP8(D25ZZ.E8K`MST.03J)@SBWX8'==[36Z-\<;0U>,SI(X\*>F:B7! MAL.5X<3D;F!>69');"PSY9@.0>)`MK>=]0"1PASM2)/03+W5G+@?[R&]9>Z= M3#J--TQ^2N@2X64BO[@3&`V;1\,Q(^T#4+&-?$3S^H5A-CU%R!9BP;?`(N(? MK3E^8;[N#PZ/S\WAJ(]U&R-GFVL4D`F3;J1V(1*K"'Y092))L*R9PU#_[I\G; M>[PQXYI-BRT'-=-D@_6_Q.#\OF!(UN:0B95X='5`)KX>F]:&D#Y_0U(ZXD'! M)QZP'8E@E$<_[A^\WT-.O%N>;1AJ6S$T/&XQ$>IU(]C?A_[P#'%Z?/IJ M.'I188\_L,Y1CZ:PQJ"GB4HTIF`7$=L#"/[+\]/%; MG\EZ@3^MI+-R*L(9Y:I-(X'6-VR9*$2C``-"]*X^,OO#,?8>#=`SSP;_N!B, MSRM\C[;C.DK*J$W%:*B9SWV5MC8=QZG\[VJK%&M:2S'T/+>7I,_\7^+%)-WH MXWML-,LBE6+6N8\]%GQILFO*_?HQ*F06;96HQ^_MV]'N3CPXOQ`!.;YA$\>P;="OP;>!-K,4>G M9Z\.3W`>CNL.!IZNOD:EW]`D6_CW+Y.4>TV[@^\3C25?%TCGGGKX"MX1_(9* MN`-GWVA8KMG[T]#-+)0?+'&L=S'P&=J2PW\X17Z)QW\`198BU.C@*Z[:7$(T M2^`%HXC7BN'XW#Q^.3C^>X^?Z+&7L&`"A:.@]^EYWA;N/H!LB>PGBHB3-[8Y M(8GY>KGDDD($ATB?V"+R,R^'4/1_?,OG9Z(/$!F_D$]H*F9AFJKK2S0^@,Y* MR?56.BN5_(%T5@8[A%R;':VT"[B34DE91A\>G%Z675EQ69'X54 MT:L4F/U9+0MEQ(J\Q2P](\F#`%]CMCP!,-@';6]M!_Q%G5\.X%-FQ?'A\\%> MZOMWXIDER8!%@5/+M>52R)990W!\55:=;TFDLDLV%&;V@P*KL;/3),RQ=M<= MK,9=MJ#U3=UM!]\C-(N)TL.S%9"ZOB.GYVQ;(3#LGPSV4N_'-UA-;30+WO\7 M55(1L*;1`3`A@0Z(Q$!&T0PR4A/EC^8JFV M:Y?.W.R>!_6Y?,&("6K!B45<60^$V9M$Z>DA!CM9:!]JV]\ITC>);QO0OI0# M=!JHNXY1?/OZ/KJ[(5'X.717CL,V8]1.,0>]$Z%"Y@U;V?)&3^%ZWONZPZ`U MJKFRHA6Z06ML\"=C"==/4.A.`7/]\.I+K/EP.WFXF/^]B//+O'FK@-]EMX!& M,=W__X;GMJCXD\!S:V#_:>!9Y9?D[%Z/_Y.NL_@]OS.?)>+.W`!=[;747M,H MWIEO'V+E"EWK:VMQ2LJ6KBJX72[9X0UZRQ7P"_PLCUV=WUUXLXT1H.GN& M,U3=B6^Q$ZA"/45$/O!:JT<@KD732VAV%:RP4H(KKBP^W@31$O?>TA!#+]E_ M&G/[9T/R1I-]YX47&./B>AB:O#FU/8:^Y;/YPDKHK!Y&`0TJHF@HG^4M%4_Y M0YP(Q$\V^/[;)T_KU?CM$WYB5*JAAJ;HC<)%M-[0%;U9(!@0'S[ZVHIG;EQ8 MEE+L?GAQ_G)T^&IP,A@IL"'`E5#LSEHGGC6--P?GS95*?HN[JIA,:9AUO'YY MB-#N#P[[XFI:$C?T^]POY='%R4D%7;,HF9>QB-OBM,)K>W=AY)T5_>=>L[Q= M85,_X^4POW-T0`_2XA@`3DQ9Q5B&>'=B\J+$V;*6\11!!SIH[5ZCT=.Z&TZ2 MBZS5,>IZ3]U2QV@T%<,HU)4TBW4E4F+R?`W8?H,@M%$YW$+(G>PWK]<221I+ MMNP@8<4V:9J8F(S0@,G&Y,,>9!\NBV2)FOB0\.HN/YE?EHE%13D4B\@\H*1, M;NE\L&')]0>Y8Q*4AS#'3/9ECT4&T71-?L-LV4ZB"`?S%JP:3"P2;2UQUGLS M[/]A'I]>C,[?<3E!A7/+GK&[V6Q'G$%8`)NXSKJ$FU?3B0[3).*EG;A;W":V MXB";R(B3RRBO=$U\@8X&@J+7;+`ZHAO0(<0V$:)MHXFP@XA7%>+BSIX?@]9H-.KBH;#A!!>#>@DN%ZR.<&J&I; Tue, 7 Mar 2000 23:10:36 -0800 (PST) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: from campino.informatik.rwth-aachen.de (campino.Informatik.RWTH-Aachen.DE [137.226.116.240]) by nets5.rz.rwth-aachen.de (8.9.1a/8.9.1/10) with ESMTP id IAA05047; Wed, 8 Mar 2000 08:10:34 +0100 (MET) Received: from gil.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by campino.informatik.rwth-aachen.de (8.9.1a/8.9.1/3) with ESMTP id IAA15787; Wed, 8 Mar 2000 08:11:21 +0100 (MET) Received: (from kuku@localhost) by gil.physik.rwth-aachen.de (8.9.3/8.6.9) id IAA89019; Wed, 8 Mar 2000 08:10:36 +0100 (CET) Date: Wed, 8 Mar 2000 08:10:36 +0100 From: Christoph Kukulies To: Gary Jennejohn Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: sPPP and PPP keepalives Message-ID: <20000308081036.A88994@gil.physik.rwth-aachen.de> References: <200003072222.XAA17816@peedub.muc.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200003072222.XAA17816@peedub.muc.de>; from garyj@muc.de on Tue, Mar 07, 2000 at 11:22:09PM +0100 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Mar 07, 2000 at 11:22:09PM +0100, Gary Jennejohn wrote: > > Just uudecode and apply the patch to a clean 0.90 release tree. The patch was a bit strange to apply (maybe it's a different structure in 4.0-current). The diffs seemed top refer files in ./sppp/ that were in /usr/src/sys/net, like: /usr/src/sys/i4b> patch -p -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Tue Mar 7 23:13:25 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from nets5.rz.rwth-aachen.de (nets5.rz.RWTH-Aachen.DE [137.226.144.13]) by hub.freebsd.org (Postfix) with ESMTP id 8978837B59E for ; Tue, 7 Mar 2000 23:13:22 -0800 (PST) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: from campino.informatik.rwth-aachen.de (campino.Informatik.RWTH-Aachen.DE [137.226.116.240]) by nets5.rz.rwth-aachen.de (8.9.1a/8.9.1/10) with ESMTP id IAA05303; Wed, 8 Mar 2000 08:13:20 +0100 (MET) Received: from gil.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by campino.informatik.rwth-aachen.de (8.9.1a/8.9.1/3) with ESMTP id IAA15802; Wed, 8 Mar 2000 08:14:07 +0100 (MET) Received: (from kuku@localhost) by gil.physik.rwth-aachen.de (8.9.3/8.6.9) id IAA89033; Wed, 8 Mar 2000 08:13:22 +0100 (CET) Date: Wed, 8 Mar 2000 08:13:22 +0100 From: Christoph Kukulies To: Gary Jennejohn Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: sPPP and PPP keepalives Message-ID: <20000308081322.B88994@gil.physik.rwth-aachen.de> References: <200003072222.XAA17816@peedub.muc.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200003072222.XAA17816@peedub.muc.de>; from garyj@muc.de on Tue, Mar 07, 2000 at 11:22:09PM +0100 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Mar 07, 2000 at 11:22:09PM +0100, Gary Jennejohn wrote: > > Just uudecode and apply the patch to a clean 0.90 release tree. How current must my -current be? /usr/src/sbin/spppcontrol> make cc -O -pipe -c /usr/src/sbin/spppcontrol/spppcontrol.c /usr/src/sbin/spppcontrol/spppcontrol.c: In function `print_vals': /usr/src/sbin/spppcontrol/spppcontrol.c:206: structure has no member named `pp_last_sent' /usr/src/sbin/spppcontrol/spppcontrol.c:207: structure has no member named `pp_last_recv' *** Error code 1 Stop in /usr/src/sbin/spppcontrol. -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Tue Mar 7 23:19: 1 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from nets5.rz.rwth-aachen.de (nets5.rz.RWTH-Aachen.DE [137.226.144.13]) by hub.freebsd.org (Postfix) with ESMTP id EF5E237B6DD for ; Tue, 7 Mar 2000 23:18:54 -0800 (PST) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: from campino.informatik.rwth-aachen.de (campino.Informatik.RWTH-Aachen.DE [137.226.116.240]) by nets5.rz.rwth-aachen.de (8.9.1a/8.9.1/10) with ESMTP id IAA05922; Wed, 8 Mar 2000 08:18:53 +0100 (MET) Received: from gil.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by campino.informatik.rwth-aachen.de (8.9.1a/8.9.1/3) with ESMTP id IAA15824; Wed, 8 Mar 2000 08:19:40 +0100 (MET) Received: (from kuku@localhost) by gil.physik.rwth-aachen.de (8.9.3/8.6.9) id IAA89057; Wed, 8 Mar 2000 08:18:54 +0100 (CET) Date: Wed, 8 Mar 2000 08:18:54 +0100 From: Christoph Kukulies To: Gary Jennejohn Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: sPPP and PPP keepalives Message-ID: <20000308081854.C88994@gil.physik.rwth-aachen.de> References: <200003072222.XAA17816@peedub.muc.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200003072222.XAA17816@peedub.muc.de>; from garyj@muc.de on Tue, Mar 07, 2000 at 11:22:09PM +0100 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Mar 07, 2000 at 11:22:09PM +0100, Gary Jennejohn wrote: > This should be of interest for those of you whose ISP uses PPP keepalives > > Just uudecode and apply the patch to a clean 0.90 release tree. > > ==================== PPP keepalive patch ======================= > begin 644 sppptimeoutdiff.gz Patch applied and compiled fine to 4.0-current (10 days old) kernel. -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Mar 8 3: 7:49 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from hcshh.hcs.de (hcshh.hcs.de [194.123.40.1]) by hub.freebsd.org (Postfix) with SMTP id EC89437B590; Wed, 8 Mar 2000 03:07:12 -0800 (PST) (envelope-from hm@hcs.de) Received: from hcswork.hcs.de([192.76.124.5]) (3145 bytes) by hcshh.hcs.de via sendmail with P:smtp/R:inet_hosts/T:smtp (sender: ) id for ; Wed, 8 Mar 2000 12:06:58 +0100 (CET) (Smail-3.2.0.104 1998-Nov-20 #1 built 1998-Dec-11) Received: by hcswork.hcs.de (Postfix, from userid 200) id 3674A3A34; Wed, 8 Mar 2000 12:06:49 +0100 (MET) Subject: Re: ijppp for isdn, ppp compression, and netgraph (also: load balancing) In-Reply-To: <200003071834.KAA41887@bubba.whistle.com> from Archie Cobbs at "Mar 7, 0 10:34:40 am" To: archie@whistle.com (Archie Cobbs) Date: Wed, 8 Mar 2000 12:06:48 +0100 (MET) Cc: freebsd-isdn@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Reply-To: hm@hcs.de Organization: HCS Hanseatischer Computerservice GmbH X-Mailer: ELM [version 2.4ME+ PL39 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 2195 Message-Id: <20000308110649.3674A3A34@hcswork.hcs.de> From: hm@hcs.de (Hellmuth Michaelis) Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org (CC: stripped) From the keyboard of Archie Cobbs: > Here is my list of things that 'should be done' at some point: > > 1. Implement the various PPP compression types as netgraph nodes, > starting with Deflate, then maybe predictor-1, STAC (if we can > do it legally), and MPPC (same thing). Sounds good. The link in the original mail points to a Linux (GPL) implementation of the STAC compression. Since i was under the impression that STAC is patented, i've contacted the author about this and it seems that STAC either did not notice his implementation, does not care about it, or that it is legal to reimplement it here in Germany or Europe. Perhaps it might be possible to use this somehow, or at least provide hooks to use it ... > 2. We should come up with a 'standard' netgraph control message > API for an ISDN basic rate interface, and have i4b implement > this interface. Then mpd/ppp/etc can "know" this interface > and therefore work automatically with any ISDN BRI device. > Here is the interface that we use at Whistle: > ftp://ftp.whistle.com/pub/archie/netgraph/ng_tn.h > (note: the switch types are #defined in another file but include > all of the usual suspects: ETSI, NI-1, AT&T, DMS100, etc.) The problem here is, that the Whistle ISDN stack has a fundamentally different view of the world than i4b has :-) As far as i understood it, the Whistle ISDN stack is almost completely configurable by using netgraph messages whereas i4b is configured by its isdnd config file. I have made some experiments with mppd over the i4b netgraph b-channel interface and it works beautifully here without any additional configuration messages necessary. But i have no idea, if the real world demands some control messages, such as dial, dial a number, hangup etc. Any ideas how to proceed with this ? hellmuth -- Hellmuth Michaelis Tel +49 40 55 97 47-70 HCS Hanseatischer Computerservice GmbH Fax +49 40 55 97 47-77 Oldesloer Strasse 97-99 Mail hm [at] hcs.de D-22457 Hamburg WWW http://www.hcs.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Mar 8 4:52:55 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from mail-in-01.piro.net (mail-out-02.piro.net [194.64.31.10]) by hub.freebsd.org (Postfix) with ESMTP id 57B6937B59F for ; Wed, 8 Mar 2000 04:52:52 -0800 (PST) (envelope-from pherman@pironet.com) Received: from pums01.piro.net (pums01.piro.net [194.64.31.19]) by mail-in-01.piro.net (8.9.3/8.9.3/PN-991208) with ESMTP id NAA27522 for ; Wed, 8 Mar 2000 13:52:50 +0100 Received: from xhost.piro.net ([195.135.190.64]) by pums01.piro.net (Netscape Messaging Server 3.6) with ESMTP id AAA6DDF; Wed, 8 Mar 2000 13:52:48 +0100 Date: Wed, 8 Mar 2000 13:52:47 +0100 (CET) From: Paul Herman To: Christoph Kukulies Cc: Gary Jennejohn , freebsd-isdn@FreeBSD.ORG Subject: Re: sPPP and PPP keepalives In-Reply-To: <20000308081322.B88994@gil.physik.rwth-aachen.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 8 Mar 2000, Christoph Kukulies wrote: > On Tue, Mar 07, 2000 at 11:22:09PM +0100, Gary Jennejohn wrote: > > > > Just uudecode and apply the patch to a clean 0.90 release tree. > > How current must my -current be? > > /usr/src/sbin/spppcontrol> make > cc -O -pipe -c /usr/src/sbin/spppcontrol/spppcontrol.c > /usr/src/sbin/spppcontrol/spppcontrol.c: In function `print_vals': > /usr/src/sbin/spppcontrol/spppcontrol.c:206: structure has no member named `pp_last_sent' > /usr/src/sbin/spppcontrol/spppcontrol.c:207: structure has no member named `pp_last_recv' > *** Error code 1 > > Stop in /usr/src/sbin/spppcontrol. All sppp.h files should be patched. /usr/include/sppp.h /usr/src/sys/include/sppp.h ...or was that /usr/include/net/sppp.h? Well, you get the idea. -Paul. ---------------------------------------------------- PIRONET AG Paul Herman - Senior Consultant - SBU Providing Im Mediapark 5 - 50670 Cologne - Germany Tel.: +49 (0)221 454 3832 - Fax: +49 (0)221 454 3810 mailto:pherman@piro.net - http://www.piro.net/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Mar 8 6:15:50 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from peedub.muc.de (peedub.muc.de [193.149.49.109]) by hub.freebsd.org (Postfix) with ESMTP id 076BE37B7CF for ; Wed, 8 Mar 2000 06:15:45 -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 PAA00487; Wed, 8 Mar 2000 15:14:52 +0100 (CET) Message-Id: <200003081414.PAA00487@peedub.muc.de> X-Mailer: exmh version 2.1.0 09/18/1999 To: Paul Herman Cc: Christoph Kukulies , freebsd-isdn@FreeBSD.ORG Subject: Re: sPPP and PPP keepalives Reply-To: Gary Jennejohn In-reply-to: Your message of "Wed, 08 Mar 2000 13:52:51 +0100." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 08 Mar 2000 15:14:52 +0100 From: Gary Jennejohn Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Paul Herman writes: >On Wed, 8 Mar 2000, Christoph Kukulies wrote: > >> On Tue, Mar 07, 2000 at 11:22:09PM +0100, Gary Jennejohn wrote: >> > >> > Just uudecode and apply the patch to a clean 0.90 release tree. >> >> How current must my -current be? >> >> /usr/src/sbin/spppcontrol> make >> cc -O -pipe -c /usr/src/sbin/spppcontrol/spppcontrol.c >> /usr/src/sbin/spppcontrol/spppcontrol.c: In function `print_vals': >> /usr/src/sbin/spppcontrol/spppcontrol.c:206: structure has no member named ` >pp_last_sent' >> /usr/src/sbin/spppcontrol/spppcontrol.c:207: structure has no member named ` >pp_last_recv' >> *** Error code 1 >> >> Stop in /usr/src/sbin/spppcontrol. > >All sppp.h files should be patched. > /usr/include/sppp.h > /usr/src/sys/include/sppp.h > >...or was that /usr/include/net/sppp.h? Well, you get the idea. > No, you have to copy /sys/net/if_sppp.h to /usr/include/net after applying the patch. I assumed that was obvious :) BTW Paul, thanks for your repoert of success with the patch. You're the first (and only) person who has done so. --- Gary Jennejohn / garyj@muc.de garyj@fkr.cpqcorp.net gj@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Mar 8 8:44: 4 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from merak.worldonline.fr (merak.worldonline.fr [212.83.128.13]) by hub.freebsd.org (Postfix) with ESMTP id 23AA037BC35 for ; Wed, 8 Mar 2000 08:43:56 -0800 (PST) (envelope-from awb@worldonline.fr) Received: from kosovo (ppp-119.dialup-132.worldonline.fr [212.83.132.119]) by merak.worldonline.fr (Mail pour Wolf) with SMTP id RAA20588; Wed, 8 Mar 2000 17:43:50 +0100 Message-ID: <008401bf891d$81fd9600$0601a8c0@kosovo.idianet.net> From: "Abdelkrim WAHHABI" To: "Pascal Gienger" Cc: Subject: Re: Abdelkrims Problem Date: Wed, 8 Mar 2000 17:43:58 +0100 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 4.72.3110.37 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.37 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have already the problem in the file kernel : device isic0 at isa? port 0x268 net irq 5 flags 7 vector isicintr i don't know if the problem is that (conflic with irq 5) or not To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Mar 8 9:21:45 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from spree.nando.de (spree.nando.de [212.41.160.42]) by hub.freebsd.org (Postfix) with ESMTP id 27F3B37C2B4 for ; Wed, 8 Mar 2000 09:21:42 -0800 (PST) (envelope-from dave@turbocat.de) Received: from harvey.aball.de (root@harvey.aball.de [212.41.160.46]) by spree.nando.de (8.8.8/990525/wpv/CA-3) with ESMTP id SAA13760 for ; Wed, 8 Mar 2000 18:21:30 +0100 (MET) Received: from turbocat.de (uucp@localhost) by harvey.aball.de (8.9.3/8.9.3) with UUCP id SAA00626 for freebsd-isdn@FreeBSD.ORG; Wed, 8 Mar 2000 18:21:24 +0100 Received: from cat.turbocat.de (cat [212.41.163.194]) by alice.turbocat.de (8.8.8/8.8.8) with ESMTP id SAA28243 for ; Wed, 8 Mar 2000 18:18:58 +0100 (CET) Received: (from dave@localhost) by cat.turbocat.de (8.8.5/8.7.3) id SAA01583 for freebsd-isdn@FreeBSD.ORG; Wed, 8 Mar 2000 18:19:06 +0100 (MET) Message-Id: <200003081719.SAA01583@cat.turbocat.de> Content-Type: text/plain MIME-Version: 1.0 (NeXT Mail 4.2mach v148) X-Nextstep-Mailer: Mail 4.0 (Enhance 2.0b4) Received: by NeXT.Mailer (1.148) From: David Wetzel Date: Wed, 8 Mar 2000 18:19:06 +0100 To: ISDN-List Subject: isp0 up and running but not working Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, from time to time my sppp link is UP and RUNNING but does not pass the packets to the internet. "ifconfig isp0 down" and "ifconfig isp0 up" "fixes" the problem. Does someone here see the same behavior? Dave --- _ _ _(_)(_)_ David Wetzel, Turbocat's Development, (_) __ (_) Buchhorster Strasse 23, D-16567 Muehlenbeck/Berlin, FRG, _/ \_ Fax +49 33056 82835 NeXTmail dave@turbocat.de (______) http://www.turbocat.de/ DEVELOPMENT * CONSULTING * ADMINISTRATION To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Mar 8 9:21:50 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from spree.nando.de (spree.nando.de [212.41.160.42]) by hub.freebsd.org (Postfix) with ESMTP id 3908537C2D7 for ; Wed, 8 Mar 2000 09:21:42 -0800 (PST) (envelope-from dave@turbocat.de) Received: from harvey.aball.de (root@harvey.aball.de [212.41.160.46]) by spree.nando.de (8.8.8/990525/wpv/CA-3) with ESMTP id SAA13764 for ; Wed, 8 Mar 2000 18:21:31 +0100 (MET) Received: from turbocat.de (uucp@localhost) by harvey.aball.de (8.9.3/8.9.3) with UUCP id SAA00629 for freebsd-isdn@FreeBSD.ORG; Wed, 8 Mar 2000 18:21:25 +0100 Received: from cat.turbocat.de (cat [212.41.163.194]) by alice.turbocat.de (8.8.8/8.8.8) with ESMTP id SAA28296 for ; Wed, 8 Mar 2000 18:21:13 +0100 (CET) Received: (from dave@localhost) by cat.turbocat.de (8.8.5/8.7.3) id SAA01586 for freebsd-isdn@FreeBSD.ORG; Wed, 8 Mar 2000 18:21:21 +0100 (MET) Message-Id: <200003081721.SAA01586@cat.turbocat.de> Content-Type: text/plain MIME-Version: 1.0 (NeXT Mail 4.2mach v148) In-Reply-To: <200003081414.PAA00487@peedub.muc.de> X-Nextstep-Mailer: Mail 4.0 (Enhance 2.0b4) Received: by NeXT.Mailer (1.148) From: David Wetzel Date: Wed, 8 Mar 2000 18:21:21 +0100 To: freebsd-isdn@FreeBSD.ORG Subject: Re: sPPP and PPP keepalives References: <200003081414.PAA00487@peedub.muc.de> Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Would someone please explain what keepalives are? Artificial traffic that is created by one end of the isdn link? Thanks. --- _ _ _(_)(_)_ David Wetzel, Turbocat's Development, (_) __ (_) Buchhorster Strasse 23, D-16567 Muehlenbeck/Berlin, FRG, _/ \_ Fax +49 33056 82835 NeXTmail dave@turbocat.de (______) http://www.turbocat.de/ DEVELOPMENT * CONSULTING * ADMINISTRATION To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Mar 8 10:22: 9 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from bubba.whistle.com (bubba.whistle.com [207.76.205.7]) by hub.freebsd.org (Postfix) with ESMTP id 2296E37B731; Wed, 8 Mar 2000 10:22:02 -0800 (PST) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.3/8.9.2) id KAA59436; Wed, 8 Mar 2000 10:21:37 -0800 (PST) From: Archie Cobbs Message-Id: <200003081821.KAA59436@bubba.whistle.com> Subject: Re: ijppp for isdn, ppp compression, and netgraph (also: load balancing) In-Reply-To: <20000308110649.3674A3A34@hcswork.hcs.de> from Hellmuth Michaelis at "Mar 8, 2000 12:06:48 pm" To: hm@hcs.de Date: Wed, 8 Mar 2000 10:21:37 -0800 (PST) Cc: freebsd-isdn@FreeBSD.ORG, freebsd-hackers@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-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hellmuth Michaelis writes: > > 2. We should come up with a 'standard' netgraph control message > > API for an ISDN basic rate interface, and have i4b implement > > this interface. Then mpd/ppp/etc can "know" this interface > > and therefore work automatically with any ISDN BRI device. > > Here is the interface that we use at Whistle: > > ftp://ftp.whistle.com/pub/archie/netgraph/ng_tn.h > > (note: the switch types are #defined in another file but include > > all of the usual suspects: ETSI, NI-1, AT&T, DMS100, etc.) > > The problem here is, that the Whistle ISDN stack has a fundamentally > different view of the world than i4b has :-) As far as i understood it, > the Whistle ISDN stack is almost completely configurable by using > netgraph messages whereas i4b is configured by its isdnd config file. > > I have made some experiments with mppd over the i4b netgraph b-channel > interface and it works beautifully here without any additional > configuration messages necessary. But i have no idea, if the real world > demands some control messages, such as dial, dial a number, hangup etc. Yes, our way of doing things was of course designed for our particular application. It depends on what you want to do with an 'ISDN node'. The /dev/i4b interface is actually pretty close to equivalent to our netgraph control message API. The main differences seem to be: - Our API is strictly limited to ISDN operation, e.g., there are no equivalents to I4B_TIMEOUT_UPD, I4B_UPDOWN_IND, or MSG_IDLE_TIMEOUT_IND and no connection to sppp(8) - Our API allows more ISDN-related configuration, e.g., changing switch type. - Our API is at a slightly higher level.. we don't have the CDID_REQ or PROCEEDING_IND messages; when rejecting a call, you don't get to specify the cause code, it's always set to 21 for you, etc. So the /dev/i4b and our netgraph API are actually quite similar. Of course, a major difference is that with /dev/i4b you don't get the B-channels exposed as netgraph node hooks, which is very useful... but as you've shown already this is easy to add. This gets you a "half netgraphified" ISDN node. One thing that would be easy to do is to simply convert all of the /dev/i4b ioctl's directly into netgraph control messages. This doesn't really buy you anything much though -- really just a different interface for the same thing. But if there were future plans to do all kinds of wacky things with an ISDN device that would benefit by having it fully netgraphified, maybe this would be worth doing. -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Mar 8 11:52:34 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from prefix.rhein.de (prefix.rhein.de [193.175.27.10]) by hub.freebsd.org (Postfix) with ESMTP id B37A737C32F for ; Wed, 8 Mar 2000 11:52:27 -0800 (PST) (envelope-from is@jocelyn.rhein.de) Received: from jocelyn.rhein.de (unknown [193.175.27.210]) by prefix.rhein.de (Postfix) with ESMTP id 927ED3B220; Wed, 8 Mar 2000 19:52:23 +0000 (MET) Received: by jocelyn.rhein.de (Postfix, from userid 1501) id 5120144; Wed, 8 Mar 2000 20:46:28 +0100 (MET) Date: Wed, 8 Mar 2000 20:46:27 +0100 From: Ignatios Souvatzis To: David Wetzel Cc: ISDN-List Subject: Re: isp0 up and running but not working Message-ID: <20000308204627.B441@jocelyn.rhein.de> References: <200003081719.SAA01583@cat.turbocat.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <200003081719.SAA01583@cat.turbocat.de>; from David Wetzel on Wed, Mar 08, 2000 at 06:19:06PM +0100 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Mar 08, 2000 at 06:19:06PM +0100, David Wetzel wrote: > from time to time my sppp link is UP and RUNNING but does not pass the > packets to the internet. > > "ifconfig isp0 down" and "ifconfig isp0 up" "fixes" the problem. > > Does someone here see the same behavior? and I tought I was on drugs... yes. % uname -a NetBSD jocelyn 1.4T NetBSD 1.4T (ISDN17) #15: Wed Mar 1 22:55:09 MET 2000 is@jocelyn:/build2/i4b/ISDN17 amiga i4b version is 00.83.20, still. -is To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Mar 8 11:52:34 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from prefix.rhein.de (prefix.rhein.de [193.175.27.10]) by hub.freebsd.org (Postfix) with ESMTP id AE17237C328 for ; Wed, 8 Mar 2000 11:52:27 -0800 (PST) (envelope-from is@jocelyn.rhein.de) Received: from jocelyn.rhein.de (unknown [193.175.27.210]) by prefix.rhein.de (Postfix) with ESMTP id 1D94C3B223; Wed, 8 Mar 2000 19:52:24 +0000 (MET) Received: by jocelyn.rhein.de (Postfix, from userid 1501) id 545E147; Wed, 8 Mar 2000 20:49:36 +0100 (MET) Date: Wed, 8 Mar 2000 20:49:35 +0100 From: Ignatios Souvatzis To: David Wetzel Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: sPPP and PPP keepalives Message-ID: <20000308204935.C441@jocelyn.rhein.de> References: <200003081414.PAA00487@peedub.muc.de> <200003081721.SAA01586@cat.turbocat.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <200003081721.SAA01586@cat.turbocat.de>; from David Wetzel on Wed, Mar 08, 2000 at 06:21:21PM +0100 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Mar 08, 2000 at 06:21:21PM +0100, David Wetzel wrote: > Would someone please explain what keepalives are? Artificial traffic that is > created by one end of the isdn link? the PPP link control protocol has two message types called "LCP echo" and "LCP echo reply", which do what you guess. Linux people started to use them to workaround buggy serial drivers that dont provide SIGHUP on hangup some years ago. They usually send a LCP echo every couple of seconds, and tear the connection down if they dont receive two or three of the replies in a row. Regards, -is To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Mar 8 14: 2: 9 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from gnu.IN-Berlin.DE (gnu.in-berlin.de [192.109.42.4]) by hub.freebsd.org (Postfix) with ESMTP id C92F437C26A for ; Wed, 8 Mar 2000 14:02:04 -0800 (PST) (envelope-from dva.in-berlin.de!balu@hirsch.in-berlin.de) Received: from hirsch.in-berlin.de (root@hirsch.in-berlin.de [192.109.42.6]) by gnu.IN-Berlin.DE (8.9.3/8.9.3) with ESMTP id XAA19867 for ; Wed, 8 Mar 2000 23:02:01 +0100 (CET) (envelope-from dva.in-berlin.de!balu@hirsch.in-berlin.de) Received: by hirsch.in-berlin.de (Smail3.2) id ; Wed, 8 Mar 2000 23:01:59 +0100 (CET) Received: by dva.in-berlin.de (Postfix, from userid 200) id EC28310E00; Wed, 8 Mar 2000 18:58:32 +0100 (CET) Date: Wed, 8 Mar 2000 18:58:32 +0100 From: Boris Staeblow To: freebsd-isdn@freebsd.org Subject: =?iso-8859-1?Q?Teles_S0=2F16=2E3_doesn=B4t_work_in_-current?= Message-ID: <20000308185832.A33405@dva.in-berlin.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org My Teles S0/16.3 didnīt work in -current. Kernel config: options TEL_S0_16_3 device isic0 at isa? port 0xf80 irq 10 flags 3 Log at bootup: isic0: Error allocating io at 0x360 for Teles S0/16.3! But with the recently posted patch from Andrew Gordon (Subject: Re: Big ATA problems [patch file missing from previous msg]) the card probe correctly: isic0 at port 0xf80-0xf9f,0xb80-0xb9f,0x380-0x39f,0x780-0x79f irq 10 \ flags 0x3 on isa0 isic0: Teles S0/16.3 With 4.0 in sight, shouldnīt the patch be integrated in -current? It runs stable for me since serval days. Boris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Mar 8 17:59:51 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from awfulhak.org (dynamic-97.max4-du-ws.dialnetwork.pavilion.co.uk [212.74.9.225]) by hub.freebsd.org (Postfix) with ESMTP id 3C54837B6FD; Wed, 8 Mar 2000 17:59:25 -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 BAA03755; Thu, 9 Mar 2000 01:10:03 GMT (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id TAA11664; Wed, 8 Mar 2000 19:12:17 GMT (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200003081912.TAA11664@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: Archie Cobbs Cc: nox@jelal.kn-bremen.de (Juergen Lock), julian@elischer.org (Julian Elischer), hm@hcs.de, kuku@gilberto.physik.RWTH-Aachen.DE, freebsd-isdn@FreeBSD.org, freebsd-hackers@FreeBSD.org, brian@hak.lan.Awfulhak.org Subject: Re: ijppp for isdn, ppp compression, and netgraph (also: load balancing) In-Reply-To: Message from Archie Cobbs of "Tue, 07 Mar 2000 10:36:42 PST." <200003071836.KAA41919@bubba.whistle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 08 Mar 2000 19:12:16 +0000 From: Brian Somers Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Juergen Lock writes: > > > when this is done the netgraph PPP nodes (which can support > > > these compression types will be usable. > > > > They could, but they don't yet, right? :) > > > > Maybe it still should be added to ijppp first cause debugging user > > processes is easier than the kernel... and at the usual isdn bri > > speeds a user process should still be pretty fast enough. > > That makes perfect sense.. just be sure to write the code so that > it's easily ported to the kernel.. the main issues being mbuf's.. > for that it's probably eassiest to just punt and copy each packet > into a contiguous buffer. I've done a small amount of work on making ppp(8)-style mbufs look more like real mbufs with this in mind. If I can bring the whole interface in line, this problem will go away. Of course this'll probably then introduce a compatibility problem with {Net,Open}BSD... > -Archie > > ___________________________________________________________________________ > Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Mar 8 20:39:37 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from bubba.whistle.com (bubba.whistle.com [207.76.205.7]) by hub.freebsd.org (Postfix) with ESMTP id E38BD37B635 for ; Wed, 8 Mar 2000 20:39:35 -0800 (PST) (envelope-from archie@whistle.com) Received: (from archie@localhost) by bubba.whistle.com (8.9.3/8.9.2) id UAA79382; Wed, 8 Mar 2000 20:38:47 -0800 (PST) From: Archie Cobbs Message-Id: <200003090438.UAA79382@bubba.whistle.com> Subject: Re: sPPP and PPP keepalives In-Reply-To: <20000308204935.C441@jocelyn.rhein.de> from Ignatios Souvatzis at "Mar 8, 2000 08:49:35 pm" To: is@jocelyn.rhein.de (Ignatios Souvatzis) Date: Wed, 8 Mar 2000 20:38:47 -0800 (PST) Cc: dave@turbocat.de (David Wetzel), freebsd-isdn@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-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ignatios Souvatzis writes: > the PPP link control protocol has two message types called "LCP echo" and > "LCP echo reply", which do what you guess. > > Linux people started to use them to workaround buggy serial drivers that > dont provide SIGHUP on hangup some years ago. They usually send a LCP echo > every couple of seconds, and tear the connection down if they dont > receive two or three of the replies in a row. Another thing you can do is just poll the carrier detect signal. LCP echos are good practice anyway. Sometimes the box at the remote end freezes without disconnecting the telephone (or whatever link). -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Thu Mar 9 1: 2:55 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from spree.nando.de (spree.nando.de [212.41.160.42]) by hub.freebsd.org (Postfix) with ESMTP id 393FA37B79F for ; Thu, 9 Mar 2000 01:02:47 -0800 (PST) (envelope-from dave@turbocat.de) Received: from harvey.aball.de (root@harvey.aball.de [212.41.160.46]) by spree.nando.de (8.8.8/990525/wpv/CA-3) with ESMTP id KAA17960; Thu, 9 Mar 2000 10:02:43 +0100 (MET) Received: from turbocat.de (uucp@localhost) by harvey.aball.de (8.9.3/8.9.3) with UUCP id KAA27611; Thu, 9 Mar 2000 10:02:42 +0100 Received: from cat.turbocat.de (cat [212.41.163.194]) by alice.turbocat.de (8.8.8/8.8.8) with ESMTP id KAA14687; Thu, 9 Mar 2000 10:02:33 +0100 (CET) Received: (from dave@localhost) by cat.turbocat.de (8.8.5/8.7.3) id KAA00233; Thu, 9 Mar 2000 10:02:32 +0100 (MET) Message-Id: <200003090902.KAA00233@cat.turbocat.de> Content-Type: text/plain MIME-Version: 1.0 (NeXT Mail 4.2mach v148) In-Reply-To: <20000308204627.B441@jocelyn.rhein.de> X-Nextstep-Mailer: Mail 4.0 (Enhance 2.0b4) Received: by NeXT.Mailer (1.148) From: David Wetzel Date: Thu, 9 Mar 2000 10:02:31 +0100 To: ISDN-List Subject: Re: isp0 up and running but not working References: <200003081719.SAA01583@cat.turbocat.de> <20000308204627.B441@jocelyn.rhein.de> Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > From: Ignatios Souvatzis > On Wed, Mar 08, 2000 at 06:19:06PM +0100, David Wetzel wrote: > > > from time to time my sppp link is UP and RUNNING but does not pass the > > packets to the internet. > > > > "ifconfig isp0 down" and "ifconfig isp0 up" "fixes" the problem. > > > > Does someone here see the same behavior? > > and I tought I was on drugs... > > yes. No! At least you did not take enough ,-) Did no one else see this? Or do you swich off your *BSD boxes all the time? Hellmuth does not use sppp. Who of the core developers uses it? --- _ _ _(_)(_)_ David Wetzel, Turbocat's Development, (_) __ (_) Buchhorster Strasse 23, D-16567 Muehlenbeck/Berlin, FRG, _/ \_ Fax +49 33056 82835 NeXTmail dave@turbocat.de (______) http://www.turbocat.de/ DEVELOPMENT * CONSULTING * ADMINISTRATION To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Thu Mar 9 2: 3:21 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from mail.sparud.net (hinken.sparud.net [193.12.107.26]) by hub.freebsd.org (Postfix) with ESMTP id 579C937B6AB for ; Thu, 9 Mar 2000 02:03:19 -0800 (PST) (envelope-from jan@sparud.net) Received: by mail.sparud.net (Postfix, from userid 10) id 965073E0B; Thu, 9 Mar 2000 11:03:11 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14535.30430.829927.380234@hinken.sparud.net> Date: Thu, 9 Mar 2000 11:03:10 +0100 (CET) To: David Wetzel Cc: ISDN-List Subject: Re: isp0 up and running but not working In-Reply-To: <200003090902.KAA00233@cat.turbocat.de> References: <200003081719.SAA01583@cat.turbocat.de> <20000308204627.B441@jocelyn.rhein.de> <200003090902.KAA00233@cat.turbocat.de> X-Mailer: VM 6.75 under Emacs 20.3.1 From: jan@sparud.net (Jan Sparud) Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >> > from time to time my sppp link is UP and RUNNING but does not >> pass the > packets to the internet. >> > >> > "ifconfig isp0 down" and "ifconfig isp0 up" "fixes" the problem. > Did no one else see this? Or do you swich off your *BSD boxes all > the time? Hellmuth does not use sppp. Who of the core developers > uses it? I think I have seen it a few times, after having changed the config file and HUPed isdnd, but I don't see it in "normal usage". /Janne To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Thu Mar 9 3:25:46 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from peedub.muc.de (peedub.muc.de [193.149.49.109]) by hub.freebsd.org (Postfix) with ESMTP id 12E4437B61E for ; Thu, 9 Mar 2000 03:25:43 -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 MAA46212; Thu, 9 Mar 2000 12:22:32 +0100 (CET) Message-Id: <200003091122.MAA46212@peedub.muc.de> X-Mailer: exmh version 2.1.0 09/18/1999 To: David Wetzel Cc: ISDN-List Subject: Re: isp0 up and running but not working Reply-To: Gary Jennejohn In-reply-to: Your message of "Thu, 09 Mar 2000 10:02:31 +0100." <200003090902.KAA00233@cat.turbocat.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 09 Mar 2000 12:22:32 +0100 From: Gary Jennejohn Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org David Wetzel writes: >> From: Ignatios Souvatzis > >> On Wed, Mar 08, 2000 at 06:19:06PM +0100, David Wetzel wrote: >> >> > from time to time my sppp link is UP and RUNNING but does not pass the >> > packets to the internet. >> > >> > "ifconfig isp0 down" and "ifconfig isp0 up" "fixes" the problem. >> > >> > Does someone here see the same behavior? >> >> and I tought I was on drugs... >> >> yes. > >No! At least you did not take enough ,-) >Did no one else see this? Or do you swich off your *BSD boxes all the time? >Hellmuth does not use sppp. Who of the core developers uses it? > I use sPPP exclusively and never see any problems. But I'm using FreeBSD. Seems to me that you use NetBSD. I also don't use any of the telephony stuff, so rbch never enters into the picture for me. And my box runs 7 / 24, although I tend to reboot it every couple of weeks since I track FreeBSD-current. Do you see any errors, like "out of mbufs", or so ? Try doing a netstat -m when you see the problem to find out whether you've run out of mbufs (although in FreeBSD there's a per interface limit on mbufs, which means that you can still have lots of mbufs available but the interface may have full queues). A netstat -A might help to see where packets are being queued up. --- Gary Jennejohn / garyj@muc.de garyj@fkr.cpqcorp.net gj@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Thu Mar 9 13: 0:26 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from hcshh.hcs.de (hcshh.hcs.de [194.123.40.1]) by hub.freebsd.org (Postfix) with SMTP id 8F69D37B86F for ; Thu, 9 Mar 2000 13:00:16 -0800 (PST) (envelope-from hm@hcs.de) Received: from hcswork.hcs.de([192.76.124.5]) (1661 bytes) by hcshh.hcs.de via sendmail with P:smtp/R:inet_hosts/T:smtp (sender: ) id for ; Thu, 9 Mar 2000 21:59:43 +0100 (CET) (Smail-3.2.0.104 1998-Nov-20 #1 built 1998-Dec-11) Received: by hcswork.hcs.de (Postfix, from userid 200) id 2759536AB; Thu, 9 Mar 2000 21:59:43 +0100 (MET) Subject: Re: [Teles S0/16.3 doesn_t work in -current] In-Reply-To: <20000308185832.A33405@dva.in-berlin.de> from Boris Staeblow at "Mar 8, 0 06:58:32 pm" To: balu@dva.in-berlin.de (Boris Staeblow) Date: Thu, 9 Mar 2000 21:59:42 +0100 (MET) Cc: freebsd-isdn@FreeBSD.ORG Reply-To: hm@hcs.de Organization: HCS Hanseatischer Computerservice GmbH X-Mailer: ELM [version 2.4ME+ PL39 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 790 Message-Id: <20000309205943.2759536AB@hcswork.hcs.de> From: hm@hcs.de (Hellmuth Michaelis) Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From the keyboard of Boris Staeblow: > But with the recently posted patch from Andrew Gordon > (Subject: Re: Big ATA problems [patch file missing from previous msg]) > the card probe correctly: > > isic0 at port 0xf80-0xf9f,0xb80-0xb9f,0x380-0x39f,0x780-0x79f irq 10 \ > flags 0x3 on isa0 > isic0: Teles S0/16.3 > > With 4.0 in sight, shouldn_t the patch be integrated in -current? > > It runs stable for me since serval days. I have just committed the patch. hellmuth -- Hellmuth Michaelis Tel +49 40 55 97 47-70 HCS Hanseatischer Computerservice GmbH Fax +49 40 55 97 47-77 Oldesloer Strasse 97-99 Mail hm [at] hcs.de D-22457 Hamburg WWW http://www.hcs.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Thu Mar 9 14: 0:56 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from prefix.rhein.de (prefix.rhein.de [193.175.27.10]) by hub.freebsd.org (Postfix) with ESMTP id 9240B37B976 for ; Thu, 9 Mar 2000 14:00:54 -0800 (PST) (envelope-from is@jocelyn.rhein.de) Received: from jocelyn.rhein.de (unknown [193.175.27.210]) by prefix.rhein.de (Postfix) with ESMTP id C15903B1AC; Thu, 9 Mar 2000 22:00:44 +0000 (MET) Received: by jocelyn.rhein.de (Postfix, from userid 1501) id 4F3AC47; Thu, 9 Mar 2000 22:10:32 +0100 (MET) Date: Thu, 9 Mar 2000 22:10:31 +0100 From: Ignatios Souvatzis To: David Wetzel Cc: ISDN-List Subject: Re: isp0 up and running but not working Message-ID: <20000309221031.C727@jocelyn.rhein.de> References: <200003081719.SAA01583@cat.turbocat.de> <20000308204627.B441@jocelyn.rhein.de> <200003090902.KAA00233@cat.turbocat.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.6i In-Reply-To: <200003090902.KAA00233@cat.turbocat.de>; from David Wetzel on Thu, Mar 09, 2000 at 10:02:31AM +0100 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Mar 09, 2000 at 10:02:31AM +0100, David Wetzel wrote: > > From: Ignatios Souvatzis > > > On Wed, Mar 08, 2000 at 06:19:06PM +0100, David Wetzel wrote: > > > > > from time to time my sppp link is UP and RUNNING but does not pass the > > > packets to the internet. > > > > > > "ifconfig isp0 down" and "ifconfig isp0 up" "fixes" the problem. > > > > > > Does someone here see the same behavior? > > > > and I tought I was on drugs... > > > > yes. > > No! At least you did not take enough ,-) > Did no one else see this? Or do you swich off your *BSD boxes all the time? To be precise, I _sometimes_ see it after booting the machine, and never again for the remaining uptime (which was, recently, a few days; but normally is only 1900 -- 2400). -is To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Thu Mar 9 14:23:55 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from elch.de.uu.net (elch.de.uu.net [192.76.144.55]) by hub.freebsd.org (Postfix) with ESMTP id 4946E37B87A for ; Thu, 9 Mar 2000 14:23:42 -0800 (PST) (envelope-from ingolf@knuut.de) Received: from local.net (pec-54-75.tnt2.b2.uunet.de [149.225.54.75]) by elch.de.uu.net (5.5.5/5.5.5) with ESMTP id XAA22417 for ; Thu, 9 Mar 2000 23:21:12 +0100 (MET) Received: (from ingolf@localhost) by local.net (8.8.8/8.8.8) id XAA18504 for freebsd-isdn@FreeBSD.ORG; Thu, 9 Mar 2000 23:23:22 +0100 (MET) Date: Thu, 9 Mar 2000 23:23:22 +0100 From: Ingolf Koch To: ISDN-List Subject: Re: isp0 up and running but not working Message-ID: <20000309232322.A18497@maus.local.net> References: <200003081719.SAA01583@cat.turbocat.de> <20000308204627.B441@jocelyn.rhein.de> <200003090902.KAA00233@cat.turbocat.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200003090902.KAA00233@cat.turbocat.de>; from dave@turbocat.de on Thu, Mar 09, 2000 at 10:02:31AM +0100 X-Faith: Jesus Christ Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Mar 09, 2000 at 10:02:31AM +0100, David Wetzel wrote: > > > from time to time my sppp link is UP and RUNNING but does not pass the > > > packets to the internet. > > > > > > "ifconfig isp0 down" and "ifconfig isp0 up" "fixes" the problem. > Did no one else see this? Me too. But I cannot say under which circumstances I had this problem. > Or do you swich off your *BSD boxes all the time? No, the machine is (nearly) always up (NetBSD-current/i386). Ingolf -- Ingolf Koch ICQ#60829470 Beste Kneipe in Jena-Ost PGP: 0x7B3B5661 213C 828E 0C92 16B5 05D0 4D5B A324 EC04 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Thu Mar 9 15: 9:54 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from widukind.bi.teuto.net (widukind.bi.teuto.net [212.8.197.28]) by hub.freebsd.org (Postfix) with ESMTP id 79CF437B897 for ; Thu, 9 Mar 2000 15:09:44 -0800 (PST) (envelope-from martin@rumolt.teuto.de) Received: from rumolt.teuto.de (IDENT:root@rumolt.teuto.de [212.8.203.81]) by widukind.bi.teuto.net (8.9.3/8.9.3) with ESMTP id AAA12997; Fri, 10 Mar 2000 00:09:29 +0100 Received: (from martin@localhost) by rumolt.teuto.de (8.9.3/8.8.8) id AAA04169; Fri, 10 Mar 2000 00:11:30 +0100 (MET) From: Martin Husemann Message-Id: <200003092311.AAA04169@rumolt.teuto.de> Subject: Re: isp0 up and running but not working In-Reply-To: <200003090902.KAA00233@cat.turbocat.de> from David Wetzel at "Mar 9, 2000 10:02:31 am" To: dave@turbocat.de (David Wetzel) Date: Fri, 10 Mar 2000 00:11:30 +0100 (MET) Cc: freebsd-isdn@FreeBSD.ORG (ISDN-List) Organization: Crusaders Catering Services Inc. ;-) 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-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > No! At least you did not take enough ,-) > Did no one else see this? Or do you swich off your *BSD boxes all the time? > Hellmuth does not use sppp. Who of the core developers uses it? I do, and I never reach uptimes > 30 days because of this. Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Thu Mar 9 23:24:52 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from peedub.muc.de (peedub.muc.de [193.149.49.109]) by hub.freebsd.org (Postfix) with ESMTP id A1FD837B95F for ; Thu, 9 Mar 2000 23:24:48 -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 IAA20106; Fri, 10 Mar 2000 08:23:02 +0100 (CET) Message-Id: <200003100723.IAA20106@peedub.muc.de> X-Mailer: exmh version 2.1.0 09/18/1999 To: Martin Husemann Cc: freebsd-isdn@FreeBSD.org Subject: Re: isp0 up and running but not working Reply-To: Gary Jennejohn In-reply-to: Your message of "Fri, 10 Mar 2000 00:11:30 +0100." <200003092311.AAA04169@rumolt.teuto.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 10 Mar 2000 08:23:02 +0100 From: Gary Jennejohn Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Martin Husemann writes: >> No! At least you did not take enough ,-) >> Did no one else see this? Or do you swich off your *BSD boxes all the time? >> Hellmuth does not use sppp. Who of the core developers uses it? > >I do, and I never reach uptimes > 30 days because of this. > Everyone seeing this problem seems to be running NetBSD. Since most of the active developers use FreeBSD, someone using NetBSD (and also experiencing the problem) will have to figure it out and submit patches. Looks like you're it, Martin :) --- Gary Jennejohn / garyj@muc.de garyj@fkr.cpqcorp.net gj@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Mar 10 0: 3: 1 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from nets5.rz.rwth-aachen.de (nets5.rz.RWTH-Aachen.DE [137.226.144.13]) by hub.freebsd.org (Postfix) with ESMTP id 6FF6837B971 for ; Fri, 10 Mar 2000 00:02:57 -0800 (PST) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: from campino.informatik.rwth-aachen.de (campino.Informatik.RWTH-Aachen.DE [137.226.116.240]) by nets5.rz.rwth-aachen.de (8.9.1a/8.9.1/10) with ESMTP id JAA02522; Fri, 10 Mar 2000 09:02:54 +0100 (MET) Received: from gil.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by campino.informatik.rwth-aachen.de (8.9.1a/8.9.1/3) with ESMTP id JAA19258; Fri, 10 Mar 2000 09:03:42 +0100 (MET) Received: (from kuku@localhost) by gil.physik.rwth-aachen.de (8.9.3/8.6.9) id JAA04308; Fri, 10 Mar 2000 09:02:56 +0100 (CET) Date: Fri, 10 Mar 2000 09:02:56 +0100 From: Christoph Kukulies To: Ingolf Koch Cc: ISDN-List Subject: Re: isp0 up and running but not working Message-ID: <20000310090256.C4202@gil.physik.rwth-aachen.de> References: <200003081719.SAA01583@cat.turbocat.de> <20000308204627.B441@jocelyn.rhein.de> <200003090902.KAA00233@cat.turbocat.de> <20000309232322.A18497@maus.local.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20000309232322.A18497@maus.local.net>; from ingolf@knuut.de on Thu, Mar 09, 2000 at 11:23:22PM +0100 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Mar 09, 2000 at 11:23:22PM +0100, Ingolf Koch wrote: > On Thu, Mar 09, 2000 at 10:02:31AM +0100, David Wetzel wrote: > > > > from time to time my sppp link is UP and RUNNING but does not pass the > > > > packets to the internet. > > > > > > > > "ifconfig isp0 down" and "ifconfig isp0 up" "fixes" the problem. > > Did no one else see this? I have this occasionally with 0.90 and 4.0-current. I'm not sure whether ifconfig'ing alone cures the problem or if restarting isdnd is also necessary. The symptom is that I don't get a connection. Not sure whether a dial out is made but I seem to remember that the usual JSB (Julian Stacey Beep) does not occur. When this happened the first times I always blamed my provider (the university campus) until I found out that the problem lies in i4b/i4bisppp/FreeBSD. Another strangeness, which may be related to that: When I start my 'ping -i20 ' to protect against undesired shorthold the first ping doesn't get through. This happens also when using ssh/rlogin, which times out in the higher layer. So to say, the way connections are made is kind of abnormal, I always have to do a ping first or some other event that causes a dialout before I can safely start ssh/rlogin. > > Me too. But I cannot say under which circumstances I had > this problem. > > > Or do you swich off your *BSD boxes all the time? > > No, the machine is (nearly) always up (NetBSD-current/i386). > > Ingolf > -- > > Ingolf Koch ICQ#60829470 Beste Kneipe in Jena-Ost > PGP: 0x7B3B5661 213C 828E 0C92 16B5 05D0 4D5B A324 EC04 > -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Mar 10 0:38:54 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from widukind.bi.teuto.net (widukind.bi.teuto.net [212.8.197.28]) by hub.freebsd.org (Postfix) with ESMTP id 0EC7637B952 for ; Fri, 10 Mar 2000 00:38:52 -0800 (PST) (envelope-from martin@rumolt.teuto.de) Received: from rumolt.teuto.de (IDENT:root@rumolt.teuto.de [212.8.203.81]) by widukind.bi.teuto.net (8.9.3/8.9.3) with ESMTP id JAA11572; Fri, 10 Mar 2000 09:38:47 +0100 Received: from martins (hwart.teuto.de [212.8.203.83]) by rumolt.teuto.de (8.9.3/8.8.8) with SMTP id JAA01081; Fri, 10 Mar 2000 09:40:17 +0100 (MET) From: "Martin Husemann" To: "Gary Jennejohn" Cc: Subject: RE: isp0 up and running but not working Date: Fri, 10 Mar 2000 09:40:17 +0100 Message-ID: <000501bf8a6c$430e60a0$53cb08d4@martins> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 In-Reply-To: <200003100723.IAA20106@peedub.muc.de> Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Everyone seeing this problem seems to be running NetBSD. Since most > of the active developers use FreeBSD, someone using NetBSD (and also > experiencing the problem) will have to figure it out and submit patches. > > Looks like you're it, Martin :) Yep. This looks like a routing problem. Sometimes "route flush" and reinstaling the routes did make it work too. Once I did this on a remote machine ;-) I would defer investigation of this as I'm planing to "merge" the currently used sys/net/*spp* stuff with the i4b *spp* stuff. If it still happens afterwards, I'll dig deeper into it. Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Mar 10 0:38:59 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from widukind.bi.teuto.net (widukind.bi.teuto.net [212.8.197.28]) by hub.freebsd.org (Postfix) with ESMTP id 59B0037B96A for ; Fri, 10 Mar 2000 00:38:52 -0800 (PST) (envelope-from martin@rumolt.teuto.de) Received: from rumolt.teuto.de (IDENT:root@rumolt.teuto.de [212.8.203.81]) by widukind.bi.teuto.net (8.9.3/8.9.3) with ESMTP id JAA11590; Fri, 10 Mar 2000 09:38:50 +0100 Received: from martins (hwart.teuto.de [212.8.203.83]) by rumolt.teuto.de (8.9.3/8.8.8) with SMTP id JAA01070; Fri, 10 Mar 2000 09:36:53 +0100 (MET) From: "Martin Husemann" To: "Christoph Kukulies" , "Ingolf Koch" Cc: "ISDN-List" Subject: RE: isp0 up and running but not working Date: Fri, 10 Mar 2000 09:36:53 +0100 Message-ID: <000401bf8a6b$c9635fd0$53cb08d4@martins> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6700 In-Reply-To: <20000310090256.C4202@gil.physik.rwth-aachen.de> Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I have this occasionally with 0.90 and 4.0-current. I'm not sure > whether ifconfig'ing alone cures the problem or if restarting isdnd is > also necessary. I see this ocasionaly too. No ISDN connection is made in that case. Could you check your log file when this happens? I always got a "persistent deactivation" after the last successfull dial-out and the first failing one. Dial-ins keep working. Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Mar 10 0:50: 4 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from nets5.rz.rwth-aachen.de (nets5.rz.RWTH-Aachen.DE [137.226.144.13]) by hub.freebsd.org (Postfix) with ESMTP id 7B82F37B574 for ; Fri, 10 Mar 2000 00:49:54 -0800 (PST) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: from campino.informatik.rwth-aachen.de (campino.Informatik.RWTH-Aachen.DE [137.226.116.240]) by nets5.rz.rwth-aachen.de (8.9.1a/8.9.1/10) with ESMTP id JAA10281; Fri, 10 Mar 2000 09:49:48 +0100 (MET) Received: from gil.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by campino.informatik.rwth-aachen.de (8.9.1a/8.9.1/3) with ESMTP id JAA19670; Fri, 10 Mar 2000 09:50:31 +0100 (MET) Received: (from kuku@localhost) by gil.physik.rwth-aachen.de (8.9.3/8.6.9) id JAA04556; Fri, 10 Mar 2000 09:49:46 +0100 (CET) Date: Fri, 10 Mar 2000 09:49:45 +0100 From: Christoph Kukulies To: Martin Husemann Cc: Christoph Kukulies , Ingolf Koch , ISDN-List Subject: Re: isp0 up and running but not working Message-ID: <20000310094945.A4532@gil.physik.rwth-aachen.de> References: <20000310090256.C4202@gil.physik.rwth-aachen.de> <000401bf8a6b$c9635fd0$53cb08d4@martins> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <000401bf8a6b$c9635fd0$53cb08d4@martins>; from martin@rumolt.teuto.de on Fri, Mar 10, 2000 at 09:36:53AM +0100 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Mar 10, 2000 at 09:36:53AM +0100, Martin Husemann wrote: > > I have this occasionally with 0.90 and 4.0-current. I'm not sure > > whether ifconfig'ing alone cures the problem or if restarting isdnd is > > also necessary. > > I see this ocasionaly too. No ISDN connection is made in that case. > > Could you check your log file when this happens? I always got a "persistent > deactivation" after the last successfull dial-out and the first failing one. > Dial-ins keep working. I posted a log file a while ago but Dr. i4b never gave a diagnosis. :-) I have lots of these 'persisten deactivation in my log file. Since I'm not observing the problem at present I cannot find a section in the log file that might be related to such an erroneous behaviour. > > > Martin > -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Mar 10 4:29:10 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from hcshh.hcs.de (hcshh.hcs.de [194.123.40.1]) by hub.freebsd.org (Postfix) with SMTP id 2B81F37B9CD for ; Fri, 10 Mar 2000 04:29:06 -0800 (PST) (envelope-from hm@hcs.de) Received: from hcswork.hcs.de([192.76.124.5]) (1694 bytes) by hcshh.hcs.de via sendmail with P:smtp/R:inet_hosts/T:smtp (sender: ) id for ; Fri, 10 Mar 2000 13:29:03 +0100 (CET) (Smail-3.2.0.104 1998-Nov-20 #1 built 1998-Dec-11) Received: by hcswork.hcs.de (Postfix, from userid 200) id 976303FEB; Fri, 10 Mar 2000 13:29:00 +0100 (MET) Subject: Re: isp0 up and running but not working In-Reply-To: <20000310094945.A4532@gil.physik.rwth-aachen.de> from Christoph Kukulies at "Mar 10, 0 09:49:45 am" To: kuku@gilberto.physik.RWTH-Aachen.DE (Christoph Kukulies) Date: Fri, 10 Mar 2000 13:29:00 +0100 (MET) Cc: martin@rumolt.teuto.de, kuku@gilberto.physik.RWTH-Aachen.DE, ingolf@knuut.de, freebsd-isdn@FreeBSD.ORG Reply-To: hm@hcs.de Organization: HCS Hanseatischer Computerservice GmbH X-Mailer: ELM [version 2.4ME+ PL39 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 658 Message-Id: <20000310122900.976303FEB@hcswork.hcs.de> From: hm@hcs.de (Hellmuth Michaelis) Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From the keyboard of Christoph Kukulies: > I posted a log file a while ago but Dr. i4b never gave a diagnosis. :-) I thought it was obvious: Your rooms seem to be crowded with putzwomen! Go to the next pharmacy and get yourself some antiputzwomanizers. Another way to fix this might be to just install a cleanfrauconverter ... ;-) hellmuth -- Hellmuth Michaelis Tel +49 40 55 97 47-70 HCS Hanseatischer Computerservice GmbH Fax +49 40 55 97 47-77 Oldesloer Strasse 97-99 Mail hm [at] hcs.de D-22457 Hamburg WWW http://www.hcs.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Mar 10 7: 1:38 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from nets5.rz.rwth-aachen.de (nets5.rz.RWTH-Aachen.DE [137.226.144.13]) by hub.freebsd.org (Postfix) with ESMTP id 5D0B637BA0A for ; Fri, 10 Mar 2000 07:01:27 -0800 (PST) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: from campino.informatik.rwth-aachen.de (campino.Informatik.RWTH-Aachen.DE [137.226.116.240]) by nets5.rz.rwth-aachen.de (8.9.1a/8.9.1/10) with ESMTP id QAA14920 for ; Fri, 10 Mar 2000 16:01:22 +0100 (MET) Received: from gil.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by campino.informatik.rwth-aachen.de (8.9.1a/8.9.1/3) with ESMTP id QAA23695 for ; Fri, 10 Mar 2000 16:01:59 +0100 (MET) Received: (from kuku@localhost) by gil.physik.rwth-aachen.de (8.9.3/8.6.9) id QAA06985 for freebsd-isdn@freebsd.org; Fri, 10 Mar 2000 16:01:14 +0100 (CET) Date: Fri, 10 Mar 2000 16:01:14 +0100 (CET) From: Christoph Kukulies Message-Id: <200003101501.QAA06985@gil.physik.rwth-aachen.de> To: freebsd-isdn@freebsd.org Subject: isp0 dead - now I have an anamesis, Dr. i4b :-) Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In the recent vein of toggling isp0 down/up and isdnd restarting in case of a dead isdn link it happened to me a couple of minutes before. Here's the log: Mar 10 15:34:35 isdn-kukulies su: kuku to root on /dev/ttyp2 Mar 10 15:56:36 isdn-kukulies /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F7 Activated Mar 10 15:56:38 isdn-kukulies last message repeated 2 times Mar 10 15:56:38 isdn-kukulies /kernel: i4b-L2-i4b_mdl_error_ind: unit = 0, location = F_MF07 Mar 10 15:56:38 isdn-kukulies /kernel: i4b-L2-i4b_mdl_error_ind: error = MDL_ERR_F: peer initiated re-establishment - SABME Mar 10 15:56:39 isdn-kukulies /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F7 Activated Mar 10 15:56:39 isdn-kukulies /kernel: i4b-L2-i4b_mdl_error_ind: unit = 0, location = F_MF07 Mar 10 15:56:39 isdn-kukulies /kernel: i4b-L2-i4b_mdl_error_ind: error = MDL_ERR_F: peer initiated re-establishment - SABME Mar 10 15:56:40 isdn-kukulies /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F7 Activated Mar 10 15:56:40 isdn-kukulies /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F7 Activated Mar 10 15:56:40 isdn-kukulies /kernel: i4b-L2-i4b_mdl_error_ind: unit = 0, location = F_MF07 Mar 10 15:56:40 isdn-kukulies /kernel: i4b-L2-i4b_mdl_error_ind: error = MDL_ERR_F: peer initiated re-establishment - SABME Mar 10 15:56:41 isdn-kukulies /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F7 Activated Mar 10 15:56:41 isdn-kukulies /kernel: i4b-L2-i4b_mdl_error_ind: unit = 0, location = F_MF07 Mar 10 15:56:41 isdn-kukulies /kernel: i4b-L2-i4b_mdl_error_ind: error = MDL_ERR_F: peer initiated re-establishment - SABME Mar 10 15:56:42 isdn-kukulies /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F7 Activated Mar 10 15:56:42 isdn-kukulies /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F7 Activated Mar 10 15:56:42 isdn-kukulies /kernel: i4b-L2-i4b_mdl_error_ind: unit = 0, location = F_MF07 Mar 10 15:56:42 isdn-kukulies /kernel: i4b-L2-i4b_mdl_error_ind: error = MDL_ERR_F: peer initiated re-establishment - SABME Mar 10 15:56:43 isdn-kukulies /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F7 Activated Mar 10 15:56:43 isdn-kukulies /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F7 Activated Mar 10 15:56:43 isdn-kukulies /kernel: i4b-L2-i4b_mdl_error_ind: unit = 0, location = F_MF07 Mar 10 15:56:43 isdn-kukulies /kernel: i4b-L2-i4b_mdl_error_ind: error = MDL_ERR_F: peer initiated re-establishment - SABME Mar 10 15:56:44 isdn-kukulies /kernel: i4b: unit 0, removed TEI = 65 = 0x41 Mar 10 15:56:44 isdn-kukulies /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F7 Activated Mar 10 15:56:44 isdn-kukulies /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F7 Activated Mar 10 15:56:46 isdn-kukulies /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 10 15:56:46 isdn-kukulies /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F7 Activated Mar 10 15:56:46 isdn-kukulies /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 2 Mar 10 15:56:46 isdn-kukulies /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F7 Activated Mar 10 15:56:48 isdn-kukulies /kernel: i4b-L3-T303_timeout: SETUP not answered, cr = 1 Mar 10 15:56:48 isdn-kukulies /kernel: i4b-L3-next_l3state: FSM illegal state, state = ST_OW - Out Wait EST, event = EV_T303EXP - T303 timeout! Mar 10 15:56:48 isdn-kukulies /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 Mar 10 15:56:48 isdn-kukulies /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F7 Activated -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Mar 10 8:46:58 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from widukind.bi.teuto.net (widukind.bi.teuto.net [212.8.197.28]) by hub.freebsd.org (Postfix) with ESMTP id 62A0F37BA4C for ; Fri, 10 Mar 2000 08:46:30 -0800 (PST) (envelope-from martin@rumolt.teuto.de) Received: from rumolt.teuto.de (IDENT:root@rumolt.teuto.de [212.8.203.81]) by widukind.bi.teuto.net (8.9.3/8.9.3) with ESMTP id RAA20440; Fri, 10 Mar 2000 17:46:18 +0100 Received: (from martin@localhost) by rumolt.teuto.de (8.9.3/8.8.8) id RAA01767; Fri, 10 Mar 2000 17:07:27 +0100 (MET) From: Martin Husemann Message-Id: <200003101607.RAA01767@rumolt.teuto.de> Subject: Re: isp0 up and running but not working In-Reply-To: <20000310122900.976303FEB@hcswork.hcs.de> from Hellmuth Michaelis at "Mar 10, 2000 01:29:00 pm" To: hm@hcs.de Date: Fri, 10 Mar 2000 17:07:27 +0100 (MET) Cc: kuku@gilberto.physik.RWTH-Aachen.DE (Christoph Kukulies), ingolf@knuut.de, freebsd-isdn@FreeBSD.ORG Organization: Crusaders Catering Services Inc. ;-) 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-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Go to the next pharmacy and get yourself some antiputzwomanizers. Another > way to fix this might be to just install a cleanfrauconverter ... ;-) Did you say *CLEANING WOMAN* ?!?!? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Mar 10 8:57: 9 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from hcshh.hcs.de (hcshh.hcs.de [194.123.40.1]) by hub.freebsd.org (Postfix) with SMTP id D252737BB5A for ; Fri, 10 Mar 2000 08:57:03 -0800 (PST) (envelope-from hm@hcs.de) Received: from hcswork.hcs.de([192.76.124.5]) (1922 bytes) by hcshh.hcs.de via sendmail with P:smtp/R:inet_hosts/T:smtp (sender: ) id for ; Fri, 10 Mar 2000 17:57:02 +0100 (CET) (Smail-3.2.0.104 1998-Nov-20 #1 built 1998-Dec-11) Received: by hcswork.hcs.de (Postfix, from userid 200) id 8C99E36AB; Fri, 10 Mar 2000 17:57:01 +0100 (MET) Subject: Re: isp0 up and running but not working In-Reply-To: <200003101607.RAA01767@rumolt.teuto.de> from Martin Husemann at "Mar 10, 0 05:07:27 pm" To: martin@rumolt.teuto.de (Martin Husemann) Date: Fri, 10 Mar 2000 17:57:01 +0100 (MET) Cc: hm@hcs.de, kuku@gilberto.physik.RWTH-Aachen.DE, ingolf@knuut.de, freebsd-isdn@FreeBSD.ORG Reply-To: hm@hcs.de Organization: HCS Hanseatischer Computerservice GmbH X-Mailer: ELM [version 2.4ME+ PL39 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 914 Message-Id: <20000310165701.8C99E36AB@hcswork.hcs.de> From: hm@hcs.de (Hellmuth Michaelis) Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From the keyboard of Martin Husemann: > > Go to the next pharmacy and get yourself some antiputzwomanizers. Another > > way to fix this might be to just install a cleanfrauconverter ... ;-) > > Did you say *CLEANING WOMAN* ?!?!? The original thread was about Chris' cleaning woman pulling ISDN plugs every now and then. Several times. Or even more than that. He obviously lives in a cleaningwomen-infected environment - i4b does not seem to like that :-) Anyway, forget it, i'm just hallucinating a bit because i just slept too little the last days, my son gets his first tooth .... hellmuth -- Hellmuth Michaelis Tel +49 40 55 97 47-70 HCS Hanseatischer Computerservice GmbH Fax +49 40 55 97 47-77 Oldesloer Strasse 97-99 Mail hm [at] hcs.de D-22457 Hamburg WWW http://www.hcs.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Mar 10 15: 0:25 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from peedub.muc.de (peedub.muc.de [193.149.49.109]) by hub.freebsd.org (Postfix) with ESMTP id 751A837BF1B for ; Fri, 10 Mar 2000 15:00:18 -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 XAA01167; Fri, 10 Mar 2000 23:53:34 +0100 (CET) Message-Id: <200003102253.XAA01167@peedub.muc.de> X-Mailer: exmh version 2.1.0 09/18/1999 To: Christoph Kukulies Cc: Ingolf Koch , ISDN-List Subject: Re: isp0 up and running but not working Reply-To: Gary Jennejohn In-reply-to: Your message of "Fri, 10 Mar 2000 09:02:56 +0100." <20000310090256.C4202@gil.physik.rwth-aachen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 10 Mar 2000 23:53:34 +0100 From: Gary Jennejohn Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Christoph Kukulies writes: >Another strangeness, which may be related to that: > >When I start my 'ping -i20 ' to protect against >undesired shorthold the first ping doesn't get through. > >This happens also when using ssh/rlogin, which times out in the higher >layer. > >So to say, the way connections are made is kind of abnormal, >I always have to do a ping first or some other event that causes >a dialout before I can safely start ssh/rlogin. > yeah, this is normal for sPPP. The first few packets queued never get sent. I'm not sure why, but I think that if_spppsubr.c might be cleaning out its queues after the connection is established. That would explain the behavior. Have to look at the code in more detail. --- Gary Jennejohn / garyj@muc.de garyj@fkr.cpqcorp.net gj@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Mar 10 16: 0:31 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from peedub.muc.de (peedub.muc.de [193.149.49.109]) by hub.freebsd.org (Postfix) with ESMTP id 405FC37BB52 for ; Fri, 10 Mar 2000 16:00:28 -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 AAA01341; Sat, 11 Mar 2000 00:50:11 +0100 (CET) Message-Id: <200003102350.AAA01341@peedub.muc.de> X-Mailer: exmh version 2.1.0 09/18/1999 To: Christoph Kukulies Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: isp0 dead - now I have an anamesis, Dr. i4b :-) Reply-To: Gary Jennejohn In-reply-to: Your message of "Fri, 10 Mar 2000 16:01:14 +0100." <200003101501.QAA06985@gil.physik.rwth-aachen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 11 Mar 2000 00:50:11 +0100 From: Gary Jennejohn Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Christoph Kukulies writes: > >In the recent vein of toggling isp0 down/up and isdnd restarting >in case of a dead isdn link it happened to me a couple >of minutes before. Here's the log: > >Mar 10 15:34:35 isdn-kukulies su: kuku to root on /dev/ttyp2 >Mar 10 15:56:36 isdn-kukulies /kernel: i4b-L1-ph_data_req: No Space in TX FIFO >, state = F7 Activated >Mar 10 15:56:38 isdn-kukulies last message repeated 2 times >Mar 10 15:56:38 isdn-kukulies /kernel: i4b-L2-i4b_mdl_error_ind: unit = 0, loc >ation = F_MF07 >Mar 10 15:56:38 isdn-kukulies /kernel: i4b-L2-i4b_mdl_error_ind: error = MDL_E >RR_F: peer initiated re-establishment - SABME [snip] These are merely symptoms, not the cause. The problem is that, for some reason, no packets are going out on the D-channel (that's why the No Space... message is appearing, there's a pending packet which isn't going out on the wire for some reason). That's also why the peer started sending SABME packets. This bug appeared quite a long time ago and Hellmuth came up with a fix which seemed to work. At least, it disappeared on my system. Unfortunately, this trace is useless for tracking down the real source of the problem. WTF is an anamesis ? --- Gary Jennejohn / garyj@muc.de garyj@fkr.cpqcorp.net gj@freebsd.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Mar 10 21:33: 5 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from nets5.rz.rwth-aachen.de (nets5.rz.RWTH-Aachen.DE [137.226.144.13]) by hub.freebsd.org (Postfix) with ESMTP id 7ADC237B564 for ; Fri, 10 Mar 2000 21:33:02 -0800 (PST) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: from campino.informatik.rwth-aachen.de (campino.Informatik.RWTH-Aachen.DE [137.226.116.240]) by nets5.rz.rwth-aachen.de (8.9.1a/8.9.1/10) with ESMTP id GAA01486; Sat, 11 Mar 2000 06:33:00 +0100 (MET) Received: from gil.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by campino.informatik.rwth-aachen.de (8.9.1a/8.9.1/3) with ESMTP id GAA01717; Sat, 11 Mar 2000 06:33:49 +0100 (MET) Received: (from kuku@localhost) by gil.physik.rwth-aachen.de (8.9.3/8.6.9) id GAA15291; Sat, 11 Mar 2000 06:33:01 +0100 (CET) Date: Sat, 11 Mar 2000 06:33:01 +0100 From: Christoph Kukulies To: Gary Jennejohn Cc: Christoph Kukulies , freebsd-isdn@FreeBSD.ORG Subject: Re: isp0 dead - now I have an anamesis, Dr. i4b :-) Message-ID: <20000311063301.A15251@gil.physik.rwth-aachen.de> References: <200003101501.QAA06985@gil.physik.rwth-aachen.de> <200003102350.AAA01341@peedub.muc.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <200003102350.AAA01341@peedub.muc.de>; from garyj@peedub.muc.de on Sat, Mar 11, 2000 at 12:50:11AM +0100 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Mar 11, 2000 at 12:50:11AM +0100, Gary Jennejohn wrote: > Christoph Kukulies writes: > > > >In the recent vein of toggling isp0 down/up and isdnd restarting > >in case of a dead isdn link it happened to me a couple > >of minutes before. Here's the log: > > > >Mar 10 15:34:35 isdn-kukulies su: kuku to root on /dev/ttyp2 > >Mar 10 15:56:36 isdn-kukulies /kernel: i4b-L1-ph_data_req: No Space in TX FIFO > >, state = F7 Activated > >Mar 10 15:56:38 isdn-kukulies last message repeated 2 times > >Mar 10 15:56:38 isdn-kukulies /kernel: i4b-L2-i4b_mdl_error_ind: unit = 0, loc > >ation = F_MF07 > >Mar 10 15:56:38 isdn-kukulies /kernel: i4b-L2-i4b_mdl_error_ind: error = MDL_E > >RR_F: peer initiated re-establishment - SABME > [snip] > > These are merely symptoms, not the cause. The problem is that, for some > reason, no packets are going out on the D-channel (that's why the No > Space... message is appearing, there's a pending packet which isn't going > out on the wire for some reason). That's also why the peer started sending > SABME packets. > > This bug appeared quite a long time ago and Hellmuth came up with a > fix which seemed to work. At least, it disappeared on my system. > > Unfortunately, this trace is useless for tracking down the real source > of the problem. > > WTF is an anamesis ? Anamese = Krankengeschichte (mediz. Ausdruck) Ich hoffe, ich habe mich nicht vergallopiert und es stimmt. > > --- > Gary Jennejohn / garyj@muc.de garyj@fkr.cpqcorp.net gj@freebsd.org > -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Mar 10 22:52:49 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from nets5.rz.rwth-aachen.de (nets5.rz.RWTH-Aachen.DE [137.226.144.13]) by hub.freebsd.org (Postfix) with ESMTP id 9AF4137B6D2 for ; Fri, 10 Mar 2000 22:52:46 -0800 (PST) (envelope-from kuku@gilberto.physik.RWTH-Aachen.DE) Received: from campino.informatik.rwth-aachen.de (campino.Informatik.RWTH-Aachen.DE [137.226.116.240]) by nets5.rz.rwth-aachen.de (8.9.1a/8.9.1/10) with ESMTP id HAA05871; Sat, 11 Mar 2000 07:52:45 +0100 (MET) Received: from gil.physik.rwth-aachen.de (gilberto.physik.rwth-aachen.de [137.226.30.2]) by campino.informatik.rwth-aachen.de (8.9.1a/8.9.1/3) with ESMTP id HAA02294; Sat, 11 Mar 2000 07:53:32 +0100 (MET) Received: (from kuku@localhost) by gil.physik.rwth-aachen.de (8.9.3/8.6.9) id HAA15548; Sat, 11 Mar 2000 07:52:45 +0100 (CET) Date: Sat, 11 Mar 2000 07:52:45 +0100 From: Christoph Kukulies To: Christoph Kukulies Cc: Gary Jennejohn , freebsd-isdn@FreeBSD.ORG Subject: Re: isp0 dead - now I have an anamesis, Dr. i4b :-) Message-ID: <20000311075245.A15536@gil.physik.rwth-aachen.de> References: <200003101501.QAA06985@gil.physik.rwth-aachen.de> <200003102350.AAA01341@peedub.muc.de> <20000311063301.A15251@gil.physik.rwth-aachen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20000311063301.A15251@gil.physik.rwth-aachen.de>; from kuku@gilberto.physik.RWTH-Aachen.DE on Sat, Mar 11, 2000 at 06:33:01AM +0100 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Mar 11, 2000 at 06:33:01AM +0100, Christoph Kukulies wrote: > On Sat, Mar 11, 2000 at 12:50:11AM +0100, Gary Jennejohn wrote: > > Christoph Kukulies writes: > > > > > > > WTF is an anamesis ? > > Anamese = Krankengeschichte (mediz. Ausdruck) Anamnese = Krankengeschichte (mediz. Ausdruck) > > Ich hoffe, ich habe mich nicht vergallopiert und es stimmt. Fast :-) > > > > > --- > > Gary Jennejohn / garyj@muc.de garyj@fkr.cpqcorp.net gj@freebsd.org > > > -- > Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de > -- Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Mar 10 23:20:33 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from inga.augusta.de (inga.augusta.de [193.175.23.65]) by hub.freebsd.org (Postfix) with ESMTP id CA63737BA36 for ; Fri, 10 Mar 2000 23:20:15 -0800 (PST) (envelope-from estartu@starbox.augusta.de) Received: (from uucp@localhost) by inga.augusta.de (8.9.3/8.9.3) with UUCP id IAA29640 for freebsd-isdn@freebsd.org; Sat, 11 Mar 2000 08:20:11 +0100 (CET) Received: from wanderer.starbox.augusta.de (estartu@wanderer.starbox.augusta.de [192.168.71.2]) by sbgate.starbox.augusta.de (8.9.3/8.9.3) with ESMTP id IAA29008 for ; Sat, 11 Mar 2000 08:15:28 +0100 (CET) (envelope-from estartu@wanderer.starbox.augusta.de) Received: (from estartu@localhost) by wanderer.starbox.augusta.de (8.9.3/8.9.3) id IAA90595 for freebsd-isdn@freebsd.org; Sat, 11 Mar 2000 08:14:50 +0100 (CET) (envelope-from estartu) Date: Sat, 11 Mar 2000 08:14:50 +0100 From: Gerhard Schmidt To: freebsd-isdn@freebsd.org Subject: Dialup Problem Message-ID: <20000311081450.A90550@augusta.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="45Z9DzgjV8m4Oswq" X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --45Z9DzgjV8m4Oswq Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Hi,=20 I have a problem with i4b. I Have set up I4B to use with a FlatRate=20 Provider in Germany. Everythin worked fine for 2 or 3 dialins Than the=20 problem started.=20 11.03.2000 07:44:41 CHD 00080 I4BPPP rate 900 sec/unit (conf) 11.03.2000 07:44:41 CHD 00080 I4BPPP dialing out from xxxxx to yyyyyyyyy 11.03.2000 07:44:41 CHD 00080 I4BPPP outgoing call proceeding (ctl 0, ch 0) 11.03.2000 07:44:41 CHD 00080 I4BPPP outgoing call active (ctl 0, ch 0, isp= 0) 11.03.2000 07:44:41 CHD 00080 I4BPPP outgoing call disconnected (local) 11.03.2000 07:44:41 CHD 00080 I4BPPP cause 0: normal call clearing (I4B) 11.03.2000 07:44:41 CHD 00080 I4BPPP charging: 0 units, 0 seconds 11.03.2000 07:44:41 CHD 00080 I4BPPP accounting: in 92, out 92 (in 0, out 0) This repeates several times as long as Packets send to the interface.=20 I have turned on interace debuging.=20 This is a succesful dialup atempt Mar 10 14:37:34 sbgate /kernel: isp0: lcp close(initial) Mar 10 14:37:39 sbgate /kernel: isp0: lcp open(initial) Mar 10 14:37:39 sbgate /kernel: isp0: phase establish Mar 10 14:37:46 sbgate /kernel: isp0: Up event Mar 10 14:37:46 sbgate /kernel: isp0: lcp up(starting) Mar 10 14:37:46 sbgate /kernel: isp0: lcp output Mar 10 14:37:46 sbgate /kernel: isp0: lcp input(req-sent): Mar 10 14:37:46 sbgate /kernel: isp0: lcp parse opts: mru auth-proto 0x1= 3 [rej] send conf-rej Mar 10 14:37:46 sbgate /kernel: isp0: lcp output Mar 10 14:37:46 sbgate /kernel: isp0: lcp input(req-sent): Mar 10 14:37:46 sbgate /kernel: isp0: lcp input(ack-rcvd): Mar 10 14:37:46 sbgate /kernel: isp0: lcp parse opts: mru auth-proto=20 Mar 10 14:37:46 sbgate /kernel: isp0: lcp parse opt values: mru 1524 auth= -proto send conf-ack Mar 10 14:37:46 sbgate /kernel: isp0: lcp output Mar 10 14:37:46 sbgate /kernel: isp0: lcp tlu Mar 10 14:37:46 sbgate /kernel: isp0: phase authenticate Mar 10 14:37:46 sbgate /kernel: isp0: pap output Mar 10 14:37:46 sbgate /kernel: isp0: pap success Mar 10 14:37:46 sbgate /kernel: isp0: phase network Mar 10 14:37:46 sbgate /kernel: isp0: ipcp open(initial) Mar 10 14:37:46 sbgate /kernel: isp0: ipcp up(starting) Mar 10 14:37:46 sbgate /kernel: isp0: ipcp output Mar 10 14:37:46 sbgate /kernel: isp0: ipcp input(req-sent): Mar 10 14:37:46 sbgate /kernel: isp0: ipcp parse opts: compression [rej] = address send conf-rej Mar 10 14:37:47 sbgate /kernel: isp0: ipcp output Mar 10 14:37:47 sbgate /kernel: isp0: ipcp input(req-sent): Mar 10 14:37:47 sbgate /kernel: isp0: ipcp nak opts: address [wantaddr 62.= 157.20.156] [agree]=20 Mar 10 14:37:47 sbgate /kernel: isp0: ipcp output Mar 10 14:37:47 sbgate /kernel: isp0: ipcp input(req-sent): Mar 10 14:37:47 sbgate /kernel: isp0: ipcp parse opts: address=20 Mar 10 14:37:47 sbgate /kernel: isp0: ipcp parse opt values: address 193.1= 58.131.241 [not agreed] send conf-nak Mar 10 14:37:47 sbgate /kernel: isp0: ipcp output Mar 10 14:37:47 sbgate /kernel: isp0: ipcp input(req-sent): Mar 10 14:37:48 sbgate /kernel: isp0: ipcp input(ack-rcvd): Mar 10 14:37:48 sbgate /kernel: isp0: ipcp parse opts: address=20 Mar 10 14:37:48 sbgate /kernel: isp0: ipcp parse opt values: address 193.1= 58.131.245 [ack] send conf-ack Mar 10 14:37:48 sbgate /kernel: isp0: ipcp output Mar 10 14:37:48 sbgate /kernel: isp0: ipcp tlu Mar 10 14:52:41 sbgate /kernel: isp0: lcp down(opened) Mar 10 14:52:41 sbgate /kernel: isp0: phase terminate Mar 10 14:52:41 sbgate /kernel: isp0: ipcp down(opened) Mar 10 14:52:41 sbgate /kernel: isp0: ipcp close(starting) Mar 10 14:52:41 sbgate /kernel: isp0: Down event (carrier loss) Mar 10 14:52:41 sbgate /kernel: isp0: lcp close(starting) Mar 10 14:52:41 sbgate /kernel: isp0: phase dead And This is the log of a failed attempt.=20 Mar 11 07:44:41 sbgate /kernel: isp0: lcp open(initial) Mar 11 07:44:41 sbgate /kernel: isp0: phase establish Mar 11 07:44:41 sbgate /kernel: isp0: Up event Mar 11 07:44:41 sbgate /kernel: isp0: lcp up(starting) Mar 11 07:44:41 sbgate /kernel: isp0: lcp output Mar 11 07:44:41 sbgate /kernel: isp0: lcp input(req-sent): Mar 11 07:44:41 sbgate /kernel: isp0: lcp parse opts: mru auth-proto 0x1= 3 [rej] send conf-rej Mar 11 07:44:41 sbgate /kernel: isp0: lcp output Mar 11 07:44:41 sbgate /kernel: isp0: lcp input(req-sent): Mar 11 07:44:41 sbgate /kernel: isp0: lcp input(ack-rcvd): Mar 11 07:44:41 sbgate /kernel: isp0: lcp parse opts: mru auth-proto=20 Mar 11 07:44:41 sbgate /kernel: isp0: lcp parse opt values: mru 1524 auth= -proto send conf-ack Mar 11 07:44:41 sbgate /kernel: isp0: lcp output Mar 11 07:44:41 sbgate /kernel: isp0: lcp tlu Mar 11 07:44:41 sbgate /kernel: isp0: phase authenticate Mar 11 07:44:41 sbgate /kernel: isp0: pap output Mar 11 07:44:41 sbgate /kernel: isp0: pap success Mar 11 07:44:41 sbgate /kernel: isp0: phase network Mar 11 07:44:41 sbgate /kernel: isp0: ipcp open(stopped) Mar 11 07:44:41 sbgate /kernel: isp0: lcp close(opened) Mar 11 07:44:41 sbgate /kernel: isp0: phase terminate Mar 11 07:44:41 sbgate /kernel: isp0: lcp output Mar 11 07:44:41 sbgate /kernel: isp0: lcp input(closing): Mar 11 07:44:42 sbgate /kernel: isp0: phase dead Mar 11 07:44:42 sbgate /kernel: isp0: lcp down(closed) Mar 11 07:44:42 sbgate /kernel: isp0: Down event (carrier loss) The whole ipcp Part just missing.=20 When I reboot the system I works for one or two dialins an than the=20 same problem appeares again.=20 I use a Teles 16.3, here the kernel message at boot time=20 isic0 at 0xd80 irq 15 flags 0x3 on isa isic0: Teles S0/16.3 isic0: ISAC 2085 Version A1/A2 or 2086/2186 Version 1.1 (IOM-2) (Addr=3D0x9= 60) isic0: HSCX 82525 or 21525 Version 2.1 (AddrA=3D0x160, AddrB=3D0x560) I am using Freebsd 3-4 Stable=20 FreeBSD sbgate.starbox.augusta.de 3.4-STABLE FreeBSD 3.4-STABLE #0: Fri Mar= 10 12:00:49 CET 2000 root@sbgate.starbox.augusta.de:/usr/src/sys/compile/S= BGATE i386 I cvsuped last at 5 PM an Thursday (hoping the problem is fixed after=20 a make world. but its still there.=20 MfG Gerhard Schmidt -------------------------------------------------------------------------- Gerhard Schmidt | Nick : estartu IRC : Estartu | Fischbachweg 3 | | PGP Public Key 86856 Hiltenfingen | estartu@augusta.de | auf Anfrage/ Tel: 08232 77 36 4 | | on request=20 Fax: 08232 77 36 3 | |=20 --45Z9DzgjV8m4Oswq Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: PGPfreeware 5.0i for non-commercial use MessageID: g0qL3YqGSALXzA6TFW5n6P7jJ6+Xg1I2 iQCVAwUBOMnyaAzx22nOTJQRAQEx2gQAgvA/WEmXfqQ1kAaUk6xk4aNsDR1fhMcD 811gKQICRSb6/fnsisxhCSzWP77gioz2d+wtgh0olbfy/tgRZl1TUJhPYyE10D5n +b/grXhiB5IJe15aIR6597QYE1IcYUqaIwFpjTauxV+J3GhIjgG6bVSdWxJoH/eV 1cMDJ7kghPc= =H+ip -----END PGP SIGNATURE----- --45Z9DzgjV8m4Oswq-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sat Mar 11 1:17:38 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from aranea.de (dialin18.niederdorfelden.aranea.net [212.101.36.18]) by hub.freebsd.org (Postfix) with ESMTP id B406137B608 for ; Sat, 11 Mar 2000 01:17:34 -0800 (PST) (envelope-from Robert.Eckardt@aranea.de) Received: (from roberte@localhost) by aranea.de (8.9.3/8.9.3) id KAA03546 for isdn@freebsd.org; Sat, 11 Mar 2000 10:17:18 +0100 (CET) (envelope-from roberte) From: Robert Eckardt Message-Id: <200003110917.KAA03546@aranea.de> Subject: isdnd with PPP To: isdn@freebsd.org Date: Sat, 11 Mar 2000 10:17:18 +0100 (CET) X-Mailer: ELM [version 2.4ME+ PL61 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, it all started with that I wanted to call a call-back server mith M$ CBCP. I upgraded my FreeBSD-3.2 box from isdnd-00.80.00-beta to isdnd-00.90.00-beta and now found that my SyncPPP connection to a Zyxel ISDN router hangs in the negotiation phase. I.e. I call the Zyxel, it disconnects and calls me back after a few seconds. (ok) However, the log comes only to 'DBG F_MCAI: Connection active!' and isdntrace shows every second the same packet: -- NT->TE - unit:0 - frame:000006 - time:11.03 09:18:49.210435 - length:24 ----- B2:000 ff 03 c0 21 01 a3 00 14 01 04 05 f4 02 06 00 00 ...!............ B2:010 00 00 05 06 09 20 a7 a7 ..... .. Somehow I'm really missing this 'DBG isp1: switched to state 4'-message. Is there an option I can turn on or a patch? The other problem is that using user-ppp for the cbcp doesn't work either. ppp.log tells me everything is fine (dial, carrier, login, lcp), it sends some SendConfigReq, but never receives a reply. It's no wonder that it receives no reply, as isdnd never dials out! (isdntrace shows nothing) What is the correct way to debug the communication between ppp, the kernel (/dev/i4brbch0) and isdnd ? Thanks, Robert -- Dr. Robert Eckardt Robert.Eckardt@Robert-Eckardt.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sat Mar 11 3:40: 9 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from gnu.IN-Berlin.DE (gnu.in-berlin.de [192.109.42.4]) by hub.freebsd.org (Postfix) with ESMTP id EACB237B77C for ; Sat, 11 Mar 2000 03:40:06 -0800 (PST) (envelope-from dva.in-berlin.de!balu@hirsch.in-berlin.de) Received: from hirsch.in-berlin.de (root@hirsch.in-berlin.de [192.109.42.6]) by gnu.IN-Berlin.DE (8.9.3/8.9.3) with ESMTP id MAA03541 for ; Sat, 11 Mar 2000 12:40:05 +0100 (CET) (envelope-from dva.in-berlin.de!balu@hirsch.in-berlin.de) Received: by hirsch.in-berlin.de (Smail3.2) id ; Sat, 11 Mar 2000 12:39:59 +0100 (CET) Received: by dva.in-berlin.de (Postfix, from userid 200) id D74F510E00; Sat, 11 Mar 2000 12:38:05 +0100 (CET) Date: Sat, 11 Mar 2000 12:38:05 +0100 From: Boris Staeblow To: freebsd-isdn@freebsd.org Subject: unwanted dialouts with INET6 at bootup Message-ID: <20000311123805.A38769@dva.in-berlin.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Recently is switched to -current and bootup a kernel with INET6 enabled. I have to realise that i4b dial out all the isp-devices at the same time until I disabled INET6 in the kernel. 05.03.2000 21:51:34 DMN i4b isdn daemon started (pid = 113) 05.03.2000 21:51:36 CHD 00001 XXXXX rate 240 sec/unit (aocd, rate) 05.03.2000 21:51:36 CHD 00001 XXXXX dialing out from xxx to yyy 05.03.2000 21:51:36 CHD 00001 XXXXX outgoing call proceeding (ctl 0, ch 0) 05.03.2000 21:51:37 CHD 00002 YY rate 240 sec/unit (aocd, rate) 05.03.2000 21:51:37 CHD 00002 YY dialing out from xxx to zzz 05.03.2000 21:51:37 CHD 00002 YY outgoing call proceeding (ctl 0, ch 1) 05.03.2000 21:51:38 CHD 00002 YY outgoing call active (ctl 0, ch 1, isp0) 05.03.2000 21:51:38 DBG isp0: switched to state 3 05.03.2000 21:51:39 CHD 00001 XXXXX outgoing call active (ctl 0, ch 0, isp2) 05.03.2000 21:52:12 CHD 00001 XXXXX outgoing call disconnected (local) 05.03.2000 21:52:12 CHD 00001 XXXXX cause 0: normal call clearing (I4B) 05.03.2000 21:52:12 CHD 00001 XXXXX charging: 1 units, 33 seconds 05.03.2000 21:52:12 CHD 00001 XXXXX accounting: in 0, out 154 05.03.2000 21:55:33 CHD 00002 YY outgoing call disconnected (local) 05.03.2000 21:55:33 CHD 00002 YY cause 0: normal call clearing (I4B) 05.03.2000 21:55:33 CHD 00002 YY charging: 1 units, 235 seconds 05.03.2000 21:55:33 CHD 00002 YY accounting: in 152, out 132 As you can see above this occurs (only once!) shortly after isdnd is started. This should be somehow prevented. (I dindīt know INET6 much, but it seems to be a kind of broadcasting to all devices...?) Boris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sat Mar 11 6: 0: 5 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from elch.de.uu.net (elch.de.uu.net [192.76.144.55]) by hub.freebsd.org (Postfix) with ESMTP id 83A5B37BB66 for ; Sat, 11 Mar 2000 05:59:58 -0800 (PST) (envelope-from ingolf@knuut.de) Received: from local.net (pec-55-113.tnt2.b2.uunet.de [149.225.55.113]) by elch.de.uu.net (5.5.5/5.5.5) with ESMTP id OAA22109; Sat, 11 Mar 2000 14:57:31 +0100 (MET) Received: (from ingolf@localhost) by local.net (8.8.8/8.8.8) id OAA27488; Sat, 11 Mar 2000 14:59:37 +0100 (MET) Date: Sat, 11 Mar 2000 14:59:36 +0100 From: Ingolf Koch To: Boris Staeblow Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: unwanted dialouts with INET6 at bootup Message-ID: <20000311145936.A27484@maus.local.net> References: <20000311123805.A38769@dva.in-berlin.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0i In-Reply-To: <20000311123805.A38769@dva.in-berlin.de>; from balu@dva.in-berlin.de on Sat, Mar 11, 2000 at 12:38:05PM +0100 X-Faith: Jesus Christ Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Mar 11, 2000 at 12:38:05PM +0100, Boris Staeblow wrote: > Recently is switched to -current and bootup a kernel with > INET6 enabled. I have to realise that i4b dial out all > the isp-devices at the same time until I disabled INET6 in the kernel. Before you start isdnd, run tcpdump -i isp0 > /tmp/isp0.log & or so to see what causes the dialing. Ingolf -- Ingolf Koch ICQ#60829470 Beste Kneipe in Jena-Ost PGP: 0x7B3B5661 213C 828E 0C92 16B5 05D0 4D5B A324 EC04 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sat Mar 11 6:22:41 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from awfulhak.org (tun.AwfulHak.org [194.242.139.173]) by hub.freebsd.org (Postfix) with ESMTP id A911D37BB9C for ; Sat, 11 Mar 2000 06:22:38 -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 OAA17385; Sat, 11 Mar 2000 14:19:59 GMT (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id OAA10972; Sat, 11 Mar 2000 14:19:50 GMT (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200003111419.OAA10972@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: Robert Eckardt Cc: isdn@FreeBSD.ORG, brian@hak.lan.Awfulhak.org Subject: Re: isdnd with PPP In-Reply-To: Message from Robert Eckardt of "Sat, 11 Mar 2000 10:17:18 +0100." <200003110917.KAA03546@aranea.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 11 Mar 2000 14:19:50 +0000 From: Brian Somers Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Hello, [.....] > The other problem is that using user-ppp for the cbcp doesn't work either. > ppp.log tells me everything is fine (dial, carrier, login, lcp), it sends some > SendConfigReq, but never receives a reply. > It's no wonder that it receives no reply, as isdnd never dials out! > (isdntrace shows nothing) > > What is the correct way to debug the communication between ppp, the kernel > (/dev/i4brbch0) and isdnd ? Check your ppp log to ensure that ppp is i4b enabled - you should see a line in ppp.log identifying the i4b version number when the device is opened. If it is, you'll need to check the isdnd logs, if it isn't you'll need to rebuild ppp. > Thanks, > Robert > > -- > Dr. Robert Eckardt Robert.Eckardt@Robert-Eckardt.de -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sat Mar 11 6:25:26 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from hcshh.hcs.de (hcshh.hcs.de [194.123.40.1]) by hub.freebsd.org (Postfix) with SMTP id 01AA537BBE9 for ; Sat, 11 Mar 2000 06:25:24 -0800 (PST) (envelope-from hm@hcs.de) Received: from hcswork.hcs.de([192.76.124.5]) (1328 bytes) by hcshh.hcs.de via sendmail with P:smtp/R:inet_hosts/T:smtp (sender: ) id for ; Sat, 11 Mar 2000 15:25:23 +0100 (CET) (Smail-3.2.0.104 1998-Nov-20 #1 built 1998-Dec-11) Received: by hcswork.hcs.de (Postfix, from userid 200) id 7C2453FEB; Sat, 11 Mar 2000 15:25:22 +0100 (MET) Subject: Dealer for ASUSCOM ISDN cards ? To: freebsd-isdn@freebsd.org (ISDN Mailinglist) Date: Sat, 11 Mar 2000 15:25:22 +0100 (MET) Reply-To: hm@hcs.de Organization: HCS Hanseatischer Computerservice GmbH X-Mailer: ELM [version 2.4ME+ PL39 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Length: 618 Message-Id: <20000311142522.7C2453FEB@hcswork.hcs.de> From: hm@hcs.de (Hellmuth Michaelis) Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, i need one Asuscom PCI ISDN board (Winbond based) and one Asuscom PCI ISDN board (Cologne Chip Design based). Unfortunately neither Asuscom in Taiwan nor ASUS in Germany responds to my mail. Can someone point me to a distributor or dealer (preferably in Germany or at least in Europe) ? hellmuth -- Hellmuth Michaelis Tel +49 40 55 97 47-70 HCS Hanseatischer Computerservice GmbH Fax +49 40 55 97 47-77 Oldesloer Strasse 97-99 Mail hm [at] hcs.de D-22457 Hamburg WWW http://www.hcs.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sat Mar 11 6:55:32 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from mail.ppp.net (mail.ppp.net [194.64.12.35]) by hub.freebsd.org (Postfix) with ESMTP id DFC1A37BC32 for ; Sat, 11 Mar 2000 06:55:28 -0800 (PST) (envelope-from hm@kts.org) Received: from mailstore.ppp.net (pop3.ppp.net [212.18.80.90]) by mail.ppp.net (8.8.8/8.8.8) with ESMTP id PAA15662; Sat, 11 Mar 2000 15:55:24 +0100 Received: (from uucp@localhost) by mailstore.ppp.net (8.9.3/8.9.3/Debian/GNU) with UUCP id PAA29027; Sat, 11 Mar 2000 15:52:49 +0100 Received: from bert.kts.org (bert.kts.org [194.55.156.2]) by ernie.kts.org (Postfix) with ESMTP id 6654B52A55; Sat, 11 Mar 2000 15:52:45 +0100 (CET) Received: by bert.kts.org (Postfix, from userid 100) id C30911F1C; Sat, 11 Mar 2000 15:52:38 +0100 (CET) Subject: Re: unwanted dialouts with INET6 at bootup In-Reply-To: <20000311123805.A38769@dva.in-berlin.de> from Boris Staeblow at "Mar 11, 2000 12:38: 5 pm" To: balu@dva.in-berlin.de (Boris Staeblow) Date: Sat, 11 Mar 2000 15:52:38 +0100 (CET) Cc: freebsd-isdn@FreeBSD.ORG Organization: Kitchen Table Systems Reply-To: hm@kts.org X-Mailer: ELM [version 2.4ME+ PL43 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Message-Id: <20000311145238.C30911F1C@bert.kts.org> From: hm@kts.org (Hellmuth Michaelis) Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Boris Staeblow wrote: > Recently is switched to -current and bootup a kernel with > INET6 enabled. Disable INET6. In case you don't want to do this be prepared to do some serious amount of debugging in all parts of i4b. And please send me patches :-) hellmuth -- Hellmuth Michaelis hm@kts.org Hamburg, Europe We all live in a yellow subroutine, yellow subroutine, yellow subroutine ... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sat Mar 11 11: 7:10 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from aranea.de (dialin46.niederdorfelden.aranea.net [212.101.36.46]) by hub.freebsd.org (Postfix) with ESMTP id 39DB737BCED for ; Sat, 11 Mar 2000 11:07:05 -0800 (PST) (envelope-from Robert.Eckardt@aranea.de) Received: (from roberte@localhost) by aranea.de (8.9.3/8.9.3) id UAA00828; Sat, 11 Mar 2000 20:06:58 +0100 (CET) (envelope-from roberte) From: Robert Eckardt Message-Id: <200003111906.UAA00828@aranea.de> Subject: Re: isdnd with PPP In-Reply-To: <200003111419.OAA10972@hak.lan.Awfulhak.org> from Brian Somers at "Mar 11, 2000 02:19:50 pm" To: Brian Somers Date: Sat, 11 Mar 2000 20:06:58 +0100 (CET) Cc: Robert Eckardt , isdn@FreeBSD.ORG, brian@hak.lan.Awfulhak.org X-Mailer: ELM [version 2.4ME+ PL61 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org It was Brian Somers who wrote: > > Hello, > [.....] > Check your ppp log to ensure that ppp is i4b enabled - you should see > a line in ppp.log identifying the i4b version number when the device is > opened. > > If it is, you'll need to check the isdnd logs, if it isn't you'll > need to rebuild ppp. That was it. I had to rebuild ppp. (Of course, the Makefile said NOI4B=TRUE. :-) Now it connects, gets authenticated, ... but never called back. It seems that the other side has different opinions on how to proceed than ppp: Mar 11 19:50:51 ghost ppp[791]: tun0: LCP: deflink: RecvEchoReply(0) state = Opened Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: mbuf_Dequeue: queue len = 1 Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: link_Dequeue: Dequeued from queue 1, containing 0 more packets Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: deflink: DescriptorWrite: wrote 32(32) to 2 Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: deflink: DescriptorRead: read 8/2048 from 2 Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: proto_LayerPull: unknown -> 0xc223 Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: link_PullPacket: Despatch proto 0xc223 Mar 11 19:50:51 ghost ppp[791]: tun0: Phase: Chap Input: SUCCESS Mar 11 19:50:51 ghost ppp[791]: tun0: Phase: deflink: Shutdown and await peer callback Mar 11 19:50:51 ghost ppp[791]: tun0: LCP: deflink: LayerDown Mar 11 19:50:51 ghost ppp[791]: tun0: LCP: deflink: SendTerminateReq(3) state = Opened Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: fsm_Output Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: 05 03 00 04 .... Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: proto_LayerPush: Using 0xc021 Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: link_PushPacket: Transmit proto 0xc021 Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: mbuf_Enqueue: len = 1 Mar 11 19:50:51 ghost ppp[791]: tun0: LCP: deflink: State change Opened --> Closing Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: deflink: DescriptorRead: read 20/2048 from 2 Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: proto_LayerPull: unknown -> 0x8021 Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: link_PullPacket: Despatch proto 0x8021 Mar 11 19:50:51 ghost ppp[791]: tun0: IPCP: deflink: Error: Unexpected IPCP in phase Authenticate (ignored) Does the shutdown come too early? (directly after 'Chap Input: SUCCESS') Does the remote server want to continue to negotiate IP adresses? ('Unexpected IPCP in phase Authenticate') My ppp-entry reads: set log Phase Chat LCP IPCP CCP tun command debug cbcp set device /dev/i4brbch0 set phone REMOTENUMBER set dial set login set hangup set authname XXXXXXXX set authkey XXXXXXXX set callback cbcp auth e.164 MYNUMBER set cbcp MYNUMBER 7 set enddisc mac set speed sync enable lqr set lqrperiod 45 disable pred1 deflate deny pred1 deflate set timeout 60 600 set cd 10! set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 Thanks again, Robert -- Dr. Robert Eckardt Robert.Eckardt@Robert-Eckardt.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sat Mar 11 12: 7:36 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from awfulhak.org (tun.AwfulHak.org [194.242.139.173]) by hub.freebsd.org (Postfix) with ESMTP id 0ED3937BD30 for ; Sat, 11 Mar 2000 12:07:28 -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 UAA18079; Sat, 11 Mar 2000 20:06:27 GMT (envelope-from brian@hak.lan.Awfulhak.org) Received: from hak.lan.Awfulhak.org (brian@localhost [127.0.0.1]) by hak.lan.Awfulhak.org (8.9.3/8.9.3) with ESMTP id UAA12749; Sat, 11 Mar 2000 20:06:15 GMT (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200003112006.UAA12749@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: Robert Eckardt Cc: Brian Somers , isdn@FreeBSD.ORG, brian@hak.lan.Awfulhak.org, brian@hak.lan.Awfulhak.org Subject: Re: isdnd with PPP In-Reply-To: Message from Robert Eckardt of "Sat, 11 Mar 2000 20:06:58 +0100." <200003111906.UAA00828@aranea.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 11 Mar 2000 20:06:15 +0000 From: Brian Somers Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > It was Brian Somers who wrote: > > > Hello, > > [.....] > > Check your ppp log to ensure that ppp is i4b enabled - you should see > > a line in ppp.log identifying the i4b version number when the device is > > opened. > > > > If it is, you'll need to check the isdnd logs, if it isn't you'll > > need to rebuild ppp. > > That was it. I had to rebuild ppp. (Of course, the Makefile said NOI4B=TRUE. :-) > Now it connects, gets authenticated, ... but never called back. > > It seems that the other side has different opinions on how to proceed than ppp: > Mar 11 19:50:51 ghost ppp[791]: tun0: LCP: deflink: RecvEchoReply(0) state = Opened > Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: mbuf_Dequeue: queue len = 1 > Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: link_Dequeue: Dequeued from queue 1, containing 0 more packets > Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: deflink: DescriptorWrite: wrote 32(32) to 2 > Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: deflink: DescriptorRead: read 8/2048 from 2 > Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: proto_LayerPull: unknown -> 0xc223 > Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: link_PullPacket: Despatch proto 0xc223 > Mar 11 19:50:51 ghost ppp[791]: tun0: Phase: Chap Input: SUCCESS > Mar 11 19:50:51 ghost ppp[791]: tun0: Phase: deflink: Shutdown and await peer callback > Mar 11 19:50:51 ghost ppp[791]: tun0: LCP: deflink: LayerDown > Mar 11 19:50:51 ghost ppp[791]: tun0: LCP: deflink: SendTerminateReq(3) state = Opened > Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: fsm_Output > Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: 05 03 00 04 .... > Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: proto_LayerPush: Using 0xc021 > Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: link_PushPacket: Transmit proto 0xc021 > Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: mbuf_Enqueue: len = 1 > Mar 11 19:50:51 ghost ppp[791]: tun0: LCP: deflink: State change Opened --> Closing > Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: deflink: DescriptorRead: read 20/2048 from 2 > Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: proto_LayerPull: unknown -> 0x8021 > Mar 11 19:50:51 ghost ppp[791]: tun0: Debug: link_PullPacket: Despatch proto 0x8021 > Mar 11 19:50:51 ghost ppp[791]: tun0: IPCP: deflink: Error: Unexpected IPCP in phase Authenticate (ignored) > > Does the shutdown come too early? (directly after 'Chap Input: SUCCESS') > Does the remote server want to continue to negotiate IP adresses? ('Unexpected > IPCP in phase Authenticate') > > My ppp-entry reads: > set log Phase Chat LCP IPCP CCP tun command debug cbcp > set device /dev/i4brbch0 > set phone REMOTENUMBER > set dial > set login > set hangup > set authname XXXXXXXX > set authkey XXXXXXXX > set callback cbcp auth e.164 MYNUMBER > set cbcp MYNUMBER 7 > set enddisc mac > set speed sync > enable lqr > set lqrperiod 45 > disable pred1 deflate > deny pred1 deflate > set timeout 60 600 > set cd 10! > set ifaddr 10.0.0.1/0 10.0.0.2/0 255.255.255.0 0.0.0.0 It would be interesting to see the LCP conversation. I'll bet the peer agreed to use ``auth'' callback and then tried to play ``cbcp'' ! Changing the ``set callback'' to just ``cbcp'' may help. > Thanks again, > Robert > > > -- > Dr. Robert Eckardt Robert.Eckardt@Robert-Eckardt.de -- Brian Don't _EVER_ lose your sense of humour ! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sat Mar 11 15:35:29 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from gnu.IN-Berlin.DE (gnu.in-berlin.de [192.109.42.4]) by hub.freebsd.org (Postfix) with ESMTP id 8B28037BD2E for ; Sat, 11 Mar 2000 15:35:26 -0800 (PST) (envelope-from dva.in-berlin.de!balu@hirsch.in-berlin.de) Received: from hirsch.in-berlin.de (root@hirsch.in-berlin.de [192.109.42.6]) by gnu.IN-Berlin.DE (8.9.3/8.9.3) with ESMTP id AAA23650; Sun, 12 Mar 2000 00:35:21 +0100 (CET) (envelope-from dva.in-berlin.de!balu@hirsch.in-berlin.de) Received: by hirsch.in-berlin.de (Smail3.2) id ; Sun, 12 Mar 2000 00:35:20 +0100 (CET) Received: by dva.in-berlin.de (Postfix, from userid 200) id 192A010E00; Sun, 12 Mar 2000 00:35:03 +0100 (CET) Date: Sun, 12 Mar 2000 00:35:03 +0100 From: Boris Staeblow To: Hellmuth Michaelis Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: unwanted dialouts with INET6 at bootup Message-ID: <20000312003503.A60484@dva.in-berlin.de> References: <20000311123805.A38769@dva.in-berlin.de> <20000311145238.C30911F1C@bert.kts.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mutt 1.0.1i In-Reply-To: <20000311145238.C30911F1C@bert.kts.org>; from hm@kts.org on Sat, Mar 11, 2000 at 03:52:38PM +0100 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Mar 11, 2000 at 03:52:38PM +0100, Hellmuth Michaelis wrote: > > Recently is switched to -current and bootup a kernel with > > INET6 enabled. > > Disable INET6. In case you don't want to do this be prepared to do some > serious amount of debugging in all parts of i4b. And please send me > patches :-) This should be only a hint. I never planned to use INET6. However itīs an unhandsome behavior from i4b for the upcoming release. Boris To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message