From owner-freebsd-isdn Sun Sep 3 0:36:36 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from kauha.saunalahti.fi (kauha.saunalahti.fi [195.197.53.227]) by hub.freebsd.org (Postfix) with ESMTP id 0D77537B422 for ; Sun, 3 Sep 2000 00:36:33 -0700 (PDT) Received: from snafu.intra.net (cubical3.pp.saunalahti.fi [195.74.24.254]) by kauha.saunalahti.fi (8.10.1/8.10.1) with ESMTP id e837crJ00188 for ; Sun, 3 Sep 2000 10:38:53 +0300 (EEST) Received: from cubical.fi (junkyard.intra.net [192.168.2.2]) by snafu.intra.net (8.9.3/8.9.3) with ESMTP id KAA01016 for ; Sun, 3 Sep 2000 10:36:34 +0300 (EEST) (envelope-from jml@cubical.fi) Message-ID: <39B1FFD9.26336F1F@cubical.fi> Date: Sun, 03 Sep 2000 10:38:01 +0300 From: Juha-Matti Liukkonen Organization: Cubical Solutions Ltd X-Mailer: Mozilla 4.74 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-isdn@freebsd.org Subject: i4b 0.95 iwic driver Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, thanks, Hellmuth and all the others contributing to this new i4b release. The iwic driver in particular seems to work nicely... The following patch is required to make the driver recognize cards with vendor id 0xffffffff though, such as the Telewell el-cheapos (common in Finland): --- layer1-nb/iwic/i4b_iwic_pci.c.orig Fri Jun 2 14:58:56 2000 +++ layer1-nb/iwic/i4b_iwic_pci.c Sun Sep 3 10:25:43 2000 @@ -126,15 +126,15 @@ static struct winids { u_int32_t type; - int sv; - int sd; + u_int32_t sv; + u_int32_t sd; const char *desc; } win_ids[] = { - { 0x66921050, -1, -1, "Generic Winbond W6692 ISDN PCI (0x66921050)" }, - { 0x17020675, -1, -1, "ASUSCOM P-IN100-ST-D (Winbond W6692, 0x17020675)" }, - { 0x17030675, -1, -1, "ASUSCOM P-IN100-ST-D (Winbond W6692, 0x17030675)" }, - { 0x17070675, -1, -1, "ASUSCOM P-IN100-ST-D (Winbond W6692, 0x17070675)" }, - { 0x105e10cf, -1, -1, "ASUSCOM P-IN100-ST-D (Winbond W6692, 0x105e10cf)" }, + { 0x66921050, 0xffff, 0xffff, "Generic Winbond W6692 ISDN PCI (0x66921050)" }, + { 0x17020675, 0xffff, 0xffff, "ASUSCOM P-IN100-ST-D (Winbond W6692, 0x17020675)" }, + { 0x17030675, 0xffff, 0xffff, "ASUSCOM P-IN100-ST-D (Winbond W6692, 0x17030675)" }, + { 0x17070675, 0xffff, 0xffff, "ASUSCOM P-IN100-ST-D (Winbond W6692, 0x17070675)" }, + { 0x105e10cf, 0xffff, 0xffff, "ASUSCOM P-IN100-ST-D (Winbond W6692, 0x105e10cf)" }, { 0x06751043, 0x144F, 0x2000, "ASUSCOM P-IN100-ST-D (Winbond W6692, 0x06751043)" }, { 0x06751043, 0x144F, 0x1702, "ASUSCOM P-IN100-ST-D (Winbond W6692, 0x06751043)" }, { 0x06751043, 0x144F, 0x1707, "ASUSCOM P-IN100-ST-D (Winbond W6692, 0x06751043)" }, -- Juha-Matti Liukkonen, Cubical Solutions Ltd Phone: +358(0)405280142 Email: jml@cubical.fi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Sep 4 0:22: 7 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 ESMTP id 4FC7337B423 for ; Mon, 4 Sep 2000 00:22:04 -0700 (PDT) Received: from hcswork.hcs.de (hcswork.hcs.de [192.76.124.5]) by hcshh.hcs.de (Postfix) with ESMTP id E7C185D3E; Mon, 4 Sep 2000 09:22:01 +0200 (CEST) Received: by hcswork.hcs.de (Postfix, from userid 200) id B34D2482C; Mon, 4 Sep 2000 09:22:01 +0200 (METDST) Subject: Re: i4b 0.95 iwic driver In-Reply-To: <39B1FFD9.26336F1F@cubical.fi> from Juha-Matti Liukkonen at "Sep 3, 0 10:38:01 am" To: jml@cubical.fi (Juha-Matti Liukkonen) Date: Mon, 4 Sep 2000 09:22:01 +0200 (METDST) 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: 1649 Message-Id: <20000904072201.B34D2482C@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 Juha-Matti Liukkonen: > thanks, Hellmuth and all the others contributing to this new i4b > release. The iwic driver in particular seems to work nicely... The > following patch is required to make the driver recognize cards with > vendor id 0xffffffff though, such as the Telewell el-cheapos (common in > Finland): I knew i forgot something there ... :-) Would you please try this one instead: *** i4b_iwic_pci.c-OLD Mon Sep 4 09:18:48 2000 --- i4b_iwic_pci.c Mon Sep 4 09:17:50 2000 *************** *** 31,37 **** * * $FreeBSD$ * ! * last edit-date: [Mon Sep 4 09:21:57 2000] * *---------------------------------------------------------------------------*/ --- 31,37 ---- * * $FreeBSD$ * ! * last edit-date: [Mon Sep 4 09:17:50 2000] * *---------------------------------------------------------------------------*/ *************** *** 158,166 **** struct winids *wip = win_ids; ! while(wip->type && ! ((wip->type != type) || (wip->sv != sv) || (wip->sd != sd))) { ++wip; } --- 158,171 ---- struct winids *wip = win_ids; ! while(wip->type) { + if((wip->type == type) + { + if(((wip->sv == -1) && (wip->sd == -1)) || + ((wip->sv == sv) && (wip->sd == sd))) + break; + } ++wip; } 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 Mon Sep 4 0:50:56 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 ESMTP id 803C637B43C for ; Mon, 4 Sep 2000 00:50:54 -0700 (PDT) Received: from hcswork.hcs.de (hcswork.hcs.de [192.76.124.5]) by hcshh.hcs.de (Postfix) with ESMTP id 9A1BE5D13; Mon, 4 Sep 2000 09:50:52 +0200 (CEST) Received: by hcswork.hcs.de (Postfix, from userid 200) id 620E7482C; Mon, 4 Sep 2000 09:50:52 +0200 (METDST) Subject: Re: i4b 0.95 iwic driver In-Reply-To: <20000904072201.B34D2482C@hcswork.hcs.de> from Hellmuth Michaelis at "Sep 4, 0 09:22:01 am" To: hm@hcs.de Date: Mon, 4 Sep 2000 09:50:52 +0200 (METDST) Cc: jml@cubical.fi, 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: 482 Message-Id: <20000904075052.620E7482C@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 Hellmuth Michaelis: > + if((wip->type == type) ^ remove this Better compile before post ... :-( 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 Mon Sep 4 10:56:12 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from sykes.demon.co.uk (user32-166.jakinternet.co.uk [212.41.32.166]) by hub.freebsd.org (Postfix) with ESMTP id 6AB1837B424 for ; Mon, 4 Sep 2000 10:56:05 -0700 (PDT) Received: from martinh (martinh [192.168.2.6]) by sykes.demon.co.uk (8.7.6/v3.2) with SMTP id SAA27468 for ; Mon, 4 Sep 2000 18:55:52 +0100 Message-ID: <002b01c01699$5ea73e40$0602a8c0@melksham> From: "Martin Hillier" To: Subject: Auto multi link? Date: Mon, 4 Sep 2000 18:55:53 +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 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, The user ppp iam using does not bring up the second channel automatically, i can do this as a ddial connection and bring both up at once. but the auto link doesn't, any ideas. Martin.. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Sep 4 14:41:36 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from devil.intervisors.nl (office.intervisors.nl [194.109.13.117]) by hub.freebsd.org (Postfix) with ESMTP id 84F8037B422 for ; Mon, 4 Sep 2000 14:41:33 -0700 (PDT) Received: from roberts4.roberts.nl (roberts4.intranet.iv [192.168.0.8]) by devil.intervisors.nl (8.9.3/8.9.3) with ESMTP id XAA00302 for ; Mon, 4 Sep 2000 23:41:22 +0200 (CEST) (envelope-from luke@roberts.nl) Message-Id: <4.3.2.7.2.20000904233108.00b96db0@pop.roberts.nl> X-Sender: lar@pop.roberts.nl X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Mon, 04 Sep 2000 23:41:14 +0200 To: freebsd-isdn@FreeBSD.ORG From: Luke Roberts Subject: Unknown IE 39 error ? Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, As my cable internet provider is having problems today (duh....) I decided to reinstall i4b 0.83 (using sPPP) on my FreeBSD 3.2 stable box with Teles SO 16.3 non pnp card. The installation seemd to go pretty smooth and I'm using i4b right now. Unfortunatly I keep getting the following messages on my root console: i4b-L3-i4b_decode_q931_cs0_ie: Unkown IE 39 - 0x27 0x1 0xe8 Also when ISDN traffic get's heavy the whole machine can crash and start to reboot within 3 seconds. (The machine is very stable when used a s a cable router and had an uptime of over 200 days). Since I installed i4b it's crashed 3 times. Not Happy.... Anybody got a clue what I did wrong? I also Installed i4b 0.90 on the machine but this made no difference. I used my old i4b installation sequence: cd /usr/src mkdir i4b cd i4b tar xvzf i4b-00.82.00-beta-140799.tar.gz cd FreeBSD sh overuninstall.sh sh overinstall.sh cd .. make cleandir make depend make make install cd /sys/i386/conf config -r cd ../../compile/ make clean make depend make make install shutdown -r now Thanks, Luke To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Sep 4 15:31: 8 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 DEAEE37B43E for ; Mon, 4 Sep 2000 15:31:01 -0700 (PDT) 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 XAA78172; Mon, 4 Sep 2000 23:27:24 +0100 (BST) (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.11.0/8.11.0) with ESMTP id e84MR7X43155; Mon, 4 Sep 2000 23:27:07 +0100 (BST) (envelope-from brian@hak.lan.Awfulhak.org) Message-Id: <200009042227.e84MR7X43155@hak.lan.Awfulhak.org> X-Mailer: exmh version 2.1.1 10/15/1999 To: "Martin Hillier" Cc: freebsd-isdn@FreeBSD.ORG, brian@Awfulhak.org Subject: Re: Auto multi link? In-Reply-To: Message from "Martin Hillier" of "Mon, 04 Sep 2000 18:55:53 BST." <002b01c01699$5ea73e40$0602a8c0@melksham> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 04 Sep 2000 23:27:06 +0100 From: Brian Somers Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Hi, > > The user ppp iam using does not bring up the second channel automatically, i > can do this as a ddial connection and bring both up at once. but the auto > link doesn't, any ideas. Have you got the latest version ? Older versions didn't measure average bandwidth usage when talking to some ppp implementations, implementations that send PROTO_IP packets instead of PROTO_MP when there's only a single active link. You can tell if you've got the wrong version by doing a ``show links''. You'll see the average bandwidth is far less that the bandwidth of the only open link. Incidently, ppp(8) itself now does this.... > Martin.. -- 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 Mon Sep 4 23:51:15 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 ESMTP id 1940337B422 for ; Mon, 4 Sep 2000 23:51:09 -0700 (PDT) Received: from hcswork.hcs.de (hcswork.hcs.de [192.76.124.5]) by hcshh.hcs.de (Postfix) with ESMTP id 7C92E5D17; Tue, 5 Sep 2000 08:51:06 +0200 (CEST) Received: by hcswork.hcs.de (Postfix, from userid 200) id 21F841610; Tue, 5 Sep 2000 08:51:05 +0200 (METDST) Subject: Re: Unknown IE 39 error ? In-Reply-To: <4.3.2.7.2.20000904233108.00b96db0@pop.roberts.nl> from Luke Roberts at "Sep 4, 0 11:41:14 pm" To: luke@roberts.nl (Luke Roberts) Date: Tue, 5 Sep 2000 08:51:05 +0200 (METDST) 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: 1443 Message-Id: <20000905065105.21F841610@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 Luke Roberts: > As my cable internet provider is having problems today (duh....) I decided > to reinstall i4b 0.83 (using sPPP) on my FreeBSD 3.2 stable box with Teles > SO 16.3 non pnp card. > > The installation seemd to go pretty smooth and I'm using i4b right now. > Unfortunatly I keep getting the following messages on my root console: > > i4b-L3-i4b_decode_q931_cs0_ie: Unkown IE 39 - 0x27 0x1 0xe8 Its an IE i4b doesn't know about and its ignoring it (but its telling you that it ignores it). > Also when ISDN traffic get's heavy the whole machine can crash and start to > reboot within 3 seconds. If i were you and i _want_ to run i4b, i'd upgrade my machine to something in the FreeBSD 4.1-Stable range and put i4b 0.95 on it. In case the problem persists, i'd compile a kernel with DDB and then give the whole panic message and the stack backtrace from DDB. Possibly i'd raise the debug level with isdndebug to get a clue whats happening. Because i4b 0.90 makes no difference to i4b 0.83, i doubt that i4b is the cause of your problem, it looks like it is just the trigger. 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 Mon Sep 4 23:57:40 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from devil.intervisors.nl (office.intervisors.nl [194.109.13.117]) by hub.freebsd.org (Postfix) with ESMTP id 7CFED37B423 for ; Mon, 4 Sep 2000 23:57:37 -0700 (PDT) Received: from roberts4.roberts.nl (roberts4.intranet.iv [192.168.0.8]) by devil.intervisors.nl (8.9.3/8.9.3) with ESMTP id IAA01360; Tue, 5 Sep 2000 08:57:24 +0200 (CEST) (envelope-from luke@roberts.nl) Message-Id: <4.3.2.7.2.20000905085536.00ad5650@pop.roberts.nl> X-Sender: lar@pop.roberts.nl X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Tue, 05 Sep 2000 08:57:14 +0200 To: hm@hcs.de From: Luke Roberts Subject: Re: Unknown IE 39 error ? Cc: freebsd-isdn@FreeBSD.ORG In-Reply-To: <20000905065105.21F841610@hcswork.hcs.de> References: <4.3.2.7.2.20000904233108.00b96db0@pop.roberts.nl> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, >Its an IE i4b doesn't know about and its ignoring it (but its telling >you that it ignores it). Good to hear it's not i4b's problem. Maybe off topic but: What's an IE? > > Also when ISDN traffic get's heavy the whole machine can crash and > start to > > reboot within 3 seconds. > >If i were you and i _want_ to run i4b, i'd upgrade my machine to something >in the FreeBSD 4.1-Stable range and put i4b 0.95 on it. In case the problem >persists, i'd compile a kernel with DDB and then give the whole panic message >and the stack backtrace from DDB. Possibly i'd raise the debug level with >isdndebug to get a clue whats happening. I was planning to do this this weekend. Thanks, Luke To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Tue Sep 5 4:42:52 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from gatekeeper.radio-do.de (gatekeeper.Radio-do.de [193.101.164.1]) by hub.freebsd.org (Postfix) with ESMTP id 5876C37B422 for ; Tue, 5 Sep 2000 04:42:50 -0700 (PDT) Received: from trinity.radio-do.de (trinity.Radio-do.de [193.101.164.3]) by gatekeeper.radio-do.de (Postfix) with ESMTP id D0F9517627; Tue, 5 Sep 2000 13:42:44 +0200 (MET DST) Received: (from fn@localhost) by trinity.radio-do.de (8.11.0/8.9.3) id e85BgiA29374; Tue, 5 Sep 2000 13:42:44 +0200 (CEST) (envelope-from fn@gatekeeper.radio-do.de) Date: Tue, 5 Sep 2000 13:42:44 +0200 From: Frank Nobis To: Luke Roberts Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: Unknown IE 39 error ? Message-ID: <20000905134244.A28151@radio-do.de> References: <4.3.2.7.2.20000904233108.00b96db0@pop.roberts.nl> <20000905065105.21F841610@hcswork.hcs.de> <4.3.2.7.2.20000905085536.00ad5650@pop.roberts.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <4.3.2.7.2.20000905085536.00ad5650@pop.roberts.nl>; from luke@roberts.nl on Tue, Sep 05, 2000 at 08:57:14AM +0200 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Sep 05, 2000 at 08:57:14AM +0200, Luke Roberts wrote: > Hi, > > >Its an IE i4b doesn't know about and its ignoring it (but its telling > >you that it ignores it). > > Good to hear it's not i4b's problem. Maybe off topic but: What's an IE? IE stands for Information Element in this specific context. Something that is defined in the D-channel. regards, Frank Nobis -- ~/.signature not found: wellknown error 42 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Sep 6 2:20:58 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from mmb.sochi.ru (mmb.sochi.ru [195.133.105.219]) by hub.freebsd.org (Postfix) with ESMTP id C85F737B422 for ; Wed, 6 Sep 2000 02:20:54 -0700 (PDT) Received: from ntws (ntws.mmb.sochi.ru [10.24.242.133]) by mmb.sochi.ru (8.9.3/8.9.3) with SMTP id NAA50460 for ; Wed, 6 Sep 2000 13:20:24 +0400 (MSD) Received: by localhost with Microsoft MAPI; Wed, 6 Sep 2000 13:20:28 +0400 Message-ID: <01C01805.396AFD70.maxime@mmb.sochi.ru> From: Maxime Zakharov To: "'freebsd-isdn@freebsd.org'" Subject: strange message Date: Wed, 6 Sep 2000 13:20:27 +0400 Organization: Bank of Moscow, Sochi branch X-Mailer: Microsoft Internet E-mail/MAPI - 8.0.0.4211 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, FreeBSD 4.1-RELEASE + i4b-0.95 Some time I get follow message at console: i4b-L2 i4b_rxd_ack: ((N(R)-1)=35) != (UA=36) !!! What does it mean ? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Sep 6 2:39:58 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from itt.net.ua (gateway-01.itt.net.ua [212.113.39.14]) by hub.freebsd.org (Postfix) with ESMTP id 96AA037B422 for ; Wed, 6 Sep 2000 02:39:51 -0700 (PDT) Received: from localhost (serega@localhost) by itt.net.ua (8.10.0 <212.113.36.33>) with SMTP id e869dhM65182 for ; Wed, 6 Sep 2000 12:39:43 +0300 (EEST) Date: Wed, 6 Sep 2000 12:39:43 +0300 (EEST) From: "Serg N." Cc: "'freebsd-isdn@freebsd.org'" Subject: Re: strange message In-Reply-To: <01C01805.396AFD70.maxime@mmb.sochi.ru> 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, 6 Sep 2000, Maxime Zakharov wrote: > > Hi, > > FreeBSD 4.1-RELEASE + i4b-0.95 > FreeBSD 3.4-STABLE i4b-0.90 same messages > Some time I get follow message at console: > > i4b-L2 i4b_rxd_ack: ((N(R)-1)=35) != (UA=36) !!! > > What does it mean ? > ----------------------------- Serg Naydich http://www.itt.net.ua/~serega ICQ UIN# 70043251 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Sep 6 5:31:45 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 ESMTP id C956A37B423 for ; Wed, 6 Sep 2000 05:31:43 -0700 (PDT) Received: from hcswork.hcs.de (hcswork.hcs.de [192.76.124.5]) by hcshh.hcs.de (Postfix) with ESMTP id D2C965D13; Wed, 6 Sep 2000 14:31:43 +0200 (CEST) Received: by hcswork.hcs.de (Postfix, from userid 200) id D3DF81610; Wed, 6 Sep 2000 14:31:42 +0200 (METDST) Subject: Re: strange message In-Reply-To: <01C01805.396AFD70.maxime@mmb.sochi.ru> from Maxime Zakharov at "Sep 6, 0 01:20:27 pm" To: maxime@mmb.sochi.ru (Maxime Zakharov) Date: Wed, 6 Sep 2000 14:31:42 +0200 (METDST) 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: 564 Message-Id: <20000906123142.D3DF81610@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 Maxime Zakharov: > Some time I get follow message at console: > > i4b-L2 i4b_rxd_ack: ((N(R)-1)=35) != (UA=36) !!! A layer 2 error occured. These types of errors are automatically corrected by the layer 2 protocol. 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 Sep 6 8: 8: 7 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from ns.bsag.ch (ns.bsag.ch [195.246.88.210]) by hub.freebsd.org (Postfix) with ESMTP id E937437B42C for ; Wed, 6 Sep 2000 08:08:03 -0700 (PDT) Received: (from hpr@localhost) by ns.bsag.ch (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) id RAA19762 for freebsd-isdn@FreeBSD.ORG; Wed, 6 Sep 2000 17:08:00 +0200 Date: Wed, 6 Sep 2000 17:08:00 +0200 From: Hanspeter Roth Bsag To: freebsd-isdn@FreeBSD.ORG Subject: correct divice for AVM Fritz!Card PCI Message-ID: <20000906170800.A19555@bs11.bsag.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I'm trying to setup userland ppp on FreeBsd 4.1-R. I haven't yet applied i4b-00.95. In the 4.1-R LINT below AVM Fritz!Card PCI there is device isic which I thought is to be used for the Firtzcard. In dmesg it is listed: isic0: port 0xe000-0xe01f mem 0xe6800000-0xe680001f irq 12 at device 9.0 on pci0 isic0: ISAC 2085 Version A1/A2 or 2086/2186 Version 1.1 (IOM-2) In i4b-00.95/FreeBsd there is device ifpi0 below Fritzcard. Which one should I use if I haven't applied i4b-00.95 yet? Would there be a conflict specifying both devices isic and ifpi0? When trying to dial in ppp I get: ppp ON saturn> dial Debug: deflink: Opened /dev/i4brbch0 (i4b version 0.90.1) Warning: deflink: Carrier must be set, using ``set cd 6!'' Sep 6 16:27:50 saturn ppp[1438]: Warning: deflink: Carrier must be set, using ``set cd 6!'' Debug: deflink: Using i4b_Timeout [0x8077578] Debug: Waiting for carrier ppp ON saturn> Debug: deflink: /dev/i4brbch0: Still no carrier (1/6) Debug: Waiting for carrier Debug: deflink: /dev/i4brbch0: Still no carrier (2/6) [...] Debug: deflink: /dev/i4brbch0: Still no carrier (5/6) Debug: Waiting for carrier Debug: deflink: Close The Fritzcard did work already in an NT-box. Can I expect a solution by applying the 00.95 patch? -Hanspeter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Sep 6 9:28:57 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from bseis.eis.cs.tu-bs.de (bseis.eis.cs.tu-bs.de [134.169.33.1]) by hub.freebsd.org (Postfix) with ESMTP id 2102937B423 for ; Wed, 6 Sep 2000 09:28:55 -0700 (PDT) Received: from ultra1.eis.cs.tu-bs.de (ultra1.eis.cs.tu-bs.de [134.169.33.22]) by bseis.eis.cs.tu-bs.de (8.9.3+Sun/8.9.3) with ESMTP id SAA25720 for ; Wed, 6 Sep 2000 18:28:52 +0200 (MET DST) From: Juergen Hannken-Illjes Received: (from hannken@localhost) by ultra1.eis.cs.tu-bs.de (8.9.3+Sun/8.9.3) id SAA29048 for freebsd-isdn@freebsd.org; Wed, 6 Sep 2000 18:28:52 +0200 (MET DST) Message-Id: <200009061628.SAA29048@ultra1.eis.cs.tu-bs.de> Subject: What about this error? To: freebsd-isdn@freebsd.org Date: Wed, 6 Sep 2000 18:28:52 +0200 (MET DST) X-Mailer: ELM [version 2.5 PL2] 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 Running I4B 0.90 on NetBSD 1.4U I get once a month: 01:12 isdnd[252]: CHD XXXX TU.RZ rate 240 sec/unit (rate) 01:12 isdnd[252]: CHD XXXX TU.RZ dialing out from XXXX to XXXX 01:13 /netbsd: i4b-L2-i4b_T200_timeout: unit 0, RC = 0 01:16 /netbsd: i4b-L3-T303_timeout: SETUP not answered, cr = 34 01:16 /netbsd: i4b-L3-next_l3state: FSM illegal state, state = ST_OW - Out Wait EST, event = EV_T303EXP - T303 timeout! 01:26 /netbsd: i4b-L2-i4b_mph_status_ind: unit 0, persistent deactivation! 01:26 /netbsd: i4b-L3-i4b_mdl_status_ind: STI_PDEACT: unit 0 TEI = 0 = 0x00 01:26 isdnd[252]: CHD 00000 TU.RZ outgoing call disconnected (local) 01:26 isdnd[252]: CHD 00000 TU.RZ cause 7: layer 1 error / persistent deactivation (I4B) 01:26 isdnd[252]: ERR msg_pdeact_ind: set_channel_idle failed! 03:03 isdnd[252]: CHD XXXX TU.RZ rate 240 sec/unit (rate) 03:03 isdnd[252]: CHD XXXX TU.RZ dialing out from XXXX to XXXX 03:05 /netbsd: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 03:05 /netbsd: i4b: unit 0, assigned TEI = 64 = 0x40 03:06 isdnd[252]: CHD XXXX TU.RZ outgoing call proceeding (ctl 0, ch 0) -- Juergen Hannken-Illjes - hannken@eis.cs.tu-bs.de - TU Braunschweig (Germany) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Sep 6 9:33:43 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 ESMTP id B14F637B423 for ; Wed, 6 Sep 2000 09:33:40 -0700 (PDT) Received: from hcswork.hcs.de (hcswork.hcs.de [192.76.124.5]) by hcshh.hcs.de (Postfix) with ESMTP id 7786E5D13; Wed, 6 Sep 2000 18:33:39 +0200 (CEST) Received: by hcswork.hcs.de (Postfix, from userid 200) id 06CB7482C; Wed, 6 Sep 2000 18:33:38 +0200 (METDST) Subject: Re: correct divice for AVM Fritz!Card PCI In-Reply-To: <20000906170800.A19555@bs11.bsag.ch> from Hanspeter Roth Bsag at "Sep 6, 0 05:08:00 pm" To: roth@bsag.ch (Hanspeter Roth Bsag) Date: Wed, 6 Sep 2000 18:33:38 +0200 (METDST) 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: 1376 Message-Id: <20000906163338.06CB7482C@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 Hanspeter Roth Bsag: > I'm trying to setup userland ppp on FreeBsd 4.1-R. > I haven't yet applied i4b-00.95. > In the 4.1-R LINT below AVM Fritz!Card PCI there is device isic > which I thought is to be used for the Firtzcard. > In dmesg it is listed: > > isic0: port 0xe000-0xe01f mem 0xe6800000-0xe680001f irq 12 > at device 9.0 on pci0 > isic0: ISAC 2085 Version A1/A2 or 2086/2186 Version 1.1 (IOM-2) > > In i4b-00.95/FreeBsd there is device ifpi0 below Fritzcard. > > Which one should I use if I haven't applied i4b-00.95 yet? For i4b < 0.95 it is isic0 > Would there be a conflict specifying both devices isic and ifpi0? If you don't run 0.95 and specify ifpi0, you'll get an error. > When trying to dial in ppp I get: > > ppp ON saturn> dial > Debug: deflink: Opened /dev/i4brbch0 (i4b version 0.90.1) > Warning: deflink: Carrier must be set, using ``set cd 6!'' What does the isdnd say ? > Can I expect a solution by applying the 00.95 patch? No, the Fritz PCI should run well with 4.1-R. 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 Sep 6 10: 7: 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 ESMTP id CC16B37B43E for ; Wed, 6 Sep 2000 10:07:06 -0700 (PDT) Received: from hcswork.hcs.de (hcswork.hcs.de [192.76.124.5]) by hcshh.hcs.de (Postfix) with ESMTP id D13AB5D3B; Wed, 6 Sep 2000 19:07:05 +0200 (CEST) Received: by hcswork.hcs.de (Postfix, from userid 200) id 90DD6482C; Wed, 6 Sep 2000 19:07:05 +0200 (METDST) Subject: Re: What about this error? In-Reply-To: <200009061628.SAA29048@ultra1.eis.cs.tu-bs.de> from Juergen Hannken-Illjes at "Sep 6, 0 06:28:52 pm" To: hannken@eis.cs.tu-bs.de (Juergen Hannken-Illjes) Date: Wed, 6 Sep 2000 19:07:05 +0200 (METDST) 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: 556 Message-Id: <20000906170705.90DD6482C@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 Juergen Hannken-Illjes: > Running I4B 0.90 on NetBSD 1.4U I get once a month: > 01:26 isdnd[252]: CHD 00000 TU.RZ cause 7: layer 1 error / persistent deactivation (I4B) As it says: layer 1 was deactivated. 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 Sep 6 10:36:13 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from ns.bsag.ch (ns.bsag.ch [195.246.88.210]) by hub.freebsd.org (Postfix) with ESMTP id 40DF637B422 for ; Wed, 6 Sep 2000 10:36:11 -0700 (PDT) Received: (from hpr@localhost) by ns.bsag.ch (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) id TAA21723; Wed, 6 Sep 2000 19:36:07 +0200 Date: Wed, 6 Sep 2000 19:36:07 +0200 From: Hanspeter Roth Bsag To: Hellmuth Michaelis Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: correct divice for AVM Fritz!Card PCI Message-ID: <20000906193607.A19775@bs11.bsag.ch> References: <20000906170800.A19555@bs11.bsag.ch> <20000906163338.06CB7482C@hcswork.hcs.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000906163338.06CB7482C@hcswork.hcs.de>; from hm@hcs.de on Wed, Sep 06, 2000 at 06:33:38PM +0200 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Sep 06, 2000 at 06:33:38PM +0200, Hellmuth Michaelis wrote: > >From the keyboard of Hanspeter Roth Bsag: > > > Would there be a conflict specifying both devices isic and ifpi0? > > If you don't run 0.95 and specify ifpi0, you'll get an error. Ok. Meanwhile I've installed 0.95. I've set the device to ifpi0. > > > When trying to dial in ppp I get: > > > > ppp ON saturn> dial > > Debug: deflink: Opened /dev/i4brbch0 (i4b version 0.90.1) > > Warning: deflink: Carrier must be set, using ``set cd 6!'' > > What does the isdnd say ? Sorry I din't realize isdnd has to be run. It told something about timing. Now I invoked it like this: isdnd -f -d 0x7fb And when attempting to dial by ppp all isdnd tells is: ----- isdn controller channel state ------------- isdnd 00.95.0 [pid 905] ------ c tei b remote iface dir outbytes obps inbytes ibps units 0 --- 1 L12 2 ----- isdn userland interface state -------------------------------------------- rbch0 ----- isdnd logfile display ---------------------------------------------------- 06.09.2000 19:22:31 DMN i4b isdn daemon started (pid = 905) Sep 6 19:22:31 saturn isdnd[905]: DMN i4b isdn daemon started (pid = 905) Ppp still doesn't get the carrier... -Hanspeter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Thu Sep 7 5:12:32 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from ns.bsag.ch (ns.bsag.ch [195.246.88.210]) by hub.freebsd.org (Postfix) with ESMTP id F3B6537B422 for ; Thu, 7 Sep 2000 05:12:29 -0700 (PDT) Received: (from hpr@localhost) by ns.bsag.ch (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) id OAA32586 for freebsd-isdn@FreeBSD.ORG; Thu, 7 Sep 2000 14:12:26 +0200 Date: Thu, 7 Sep 2000 14:12:26 +0200 From: Hanspeter Roth Bsag To: freebsd-isdn@FreeBSD.ORG Subject: configuring Ppp Message-ID: <20000907141226.A32313@bs11.bsag.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I'm trying to setup PPP over ISDN. So far I've tried userland PPP. I think ppp and isdnd should work together if ppp.conf has `set device /dev/i4brbch0 /dev/i4brbch1' and isdnd.rc has `usrdevicename = rbch' and `usrdeviceunit = 0'. But I ppp won't dial because he gets no carrier. (Isdnd reports incoming calls that are destined for the Cisco which is on the same S-bus.) Do I have to decide which PPP (synchronous or userland) I use already before building the kernel? If I enable both pseudo-device sppp and pseudo-device ppp will there be a runtime conflict? Is synchronous or userland PPP just a matter of implementation or is it also reflected to the remote ISDN device? -Hanspeter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Sep 8 0:49:24 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from ns1.eds.ch (ns1.eds.ch [194.235.48.8]) by hub.freebsd.org (Postfix) with ESMTP id 4F5D537B422 for ; Fri, 8 Sep 2000 00:49:20 -0700 (PDT) Received: from onyx.eds.ch (onyx.eds.ch [206.122.128.224]) by ns1.eds.ch (8.9.3/8.9.3) with ESMTP id JAA07712 for ; Fri, 8 Sep 2000 09:58:28 +0200 (MET DST) Received: from mailsrv.eds.ch (mailsrv.eds.ch [206.122.128.226]) by onyx.eds.ch (8.9.3/8.9.3) with ESMTP id JAA16166 for ; Fri, 8 Sep 2000 09:53:21 +0200 (MET DST) Received: from agie.ch ([198.132.159.194]) by mailsrv.eds.ch (Netscape Messaging Server 3.6) with ESMTP id AAA2834; Fri, 8 Sep 2000 09:45:52 +0200 Message-ID: <39B8A7E2.2DA778B6@agie.ch> Date: Fri, 08 Sep 2000 09:48:34 +0100 From: "Roberto Nunnari, AGIE" Organization: AGIE X-Mailer: Mozilla 4.7 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: Hanspeter Roth Bsag Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: configuring Ppp References: <20000907141226.A32313@bs11.bsag.ch> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Hanspeter. I had a similar problem... It turned out it was my fault. I missconfigured isdnd.rc with a wrong unit number. Regards. -- Roberto Nunnari -software engineer- mailto:roberto.nunnari@agie.ch AGIE - http://www.agie.com Via dei pioppi 16 tel: +41-91-8069138 6616 Losone """ Switzerland (o o) =======================oOO==(_)==OOo======================== MY OPNIONS ARE NOT NECESSARELY THOSE OF MY EMPLOYER To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Sep 8 2:15:37 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from ns.bsag.ch (ns.bsag.ch [195.246.88.210]) by hub.freebsd.org (Postfix) with ESMTP id 7BCA937B422 for ; Fri, 8 Sep 2000 02:15:35 -0700 (PDT) Received: (from hpr@localhost) by ns.bsag.ch (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) id LAA11600; Fri, 8 Sep 2000 11:15:30 +0200 Date: Fri, 8 Sep 2000 11:15:30 +0200 From: Hanspeter Roth Bsag To: "Roberto Nunnari, AGIE" Cc: Hanspeter Roth Bsag , freebsd-isdn@FreeBSD.ORG Subject: Re: configuring Ppp Message-ID: <20000908111530.A11401@bs11.bsag.ch> References: <20000907141226.A32313@bs11.bsag.ch> <39B8A7E2.2DA778B6@agie.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <39B8A7E2.2DA778B6@agie.ch>; from roberto.Nunnari@agie.ch on Fri, Sep 08, 2000 at 09:48:34AM +0100 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Sep 08, 2000 at 09:48:34AM +0100, Roberto Nunnari, AGIE wrote: > Hi Hanspeter. > > I had a similar problem... It turned out it was my fault. > I missconfigured isdnd.rc with a wrong unit number. Which unit number do you mean? The `userdeviceunit'? (Now I'm experimenting with synchronous PPP.) I had set to 0 and the userdeivcename was `rbch'. If ppp.conf has `set device /dev/i4brbch0 /dev/i4brbch1' this should match souldn't it? Or don't they have something to do with each other? Interestinly with synchronous PPP I'm able to connect to my own Cisco. (Unfortunately I can't connect to the Shiva i ought to.) -Hanspeter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Sep 8 2:57:34 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from smtp2.jakinternet.co.uk (proxy.jakinternet.co.uk [212.41.43.4]) by hub.freebsd.org (Postfix) with ESMTP id 782EB37B422 for ; Fri, 8 Sep 2000 02:57:32 -0700 (PDT) Received: from smtp.jakinternet.co.uk (smtp.jakinternet.co.uk [212.41.41.61]) by smtp2.jakinternet.co.uk (Postfix) with SMTP id 4565EA7809 for ; Fri, 8 Sep 2000 10:53:04 +0100 (BST) Received: from sykes.demon.co.uk ([212.41.38.1]) by smtp.jakinternet.co.uk ; Fri, 08 Sep 2000 10:56:04 -0100 Received: from martinh (martinh [192.168.2.6]) by sykes.demon.co.uk (8.7.6/v3.2) with SMTP id KAA22918 for ; Fri, 8 Sep 2000 10:57:27 +0100 Message-ID: <011c01c0197b$32016d40$0602a8c0@melksham> From: "Martin Hillier" To: Subject: isdnd in fullscreen Date: Fri, 8 Sep 2000 10:57:27 +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 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, isdnd is all setup in rc.conf for fullscreen mode on ttyv4 It comes up on ttyv4 but never gets updated when you look at it. Any ideas? freebsd 4.1-RELEASE isdnd 00.90.1 Martin. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Sep 8 3:12:52 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from ns.bsag.ch (ns.bsag.ch [195.246.88.210]) by hub.freebsd.org (Postfix) with ESMTP id AF74937B42C for ; Fri, 8 Sep 2000 03:12:50 -0700 (PDT) Received: (from hpr@localhost) by ns.bsag.ch (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) id MAA12226 for freebsd-isdn@FreeBSD.ORG; Fri, 8 Sep 2000 12:12:47 +0200 Date: Fri, 8 Sep 2000 12:12:47 +0200 From: Hanspeter Roth Bsag To: freebsd-isdn@FreeBSD.ORG Subject: switch-type? Message-ID: <20000908121246.A11864@bs11.bsag.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, on a Cisco-Isdn-router one can set a global parameter `switch-type'. It can be set to basic-1tr6, basic-net3, ... Is this an issue in I4B? Can it be set? How? Or is it hardcoded? -Hanspeter -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Sep 8 5:12:37 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from ns1.eds.ch (ns1.eds.ch [194.235.48.8]) by hub.freebsd.org (Postfix) with ESMTP id 0AECC37B422 for ; Fri, 8 Sep 2000 05:12:34 -0700 (PDT) Received: from onyx.eds.ch (onyx.eds.ch [206.122.128.224]) by ns1.eds.ch (8.9.3/8.9.3) with ESMTP id OAA13681 for ; Fri, 8 Sep 2000 14:21:40 +0200 (MET DST) Received: from mailsrv.eds.ch (mailsrv.eds.ch [206.122.128.226]) by onyx.eds.ch (8.9.3/8.9.3) with ESMTP id OAA14403 for ; Fri, 8 Sep 2000 14:08:41 +0200 (MET DST) Received: from agie.ch ([198.132.159.194]) by mailsrv.eds.ch (Netscape Messaging Server 3.6) with ESMTP id AAA4D12; Fri, 8 Sep 2000 14:01:13 +0200 Message-ID: <39B8E3B4.D453471A@agie.ch> Date: Fri, 08 Sep 2000 14:03:48 +0100 From: "Roberto Nunnari, AGIE" Organization: AGIE X-Mailer: Mozilla 4.7 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: Hanspeter Roth Bsag Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: configuring Ppp References: <20000907141226.A32313@bs11.bsag.ch> <39B8A7E2.2DA778B6@agie.ch> <20000908111530.A11401@bs11.bsag.ch> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi. Hanspeter Roth Bsag wrote: > > On Fri, Sep 08, 2000 at 09:48:34AM +0100, Roberto Nunnari, AGIE wrote: > > Hi Hanspeter. > > > > I had a similar problem... It turned out it was my fault. > > I missconfigured isdnd.rc with a wrong unit number. > > Which unit number do you mean? The `userdeviceunit'? > Yes, but reading again your first post, I see you already set that to 0, which should be OK. So maybe, you should set ppp to a longer carrier detect time. > (Now I'm experimenting with synchronous PPP.) > I had set to 0 and the userdeivcename was `rbch'. > If ppp.conf has `set device /dev/i4brbch0 /dev/i4brbch1' this > should match souldn't it? Yes. That should do. But if I recall correctly, sppp can use only one B channel at a time. For doing multilink you want ppp. If you use only one channel, the /dev/i4brbch1 is useless. Also, if you have `set device /dev/i4brbch0 /dev/i4brbch1' you should add a second entry in isdnd.rc with `userdeviceunit=1' Maybe that's the cause 'no carrier' error you have! Then, to enable multilink ppp you should then add something like: set mrru 1500 clone 1,2,3 link deflink remove link * set mode auto in your ppp.conf > Or don't they have something to do with each other? > > Interestinly with synchronous PPP I'm able to connect to my own > Cisco. (Unfortunately I can't connect to the Shiva i ought to.) > > -Hanspeter regards. -- Roberto Nunnari -software engineer- mailto:roberto.nunnari@agie.ch AGIE - http://www.agie.com Via dei pioppi 16 tel: +41-91-8069138 6616 Losone """ Switzerland (o o) =======================oOO==(_)==OOo======================== MY OPNIONS ARE NOT NECESSARELY THOSE OF MY EMPLOYER To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Sep 8 5:35:42 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 ESMTP id 3D86237B423 for ; Fri, 8 Sep 2000 05:35:40 -0700 (PDT) Received: from hcswork.hcs.de (hcswork.hcs.de [192.76.124.5]) by hcshh.hcs.de (Postfix) with ESMTP id CD2FB5D9D; Fri, 8 Sep 2000 14:35:37 +0200 (CEST) Received: by hcswork.hcs.de (Postfix, from userid 200) id 42689482C; Fri, 8 Sep 2000 14:35:37 +0200 (METDST) Subject: Re: switch-type? In-Reply-To: <20000908121246.A11864@bs11.bsag.ch> from Hanspeter Roth Bsag at "Sep 8, 0 12:12:47 pm" To: roth@bsag.ch (Hanspeter Roth Bsag) Date: Fri, 8 Sep 2000 14:35:36 +0200 (METDST) 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: 640 Message-Id: <20000908123537.42689482C@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 Hanspeter Roth Bsag: > on a Cisco-Isdn-router one can set a global parameter `switch-type'. > It can be set to basic-1tr6, basic-net3, ... > Is this an issue in I4B? Can it be set? How? No, no. > Or is it hardcoded? The only protocol supported up to now by i4b is DSS1. This is basic-net3. 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 Sep 8 6: 4:29 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from ns.bsag.ch (ns.bsag.ch [195.246.88.210]) by hub.freebsd.org (Postfix) with ESMTP id D2C8337B424 for ; Fri, 8 Sep 2000 06:04:25 -0700 (PDT) Received: (from hpr@localhost) by ns.bsag.ch (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) id PAA14215; Fri, 8 Sep 2000 15:04:21 +0200 Date: Fri, 8 Sep 2000 15:04:21 +0200 From: Hanspeter Roth Bsag To: "Roberto Nunnari, AGIE" Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: configuring Ppp Message-ID: <20000908150421.B13663@bs11.bsag.ch> References: <20000907141226.A32313@bs11.bsag.ch> <39B8A7E2.2DA778B6@agie.ch> <20000908111530.A11401@bs11.bsag.ch> <39B8E3B4.D453471A@agie.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <39B8E3B4.D453471A@agie.ch>; from roberto.Nunnari@agie.ch on Fri, Sep 08, 2000 at 02:03:48PM +0100 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Sep 08, 2000 at 02:03:48PM +0100, Roberto Nunnari, AGIE wrote: > Hi. > > Hanspeter Roth Bsag wrote: > > > > On Fri, Sep 08, 2000 at 09:48:34AM +0100, Roberto Nunnari, AGIE wrote: > > > Hi Hanspeter. > > > > > > I had a similar problem... It turned out it was my fault. > > > I missconfigured isdnd.rc with a wrong unit number. > > > > Which unit number do you mean? The `userdeviceunit'? > > > > Yes, but reading again your first post, I see you already set > that to 0, which should be OK. > > So maybe, you should set ppp to a longer carrier detect time. > > > (Now I'm experimenting with synchronous PPP.) > > I had set to 0 and the userdeivcename was `rbch'. > > If ppp.conf has `set device /dev/i4brbch0 /dev/i4brbch1' this > > should match souldn't it? > > Yes. That should do. But if I recall correctly, sppp can use > only one B channel at a time. For doing multilink you want ppp. > If you use only one channel, the /dev/i4brbch1 is useless. > Also, if you have `set device /dev/i4brbch0 /dev/i4brbch1' > you should add a second entry in isdnd.rc with `userdeviceunit=1' > > Maybe that's the cause 'no carrier' error you have! > > Then, to enable multilink ppp you should then add something like: > set mrru 1500 > clone 1,2,3 > link deflink remove > link * set mode auto > > in your ppp.conf Ok. I've setup isdnd.rc and ppp.conf as you sujested. I just ran ppp in -interactive mode and dialed mannually. The carrier timeout is 40 seconds which is plenty for ISDN I think. I got some trace output from ppp while I got non from isdnd. (Isdnd is just reporting incoming calls.) -Hanspeter ++ ppp ON saturn> dial tun0: Timer: Select returns 1 tun0: Command: /dev/tty: dial tun0: Phase: bundle: Establish tun0: Phase: 1: closed -> opening tun0: Timer: tun: fdset(r) 3 tun0: ID0: 0 = uu_lock("i4brbch0") tun0: ID0: 2 = open("/dev/i4brbch0", 6) tun0: Debug: 1: Opened /dev/i4brbch0 (i4b version 0.95.0) tun0: ID0: 0x2821e9a0 = fopen("/var/run/i4brbch0.if", "w") tun0: Timer: timer_Start: Inserting physical throughput timer[0x80b2048] tun0: Phase: 1: Connected! tun0: Phase: 1: opening -> dial tun0: Chat: 1: Dial attempt 1 of 1 tun0: Phase: 1: dial -> carrier tun0: Debug: 1: Using i4b_Timeout [0x8077578] tun0: Timer: timer_Start: Inserting i4b CD timer[0x80a6040] before physical thro ughput timer[0x80b2048], delta = 10 tun0: Debug: Waiting for carrier tun0: Timer: prompt /dev/tty: fdset(r) 0 ppp ON saturn> tun0: Timer: Select returns -1 tun0: Timer: ---- Begin of Timer Service List--- tun0: Timer: i4b CD timer[0x80a6040]: freq = 1.00s, next = 0.00s, state = runnin g tun0: Timer: physical throughput timer[0x80b2048]: freq = 1.00s, next = 0.00s, s tate = running tun0: Timer: ---- End of Timer Service List --- tun0: Timer: timer_Start: Inserting physical throughput timer[0x80b2048] tun0: Timer: timer_Start: Inserting i4b CD timer[0x80a6040] before physical thro ughput timer[0x80b2048], delta = 10 tun0: Debug: 1: /dev/i4brbch0: Still no carrier (1/40) tun0: Timer: tun: fdset(r) 3 tun0: Debug: Waiting for carrier tun0: Timer: prompt /dev/tty: fdset(r) 0 tun0: Timer: Select returns -1 tun0: Timer: ---- Begin of Timer Service List--- tun0: Timer: i4b CD timer[0x80a6040]: freq = 1.00s, next = 0.00s, state = runnin g tun0: Timer: physical throughput timer[0x80b2048]: freq = 1.00s, next = 0.00s, s tate = running tun0: Timer: ---- End of Timer Service List --- tun0: Timer: timer_Start: Inserting physical throughput timer[0x80b2048] tun0: Timer: timer_Start: Inserting i4b CD timer[0x80a6040] before physical thro ughput timer[0x80b2048], delta = 10 tun0: Debug: 1: /dev/i4brbch0: Still no carrier (2/40) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Sep 8 6:32:15 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from ns.bsag.ch (ns.bsag.ch [195.246.88.210]) by hub.freebsd.org (Postfix) with ESMTP id 9C2E837B423 for ; Fri, 8 Sep 2000 06:32:12 -0700 (PDT) Received: (from hpr@localhost) by ns.bsag.ch (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) id PAA14553; Fri, 8 Sep 2000 15:32:03 +0200 Date: Fri, 8 Sep 2000 15:32:03 +0200 From: Hanspeter Roth Bsag To: David Hedley Cc: freebsd-isdn@freebsd.org Subject: Re: configuring Ppp Message-ID: <20000908153203.D13663@bs11.bsag.ch> References: <20000908150421.B13663@bs11.bsag.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from david@inty.co.uk on Fri, Sep 08, 2000 at 02:18:42PM +0100 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Sep 08, 2000 at 02:18:42PM +0100, David Hedley wrote: > > Run isdnd with debugging on (-d 0xff0) and then see what's output in the > log. isdnd should tell you why it failed to connect. > Ok I can run it with 0xff0. I used 0x1f9 before. All I get is the configuration parameters and the process id... -Hanspeter ++ 08.09.2000 15:21:59 DBG init_controller_state: controller 0 is AVM Fritz!Card PC I 08.09.2000 15:21:59 DBG init_controller: found 1 ISDN controller(s) 08.09.2000 15:21:59 DBG system: useacctfile = 0 08.09.2000 15:21:59 DBG system: rtprio = 25 08.09.2000 15:21:59 DBG system: regexpr PPP2SITEB incoming call active stored in to slot 0 08.09.2000 15:21:59 DBG system: regprog ppp_in_trigger_siteb stored into slot 0 08.09.2000 15:21:59 DBG [defaults, no controller section] controller 0: protocol = dss1 08.09.2000 15:21:59 DBG entry 0: name = PPP2SITEB 08.09.2000 15:21:59 DBG entry 0: direction = out 08.09.2000 15:21:59 DBG entry 0: usrdevicename = rbch 08.09.2000 15:21:59 DBG system: regprog ppp_in_trigger_siteb stored into slot 0 08.09.2000 15:21:59 DBG [defaults, no controller section] controller 0: protocol = dss1 08.09.2000 15:21:59 DBG entry 0: name = PPP2SITEB 08.09.2000 15:21:59 DBG entry 0: direction = out 08.09.2000 15:21:59 DBG entry 0: usrdevicename = rbch 08.09.2000 15:21:59 DBG entry 0: usrdeviceunit = 0 08.09.2000 15:21:59 DBG entry 0: usrdeviceunit = 1 08.09.2000 15:21:59 DBG entry 0: isdncontroller = 0 08.09.2000 15:21:59 DBG entry 0: isdnchannel = any 08.09.2000 15:21:59 DBG entry 0: local_phone_incoming = 99999 08.09.2000 15:21:59 DBG entry 0: remote_phone_incoming #0 = 0987654321 08.09.2000 15:21:59 DBG entry 0: local_phone_dialout = 017722215 08.09.2000 15:21:59 DBG entry 0: remote_phone_dialout #0 = 0228102750 08.09.2000 15:21:59 DBG entry 0: remdial_handling = first 08.09.2000 15:21:59 DBG entry 0: dialin_reaction = reject 08.09.2000 15:21:59 DBG entry 0: dialouttype = normal 08.09.2000 15:21:59 DBG entry 0: b1protocol = hdlc 08.09.2000 15:21:59 DBG entry 0: idle_time_in = 300 08.09.2000 15:21:59 DBG entry 0: idle_time_out = 30 08.09.2000 15:21:59 DBG entry 0: ratetype = 0 08.09.2000 15:21:59 DBG entry 0: unitlength = 90 08.09.2000 15:21:59 DBG entry 0: unitlengthsrc = rate 08.09.2000 15:21:59 DBG entry 0: dialretries = 2 08.09.2000 15:21:59 DBG entry 0: dialrandincr = 0 08.09.2000 15:21:59 DBG entry 0: recoverytime = 5 08.09.2000 15:21:59 DBG entry 0: usedown = 0 08.09.2000 15:21:59 DBG ratesfile /etc/isdn/isdnd.rates read successfully 08.09.2000 15:21:59 DMN i4b isdn daemon started (pid = 3043) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Sep 8 8:21:44 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from ns1.eds.ch (ns1.eds.ch [194.235.48.8]) by hub.freebsd.org (Postfix) with ESMTP id DEFF537B43E for ; Fri, 8 Sep 2000 08:21:41 -0700 (PDT) Received: from onyx.eds.ch (onyx.eds.ch [206.122.128.224]) by ns1.eds.ch (8.9.3/8.9.3) with ESMTP id RAA17243 for ; Fri, 8 Sep 2000 17:30:47 +0200 (MET DST) Received: from mailsrv.eds.ch (mailsrv.eds.ch [194.235.174.72] (may be forged)) by onyx.eds.ch (8.9.3/8.9.3) with ESMTP id RAA22951 for ; Fri, 8 Sep 2000 17:25:41 +0200 (MET DST) Received: from agie.ch ([198.132.159.194]) by mailsrv.eds.ch (Netscape Messaging Server 3.6) with ESMTP id AAA6101; Fri, 8 Sep 2000 17:18:09 +0200 Message-ID: <39B911D8.3CA871B0@agie.ch> Date: Fri, 08 Sep 2000 17:20:41 +0100 From: "Roberto Nunnari, AGIE" Organization: AGIE X-Mailer: Mozilla 4.7 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: Hanspeter Roth Bsag Cc: David Hedley , freebsd-isdn@FreeBSD.ORG Subject: Re: configuring Ppp References: <20000908150421.B13663@bs11.bsag.ch> <20000908153203.D13663@bs11.bsag.ch> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hanspeter Roth Bsag wrote: > > 08.09.2000 15:21:59 DBG entry 0: usrdeviceunit = 0 > 08.09.2000 15:21:59 DBG entry 0: usrdeviceunit = 1 Why do you have two usrdeviceunit definitions? If you want to use rbch0 you should have usrdeviceunit=0 If you want to use both rbch0 and rbch1 you should have a second entry in your isdnd.rc and there set usrdeviceunit=1 I suspect that if you have two definitions of usrdeviceunit in the same entry it missinterprets it. regards. -- Roberto Nunnari -software engineer- mailto:roberto.nunnari@agie.ch AGIE - http://www.agie.com Via dei pioppi 16 tel: +41-91-8069138 6616 Losone """ Switzerland (o o) =======================oOO==(_)==OOo======================== MY OPNIONS ARE NOT NECESSARELY THOSE OF MY EMPLOYER To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Sep 8 8:36:27 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from ns.bsag.ch (ns.bsag.ch [195.246.88.210]) by hub.freebsd.org (Postfix) with ESMTP id 1FFA637B42C for ; Fri, 8 Sep 2000 08:36:25 -0700 (PDT) Received: (from hpr@localhost) by ns.bsag.ch (8.9.3/8.9.3/SuSE Linux 8.9.3-0.1) id RAA16107; Fri, 8 Sep 2000 17:36:19 +0200 Date: Fri, 8 Sep 2000 17:36:19 +0200 From: Hanspeter Roth Bsag To: "Roberto Nunnari, AGIE" Cc: David Hedley , freebsd-isdn@FreeBSD.ORG Subject: Re: configuring Ppp Message-ID: <20000908173619.B15969@bs11.bsag.ch> References: <20000908150421.B13663@bs11.bsag.ch> <20000908153203.D13663@bs11.bsag.ch> <39B911D8.3CA871B0@agie.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <39B911D8.3CA871B0@agie.ch>; from roberto.Nunnari@agie.ch on Fri, Sep 08, 2000 at 05:20:41PM +0100 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Sep 08, 2000 at 05:20:41PM +0100, Roberto Nunnari, AGIE wrote: > Hanspeter Roth Bsag wrote: > > > > 08.09.2000 15:21:59 DBG entry 0: usrdeviceunit = 0 > > 08.09.2000 15:21:59 DBG entry 0: usrdeviceunit = 1 > > Why do you have two usrdeviceunit definitions? I understood I had to make multiple entries. > If you want to use rbch0 you should have usrdeviceunit=0 > If you want to use both rbch0 and rbch1 you should have > a second entry in your isdnd.rc and there set > usrdeviceunit=1 > > I suspect that if you have two definitions of > usrdeviceunit in the same entry it missinterprets it. Ok, I've corrected this. There is now a single usrdeviceunit=1. But isdnd still dosen't report any activity except incoming calls. -Hanspeter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Sep 8 14:21:40 2000 Delivered-To: freebsd-isdn@freebsd.org Received: from mailout02.sul.t-online.com (mailout02.sul.t-online.com [194.25.134.17]) by hub.freebsd.org (Postfix) with ESMTP id BD19537B43F for ; Fri, 8 Sep 2000 14:21:36 -0700 (PDT) Received: from fmrl01.sul.t-online.de by mailout02.sul.t-online.com with smtp id 13XVaZ-0003ai-00; Fri, 08 Sep 2000 23:21:35 +0200 Received: from night-porter.duskware.de (520038743430-0001@[193.159.144.242]) by fmrl01.sul.t-online.com with esmtp id 13XVaU-12Ty40C; Fri, 8 Sep 2000 23:21:30 +0200 Received: (from martin@localhost) by night-porter.duskware.de (8.11.0/8.11.0) id e86KSZB10546; Wed, 6 Sep 2000 22:28:35 +0200 (MEST) From: Martin Husemann Message-Id: <200009062028.e86KSZB10546@night-porter.duskware.de> Subject: Re: What about this error? In-Reply-To: <20000906170705.90DD6482C@hcswork.hcs.de> "from Hellmuth Michaelis at Sep 6, 2000 07:07:05 pm" To: hm@hcs.de Date: Wed, 6 Sep 2000 22:28:35 +0200 (MEST) Cc: Juergen Hannken-Illjes , freebsd-isdn@freebsd.org X-Mailer: ELM [version 2.4ME+ PL78 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-Sender: 520038743430-0001@t-dialin.net Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > As it says: layer 1 was deactivated. Yeah (persistent), but the bug being: it doesn't come back up automatically. Doing ifconfig isp0 down/up makes it work again. Martin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message