From owner-freebsd-isdn Sun Jun 7 05:16:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA21443 for freebsd-isdn-outgoing; Sun, 7 Jun 1998 05:16:23 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from fiinbeck.math.ntnu.no (fiinbeck.math.ntnu.no [129.241.15.140]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id FAA21431 for ; Sun, 7 Jun 1998 05:16:16 -0700 (PDT) (envelope-from hanche@math.ntnu.no) Received: (qmail 8509 invoked from network); 7 Jun 1998 12:16:12 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 7 Jun 1998 12:16:12 -0000 To: freebsd-isdn@FreeBSD.ORG Subject: Re: idletime disconnect won't work In-Reply-To: Your message of "Sat, 6 Jun 1998 20:37:15 +0200 (CEST)" References: X-Mailer: Mew version 1.91 on Emacs 19.34 X-URL: http://www.math.ntnu.no/~hanche/ Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19980607141611G.hanche@math.ntnu.no> Date: Sun, 07 Jun 1998 14:16:11 +0200 From: Harald Hanche-Olsen X-Dispatcher: imput version 971024 Lines: 38 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org - hm@kts.org (Hellmuth Michaelis): | Harald Hanche-Olsen wrote: | | > Yes, but if something physical is wrong, should I not get a lot more | > CRC errors when there is more traffic on the bus? | | This might be true. | | What do the HSCX error counters say (isdndebug -H) ? #; isdndebug -h HSCX events: VFR RDO CRC RAB XDU RFO unit 0 chan 0: 0 0 0 0 0 0 unit 0 chan 1: 0 0 0 0 0 0 This is after about 5 minutes online, during which there has been quite a bit of traffic: ; netstat -i Name Mtu Network Address Ipkts Ierrs Opkts Oerrs Coll lp0* 1500 0 0 0 0 0 tun0* 1500 0 0 0 0 0 ppp0* 1500 0 0 0 0 0 lo0 16384 427 0 427 0 0 lo0 16384 your-net localhost 427 0 427 0 0 isppp 1500 1368 1 1144 0 0 isppp 1500 0 isdn-b137.itea. 1368 1 1144 0 0 isppp 1500 0 0 0 0 0 isppp 1500 0 0 0 0 0 isppp 1500 0 0 0 0 0 ipr0* 1500 0 0 0 0 0 ipr1* 1500 0 0 0 0 0 ipr2* 1500 0 0 0 0 0 ipr3* 1500 0 0 0 0 0 - Harald To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Sun Jun 7 10:32:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA06773 for freebsd-isdn-outgoing; Sun, 7 Jun 1998 10:32:35 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from casparc.ppp.net (mail.ppp.net [194.64.12.35]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id KAA06649 for ; Sun, 7 Jun 1998 10:32:13 -0700 (PDT) (envelope-from ernie!bert.kts.org!hm@ppp.net) Received: from ernie by casparc.ppp.net with uucp (Smail3.1.28.1 #1) id m0yijIf-002ZkZC; Sun, 7 Jun 98 19:32 MET DST Received: from bert.kts.org(really [194.55.156.2]) by ernie.kts.org via sendmail with smtp id for ; Sun, 7 Jun 1998 19:29:36 +0200 (CEST) (Smail-3.2.0.91 1997-Jan-14 #3 built 1998-Feb-14) Received: by bert.kts.org via sendmail with stdio id for freebsd-isdn@freebsd.org; Sun, 7 Jun 1998 19:25:03 +0200 (CEST) (Smail-3.2.0.94 1997-Apr-22 #1 built 1998-Jun-6) Message-Id: From: hm@kts.org (Hellmuth Michaelis) Subject: killing and restarting isdnd (FYI) To: freebsd-isdn@FreeBSD.ORG (ISDN for BSD) Date: Sun, 7 Jun 1998 19:25:03 +0200 (CEST) Organization: Kitchen Table Systems Reply-To: hm@kts.org X-Mailer: ELM [version 2.4ME+ PL38 (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 After some bug reports which i didn't understood, i finally got it .. Since some time, there must have been an open() on /dev/i4b taking place to enable the transmission of received frames upwards in the ISDN stack. When the daemon exits, the close() on /dev/i4b disables the sending of frames upwards in the ISDN stack. Now when the system is booted, the isdn kernel part is properly initialized and reset and when the daemon is started, the kernel part of i4b starts from clean data structures. When the daemon is killed, no further received frames from the S0 bus are sent to the upper layers, effectively freezing the kernel part of i4b. What is currently _not_ done is, resetting the data structures describing the states of the layers to their defaults, instead they remain as they were left. When the daemon then is started again in this situation, the kernel parts of i4b un-freeze in the state they had when the daemon was killed and this can lead to all sorts of bad behaviour. The effect is, that it is currently _NOT_ possible to cleanly kill isdnd and then restart it some time later, bad things can happen. You have to reboot the whole machine in this case. Reconfiguration of isdnd should work; this is possible by sending HUP to the daemon or from the fullscreen menu interface. I'll try to fix it ASAP, but i'm currently a bit short of time .... hellmuth -- Hellmuth Michaelis hm@kts.org Hamburg, Europe A duck is like a bicycle because they both have two wheels except the duck (terry@cs.weber.edu) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Jun 8 00:54:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA17685 for freebsd-isdn-outgoing; Mon, 8 Jun 1998 00:54:34 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from hcshh.hcs.de (hcshh.hcs.de [194.123.40.1]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id AAA17680 for ; Mon, 8 Jun 1998 00:54:32 -0700 (PDT) (envelope-from hm@hcs.de) Received: from hcswork.hcs.de([192.76.124.5]) (1655 bytes) by hcshh.hcs.de via sendmail with P:smtp/R:inet_hosts/T:smtp (sender: ) id for ; Mon, 8 Jun 1998 09:54:16 +0200 (METDST) (Smail-3.2.0.97 1997-Aug-19 #16 built 1997-Oct-22) Received: by hcswork.hcs.de (Smail3.1.29.0 #12) id m0yiwmx-0000dZC; Mon, 8 Jun 98 09:56 METDST Message-Id: From: hm@hcs.de (Hellmuth Michaelis) Subject: Re: isdn-subsystem hangs with 0.61 In-Reply-To: from Dirk Meyer at "Jun 6, 98 06:30:30 am" To: dirk.meyer@dinoex.sub.org (Dirk Meyer) Date: Mon, 8 Jun 1998 09:56:19 +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 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >From the keyboard of Dirk Meyer: > i4b-061 still panics in a state, before bisdn logs the first AOC Messages. What version of FreeBSD is this ? Do you use the stock FreeBSD gcc to compile your kernel or another gcc ? What special options (/etc/make.conf) do you use to compile your kernel ? I'd like to get an isdntrace output and an isdnd log output from you which contains the data from boot time until crash time. What is the exact panic message ? (Try to compile a kernel with options DDB). hellmuth -- Hellmuth Michaelis Tel +49 40 559747-70 HCS Hanseatischer Computerservice GmbH Fax +49 40 559747-77 Oldesloer Strasse 97-99 Mail hm@hcs.de 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 Jun 8 01:45:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA22964 for freebsd-isdn-outgoing; Mon, 8 Jun 1998 01:45:15 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from terminator.informatik.ba-stuttgart.de (terminator.informatik.ba-stuttgart.de [141.31.111.23]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA22896 for ; Mon, 8 Jun 1998 01:44:48 -0700 (PDT) (envelope-from helbig@Informatik.BA-Stuttgart.DE) Received: from rvc1.informatik.ba-stuttgart.de (rvc1.informatik.ba-stuttgart.de [141.31.112.22]) by terminator.informatik.ba-stuttgart.de (8.8.8/8.8.8) with ESMTP id KAA00413; Mon, 8 Jun 1998 10:16:44 +0200 (CEST) (envelope-from helbig@Informatik.BA-Stuttgart.DE) Received: (from helbig@localhost) by rvc1.informatik.ba-stuttgart.de (8.8.8/8.8.5) id KAA14476; Mon, 8 Jun 1998 10:14:19 +0200 (MET DST) From: Wolfgang Helbig Message-Id: <199806080814.KAA14476@rvc1.informatik.ba-stuttgart.de> Subject: Re: killing and restarting isdnd (FYI) In-Reply-To: from Hellmuth Michaelis at "Jun 7, 98 07:25:03 pm" To: hm@kts.org Date: Mon, 8 Jun 1998 10:14:18 +0200 (MET DST) Cc: freebsd-isdn@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL30 (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 > When the daemon then is started again in this situation, the kernel parts > of i4b un-freeze in the state they had when the daemon was killed and this > can lead to all sorts of bad behaviour. Here an example of what happenes if you kill isdnd *after* the TEI is assigned: The exchange sends RRs which are not replied anymore by i4b. The exchange sends check TEI requests which are not replied. The exchange sends TEI removal requests which are not honored by i4b The exchange finally sends INFO0 and thus shuts down the S0-bus. If isdnd is restarted, i4b successfully activates the S0-bus but then tries to reuse the old -- by now invalid -- TEI. So, if i4b would have replied to the check TEI requests or would respect the TEI removal requests, everything would have worked fine. I believe it is *not* necessary to reinitialise the i4b data structures after a restart of isdnd. (Especially the finite state machines) At least my telephone doesn't. It keeps the once assigned TEI even though the SO-Bus is deactivated inbetween calls. Somewhere (sorry) the Q921-docs say, that layer2 need not be informed if layer1 is deactivated. > I'll try to fix it ASAP, but i'm currently a bit short of time .... So am I :-( BTW. I had a look at the Teles 16.3c1 PnP which has an HFC-S chip instead of HSCX/ISAC. I searched Linux sources for examples to control this chip--to no avail. I believe this card is not supported by isdn4linux. There seem to exist two flavours of the Teles PnP card, one with HSCX/ISAC and one with HFC-S. Can anyone confirm this. Did anyone else play with HFC-S chips. Wolfgang To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Jun 8 05:40:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA03701 for freebsd-isdn-outgoing; Mon, 8 Jun 1998 05:40:12 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA03630 for ; Mon, 8 Jun 1998 05:40:03 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [195.204.143.218]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id MAA14544; Mon, 8 Jun 1998 12:40:03 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id OAA06894; Mon, 8 Jun 1998 14:39:30 +0200 (MET DST) Message-ID: <19980608143926.32218@follo.net> Date: Mon, 8 Jun 1998 14:39:26 +0200 From: Eivind Eklund To: Wolfgang Helbig , hm@kts.org Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: killing and restarting isdnd (FYI) References: <199806080814.KAA14476@rvc1.informatik.ba-stuttgart.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199806080814.KAA14476@rvc1.informatik.ba-stuttgart.de>; from Wolfgang Helbig on Mon, Jun 08, 1998 at 10:14:18AM +0200 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Jun 08, 1998 at 10:14:18AM +0200, Wolfgang Helbig wrote: > BTW. I had a look at the Teles 16.3c1 PnP which has an HFC-S chip > instead of HSCX/ISAC. I searched Linux sources for examples to > control this chip--to no avail. I believe this card is not supported > by isdn4linux. There seem to exist two flavours of the Teles PnP > card, one with HSCX/ISAC and one with HFC-S. Can anyone confirm this. I have a revision 1.5 and a revision 1.31, both with HSCX/ISAC. I'm planning to implement FreeBSD support for them as soon as I'm finished with the multilink support. Right now I'm working on adding non-blocking support to rbch, as a pre-requisite to this. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Jun 8 10:39:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA29691 for freebsd-isdn-outgoing; Mon, 8 Jun 1998 10:39:15 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from mail.dinoex.sub.org (root@mail.dinoex.sub.de [195.243.29.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA29525 for ; Mon, 8 Jun 1998 10:38:10 -0700 (PDT) (envelope-from dirk.meyer@dinoex.sub.org) Received: (from uucp@localhost) by mail.dinoex.sub.org (8.8.7/8.8.7) with UUCP id TAA17788 for freebsd-isdn@FreeBSD.ORG; Mon, 8 Jun 1998 19:39:48 +0200 (CEST) Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.8.7/8.8.7) with BSMTP id TAA00983 for ; Mon, 8 Jun 1998 19:13:24 +0200 (CEST) To: freebsd-isdn@FreeBSD.ORG, hm@hcs.de Message-ID: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Subject: Re: isdn-subsystem hangs with 0.61 Date: Mon, 08 Jun 1998 19:12:05 +0200 X-Mailer: Dinoex 1.68 References: X-Gateway: ZCONNECT gate.dinoex.sub.org [UNIX/Connect v0.76-m5] X-PGP-Fingerprint: 44 16 EC 0A D3 3A 4F 28 8A 8A 47 93 F1 CF 2F 12 X-ZC-VIA: 19980608000000S+2@dinoex.sub.org Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hellmuth Michaelis wrote:, > > i4b-061 still panics in a state, before bisdn logs the first AOC Messages. > What version of FreeBSD is this ? FreeBSD net2.dinoex.sub.org 2.2.5-RELEASE FreeBSD 2.2.5-RELEASE #0: > Do you use the stock FreeBSD gcc to compile your kernel or another gcc ? the gcc in the base distribution, compiled with make world > What special options (/etc/make.conf) do you use to compile your kernel ? all commented out but: USA_RESIDENT= NO > I'd like to get an isdntrace output and an isdnd log output from you which > contains the data from boot time until crash time. just following, it is extremly short > What is the exact panic message ? (Try to compile a kernel with options DDB). option DIAGNOSTICS is compiled in. just this one short line: panic: receive 3 located in source sys/kern/uipc_socked.c in function soreceive() #ifdef DIAGNOSTIC else if (m->m_type != MT_DATA && m->m_type != MT_HEADER) panic("receive 3"); #endif kind regards Dirk -- Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany -- Tel. +49-5606-6512 Jun 8 18:48:11 net2 isdnd[82]: DBG msg_dialout: dial req from ipr, unit 0 Jun 8 18:48:11 net2 isdnd[82]: DBG find_device: found entry 0! Jun 8 18:48:11 net2 isdnd[82]: DBG FSM event [msg-dialout]: [idle => dialing] Jun 8 18:48:11 net2 isdnd[82]: DBG F_DIAL: local dial out request Jun 8 18:48:11 net2 isdnd[82]: DBG select_first_dialno: only one no, no = 05608949011 Jun 8 18:48:11 net2 isdnd[82]: DMN rate=45 sec/unit (day=1, beg=18, end=21, current=18) Jun 8 18:48:11 net2 isdnd[82]: CHD 00001 dialing out from 56596 to 05608949011 Jun 8 18:48:11 net2 isdnd[82]: CHD 00001 I4BIP0 outgoing call proceeding (ctl 0, ch 0) Jun 8 18:48:12 net2 isdnd[82]: CHD 00001 I4BIP0 incoming alert Jun 8 18:48:12 net2 isdnd[82]: DBG msg_charging: units=1, unitstype=3 Jun 8 18:48:12 net2 isdnd[82]: CHD 00001 I4BIP0 outgoing call active (ctl 0, ch 0) Jun 8 18:48:12 net2 isdnd[82]: DBG FSM event [msg-con-act-ind]: [dialing => connected] Jun 8 18:48:12 net2 isdnd[82]: DBG F_DOK: dial out ok Jun 8 18:48:12 net2 isdnd[82]: DBG select_this_dialno: index = 0, no = 05608949011 Jun 8 18:48:12 net2 isdnd[82]: DBG msg_charging: units=1, unitstype=1 =========== isdntrace controller #0 =========== started Mon Jun 8 18:44:45 1998 -- NT->TE - unit:0 - frame:000001 - time:08.06 18:44:49.51 - length:4 ---------- Dump:000 02 87 01 9b .... Q921: SAP=0 (Call Control), C, TEI=67, S-Frame: RR N(R) 77 PF 1 [...] -- NT->TE - unit:0 - frame:000021 - time:08.06 18:48:09.56 - length:4 ---------- Dump:000 02 87 01 9b .... Q921: SAP=0 (Call Control), C, TEI=67, S-Frame: RR N(R) 77 PF 1 -- TE->NT - unit:0 - frame:000022 - time:08.06 18:48:11.60 - length:8 ---------- Dump:000 fc ff 03 0f 55 07 01 ff ....U... Q921: SAP=63 (TEI-Management), C, TEI=127, Ri=0x0755, IdRequest, Ai=127 -- NT->TE - unit:0 - frame:000023 - time:08.06 18:48:11.61 - length:8 ---------- Dump:000 fe ff 03 0f 55 07 02 8f ....U... Q921: SAP=63 (TEI-Management), C, TEI=127, Ri=0x0755, IdAssign, Ai=71 -- TE->NT - unit:0 - frame:000024 - time:08.06 18:48:11.61 - length:3 ---------- Dump:000 00 8f 7f ... Q921: SAP=0 (Call Control), C, TEI=71, U-Frame: SABME PF 1 -- NT->TE - unit:0 - frame:000025 - time:08.06 18:48:11.62 - length:3 ---------- Dump:000 00 8f 73 ..s Q921: SAP=0 (Call Control), R, TEI=71, U-Frame: UA PF 1 -- TE->NT - unit:0 - frame:000026 - time:08.06 18:48:11.62 - length:38 --------- Dump:000 00 8f 00 00 .... Q921: SAP=0 (Call Control), C, TEI=71, I-Frame: N(S) 0 N(R) 0 P 0 Dump:004 08 01 45 05 a1 04 02 88 90 18 01 83 6c 06 81 35 ..E.........l..5 Dump:020 36 35 39 36 70 0c 81 30 35 36 30 38 39 34 39 30 6596p..056089490 Dump:036 31 31 11 Q931: pd=Q.931/I.451, cr=0x45 (from origination), message=SETUP: [sending complete] [bearer capability: cap=unrestricted digital information std=CCITT rate=64 kbit/s mode=circuit] [channel id: channel=any channel (preferred)] [calling party number: 56596 (type=unknown, plan=ISDN)] [called party number: 05608949011 (type=unknown, plan=ISDN)] -- NT->TE - unit:0 - frame:000027 - time:08.06 18:48:11.65 - length:4 ---------- Dump:000 00 8f 01 02 .... Q921: SAP=0 (Call Control), R, TEI=71, S-Frame: RR N(R) 1 PF 0 -- NT->TE - unit:0 - frame:000028 - time:08.06 18:48:11.84 - length:11 --------- Dump:000 02 8f 00 02 .... Q921: SAP=0 (Call Control), C, TEI=71, I-Frame: N(S) 0 N(R) 1 P 0 Dump:004 08 01 c5 02 18 01 89 ....... Q931: pd=Q.931/I.451, cr=0x45 (from destination), message=CALL PROCEEDING: [channel id: channel=B-1 (exclusive)] -- TE->NT - unit:0 - frame:000029 - time:08.06 18:48:11.84 - length:4 ---------- Dump:000 02 8f 01 02 .... Q921: SAP=0 (Call Control), R, TEI=71, S-Frame: RR N(R) 1 PF 0 -- NT->TE - unit:0 - frame:000030 - time:08.06 18:48:12.07 - length:8 ---------- Dump:000 02 8f 02 02 .... Q921: SAP=0 (Call Control), C, TEI=71, I-Frame: N(S) 1 N(R) 1 P 0 Dump:004 08 01 c5 01 .... Q931: pd=Q.931/I.451, cr=0x45 (from destination), message=ALERTING: -- TE->NT - unit:0 - frame:000031 - time:08.06 18:48:12.07 - length:4 ---------- Dump:000 02 8f 01 04 .... Q921: SAP=0 (Call Control), R, TEI=71, S-Frame: RR N(R) 2 PF 0 -- NT->TE - unit:0 - frame:000032 - time:08.06 18:48:12.14 - length:15 --------- Dump:000 02 8f 04 02 .... Q921: SAP=0 (Call Control), C, TEI=71, I-Frame: N(S) 2 N(R) 1 P 0 Dump:004 08 01 c5 07 29 05 62 06 08 12 2f ....).b.../ Q931: pd=Q.931/I.451, cr=0x45 (from destination), message=CONNECT: [date/time: 08.06.98 18:47] -- TE->NT - unit:0 - frame:000033 - time:08.06 18:48:12.14 - length:8 ---------- Dump:000 00 8f 02 06 .... Q921: SAP=0 (Call Control), C, TEI=71, I-Frame: N(S) 1 N(R) 3 P 0 Dump:004 08 01 45 0f ..E. Q931: pd=Q.931/I.451, cr=0x45 (from origination), message=CONNECT ACKNOWLEDGE: . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Jun 8 11:02:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA05650 for freebsd-isdn-outgoing; Mon, 8 Jun 1998 11:02:16 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from casparc.ppp.net (mail.ppp.net [194.64.12.35]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id LAA05645 for ; Mon, 8 Jun 1998 11:02:11 -0700 (PDT) (envelope-from ernie!bert.kts.org!hm@ppp.net) Received: from ernie by casparc.ppp.net with uucp (Smail3.1.28.1 #1) id m0yj6F9-002a41C; Mon, 8 Jun 98 20:02 MET DST Received: from bert.kts.org(really [194.55.156.2]) by ernie.kts.org via sendmail with smtp id for ; Mon, 8 Jun 1998 19:09:05 +0200 (CEST) (Smail-3.2.0.91 1997-Jan-14 #3 built 1998-Feb-14) Received: by bert.kts.org via sendmail with stdio id for freebsd-isdn@freebsd.org; Mon, 8 Jun 1998 19:04:35 +0200 (CEST) (Smail-3.2.0.94 1997-Apr-22 #1 built 1998-Jun-6) Message-Id: From: hm@kts.org (Hellmuth Michaelis) Subject: Re: killing and restarting isdnd (FYI) In-Reply-To: <199806080814.KAA14476@rvc1.informatik.ba-stuttgart.de> from Wolfgang Helbig at "Jun 8, 98 10:14:18 am" To: freebsd-isdn@FreeBSD.ORG (ISDN for BSD) Date: Mon, 8 Jun 1998 19:04:35 +0200 (CEST) Organization: Kitchen Table Systems Reply-To: hm@kts.org X-Mailer: ELM [version 2.4ME+ PL38 (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 Wolfgang Helbig wrote: > BTW. I had a look at the Teles 16.3c1 PnP which has an HFC-S chip > instead of HSCX/ISAC. I searched Linux sources for examples to > control this chip--to no avail. I believe this card is not supported > by isdn4linux. There seem to exist two flavours of the Teles PnP > card, one with HSCX/ISAC and one with HFC-S. The 16.3c Versions have (AFAIK) HFC chips. Only the "c" versions. The non-"c" Versions of the 16.3 have (AFAIK) HSCX chips. Isdn4linux supports both. > Did anyone else play with HFC-S chips. Not yet. I have one of the Teleint cards here but i don't have time to play in the near future. hellmuth -- Hellmuth Michaelis hm@kts.org Hamburg, Europe A duck is like a bicycle because they both have two wheels except the duck (terry@cs.weber.edu) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Jun 8 12:27:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA23919 for freebsd-isdn-outgoing; Mon, 8 Jun 1998 12:27:40 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from arg1.demon.co.uk (arg1.demon.co.uk [194.222.34.166]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA23913 for ; Mon, 8 Jun 1998 12:27:32 -0700 (PDT) (envelope-from arg@arg1.demon.co.uk) Received: from localhost (arg@localhost) by arg1.demon.co.uk (8.8.8/8.8.7) with SMTP id UAA17113; Mon, 8 Jun 1998 20:29:49 +0100 (BST) (envelope-from arg@arg1.demon.co.uk) Date: Mon, 8 Jun 1998 20:29:49 +0100 (BST) From: Andrew Gordon X-Sender: arg@server.arg.sj.co.uk To: freebsd-isdn@FreeBSD.ORG, hm@kts.org Subject: Bug in isdnd with multiple dial-out numbers Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-1221630659-897334189=:17105" Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-1221630659-897334189=:17105 Content-Type: TEXT/PLAIN; charset=US-ASCII There is a bug (consistent off-by-one error) in the logic that selects the next telephone number to dial from entries with more than one remote-phone-dialout configured. Effect of the bug was that it would attempt to access entry n+1 in the table, and so attempt to dial a zero-length number (the BT exchange responds with cause 0x1c "Invalid number format", which seems fair enough in the circumstances!). This would happen every third call if you have remdial-handling = next and two numbers configured, less often in other configurations. Patch (for isdnd/dial.c, from 0.61 release) attached. --0-1221630659-897334189=:17105 Content-Type: TEXT/PLAIN; charset=US-ASCII; name="dial.c.patch1" Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: KioqIGRpYWwuYy5vcmlnCU1vbiBKdW4gIDggMTk6Mzk6MjEgMTk5OA0KLS0t IGRpYWwuYwlNb24gSnVuICA4IDE5OjQ5OjI3IDE5OTgNCioqKioqKioqKioq KioqKg0KKioqIDg5LDk3ICoqKioNCiAgCQkJfQ0KICAJCQllbHNlDQogIAkJ CXsNCiEgCQkJCWlmKGNlcC0+cmVtb3RlX251bWJlcnNfY291bnQgPiBpKQ0K ISAJCQkJCWkrKzsNCiEgCQkJCWVsc2UNCiAgCQkJCQlpID0gMDsNCiAgDQog IAkJCQlzdHJjcHkoY2VwLT5yZW1vdGVfcGhvbmVfZGlhbG91dCwgY2VwLT5y ZW1vdGVfbnVtYmVyc1tpXS5udW1iZXIpOw0KLS0tIDg5LDk1IC0tLS0NCiAg CQkJfQ0KICAJCQllbHNlDQogIAkJCXsNCiEgCQkJCWlmKCsraSA+PSBjZXAt PnJlbW90ZV9udW1iZXJzX2NvdW50KQ0KICAJCQkJCWkgPSAwOw0KICANCiAg CQkJCXN0cmNweShjZXAtPnJlbW90ZV9waG9uZV9kaWFsb3V0LCBjZXAtPnJl bW90ZV9udW1iZXJzW2ldLm51bWJlcik7DQoqKioqKioqKioqKioqKioNCioq KiAxMDEsMTA5ICoqKioNCiAgCQkJfQ0KICAJCX0NCiAgDQohIAkJaWYoY2Vw LT5yZW1vdGVfbnVtYmVyc19jb3VudCA+IGkpDQohIAkJCWkrKzsNCiEgCQll bHNlDQogIAkJCWkgPSAwOw0KICAJfQ0KICAJc3RyY3B5KGNlcC0+cmVtb3Rl X3Bob25lX2RpYWxvdXQsIGNlcC0+cmVtb3RlX251bWJlcnNbMF0ubnVtYmVy KTsNCi0tLSA5OSwxMDUgLS0tLQ0KICAJCQl9DQogIAkJfQ0KICANCiEgCQlp ZigrK2kgPj0gY2VwLT5yZW1vdGVfbnVtYmVyc19jb3VudCkNCiAgCQkJaSA9 IDA7DQogIAl9DQogIAlzdHJjcHkoY2VwLT5yZW1vdGVfcGhvbmVfZGlhbG91 dCwgY2VwLT5yZW1vdGVfbnVtYmVyc1swXS5udW1iZXIpOw0KKioqKioqKioq KioqKioqDQoqKiogMTM5LDE0NSAqKioqDQogIAkNCiAgCWNlcC0+bGFzdF9y ZW1vdGVfbnVtYmVyKys7DQogIA0KISAJaWYoY2VwLT5sYXN0X3JlbW90ZV9u dW1iZXIgPiBjZXAtPnJlbW90ZV9udW1iZXJzX2NvdW50KQ0KICAJCWNlcC0+ bGFzdF9yZW1vdGVfbnVtYmVyID0gMDsNCiAgDQogIAlzdHJjcHkoY2VwLT5y ZW1vdGVfcGhvbmVfZGlhbG91dCwgY2VwLT5yZW1vdGVfbnVtYmVyc1tjZXAt Pmxhc3RfcmVtb3RlX251bWJlcl0ubnVtYmVyKTsNCi0tLSAxMzUsMTQxIC0t LS0NCiAgCQ0KICAJY2VwLT5sYXN0X3JlbW90ZV9udW1iZXIrKzsNCiAgDQoh IAlpZihjZXAtPmxhc3RfcmVtb3RlX251bWJlciA+PSBjZXAtPnJlbW90ZV9u dW1iZXJzX2NvdW50KQ0KICAJCWNlcC0+bGFzdF9yZW1vdGVfbnVtYmVyID0g MDsNCiAgDQogIAlzdHJjcHkoY2VwLT5yZW1vdGVfcGhvbmVfZGlhbG91dCwg Y2VwLT5yZW1vdGVfbnVtYmVyc1tjZXAtPmxhc3RfcmVtb3RlX251bWJlcl0u bnVtYmVyKTsNCg== --0-1221630659-897334189=:17105-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Jun 8 12:36:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA25093 for freebsd-isdn-outgoing; Mon, 8 Jun 1998 12:36:21 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from arg1.demon.co.uk (arg1.demon.co.uk [194.222.34.166]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA25078 for ; Mon, 8 Jun 1998 12:36:06 -0700 (PDT) (envelope-from arg@arg1.demon.co.uk) Received: from localhost (arg@localhost) by arg1.demon.co.uk (8.8.8/8.8.7) with SMTP id UAA17141; Mon, 8 Jun 1998 20:38:27 +0100 (BST) (envelope-from arg@arg1.demon.co.uk) Date: Mon, 8 Jun 1998 20:38:25 +0100 (BST) From: Andrew Gordon X-Sender: arg@server.arg.sj.co.uk To: Harald Hanche-Olsen cc: freebsd-isdn@FreeBSD.ORG Subject: Re: idletime disconnect won't work In-Reply-To: <19980606174705L.hanche@math.ntnu.no> 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 Sat, 6 Jun 1998, Harald Hanche-Olsen wrote: > - hm@hcs.de (Hellmuth Michaelis): > > | Anyway, in case you get CRC errors every time this messages are > | exchanged, i still suspect something is wrong with your local > | electrical ISDN setup, such as cabling and/or termination. > > Yes, but if something physical is wrong, should I not get a lot more > CRC errors when there is more traffic on the bus? Instead, I get > none. I think there may be somthing more systematic about this. A friend of mine (who has an ISDN line from CCL (the local cable TV company)) gets these CRC errors (but i4b otherwise works fine for him). My ISDN line is provided by BT, and I do not see CRC errors. With BISDN, it was notable that the CCL lines gave frequent TEI-Check-Request messages, wheras the BT line hardly ever used Check-Request except at startup. This was observed with an older i4b (before the recent lower-layer rework); if the CCL lines still behave oddly with the latest release, I will try to get hold of some more info. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Jun 8 14:02:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA07849 for freebsd-isdn-outgoing; Mon, 8 Jun 1998 14:02:32 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from casparc.ppp.net (mail.ppp.net [194.64.12.35]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id OAA07821 for ; Mon, 8 Jun 1998 14:02:26 -0700 (PDT) (envelope-from ernie!bert.kts.org!hm@ppp.net) Received: from ernie by casparc.ppp.net with uucp (Smail3.1.28.1 #1) id m0yj93K-002a55C; Mon, 8 Jun 98 23:02 MET DST Received: from bert.kts.org(really [194.55.156.2]) by ernie.kts.org via sendmail with smtp id for ; Mon, 8 Jun 1998 22:45:53 +0200 (CEST) (Smail-3.2.0.91 1997-Jan-14 #3 built 1998-Feb-14) Received: by bert.kts.org via sendmail with stdio id for freebsd-isdn@FreeBSD.ORG; Mon, 8 Jun 1998 22:41:21 +0200 (CEST) (Smail-3.2.0.94 1997-Apr-22 #1 built 1998-Jun-6) Message-Id: From: hm@kts.org (Hellmuth Michaelis) Subject: Re: isdn-subsystem hangs with 0.61 In-Reply-To: from Dirk Meyer at "Jun 8, 98 07:12:05 pm" To: dirk.meyer@dinoex.sub.org (Dirk Meyer) Date: Mon, 8 Jun 1998 22:41:21 +0200 (CEST) Cc: freebsd-isdn@FreeBSD.ORG, hm@hcs.de Organization: Kitchen Table Systems Reply-To: hm@kts.org X-Mailer: ELM [version 2.4ME+ PL38 (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 Dirk Meyer wrote: > > > What is the exact panic message ? (Try to compile a kernel with options DDB). > option DIAGNOSTICS is compiled in. > > just this one short line: > panic: receive 3 > > located in source sys/kern/uipc_socked.c in function soreceive() > #ifdef DIAGNOSTIC > else if (m->m_type != MT_DATA && m->m_type != MT_HEADER) > panic("receive 3"); > #endif Ahh - DIAGNOSTIC is the cause of your problem. I4b sets a different mbuf type to distinguish the i4b mbufs from other mbufs for debugging purposes. This also caused problems on NetBSD so its not done there and i should take it out now for FreeBSD too. I would never have dreamed about compiling a kernel with DIAGNOSTIC.... In case you are prepared to debug more of this sort of things, comment the "#define I4B_MBUF_DEBUG" out and recompile the whole thing, it shall run then. But if i were you, i would remove "options DIAGNOSTICS" from my kernel config file ..... hellmuth -- Hellmuth Michaelis hm@kts.org Hamburg, Europe A duck is like a bicycle because they both have two wheels except the duck (terry@cs.weber.edu) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Jun 8 17:39:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA14725 for freebsd-isdn-outgoing; Mon, 8 Jun 1998 17:39:35 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA14708 for ; Mon, 8 Jun 1998 17:39:20 -0700 (PDT) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [195.204.143.218]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id AAA07856; Tue, 9 Jun 1998 00:39:19 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.8/8.8.6) id CAA13119; Tue, 9 Jun 1998 02:38:45 +0200 (MET DST) Message-ID: <19980609023844.58458@follo.net> Date: Tue, 9 Jun 1998 02:38:44 +0200 From: Eivind Eklund To: hm@kts.org, Dirk Meyer Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: isdn-subsystem hangs with 0.61 References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: ; from Hellmuth Michaelis on Mon, Jun 08, 1998 at 10:41:21PM +0200 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Jun 08, 1998 at 10:41:21PM +0200, Hellmuth Michaelis wrote: > I would never have dreamed about compiling a kernel with DIAGNOSTIC.... DIAGNOSTIC is the present 'catch bugs if I can' option for developers and people that run alpha software. It is slightly bogus due to somebody spewing too much information when using it, and missing distinction between providing invariants, using invariants, and spewing information. This is on my planned list of fixes, but it will take some time before it is fixed. > In case you are prepared to debug more of this sort of things, comment the > "#define I4B_MBUF_DEBUG" out and recompile the whole thing, it shall run > then. But if i were you, i would remove "options DIAGNOSTICS" from my kernel > config file ..... This shouldn't be necessary. Dirk: If you have problems with something under 'DIAGNOSTIC', please take it up with me - I've ended up as an unoffical 'maintainer of the options'. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Mon Jun 8 23:22:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA10975 for freebsd-isdn-outgoing; Mon, 8 Jun 1998 23:22:34 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from mail.dinoex.sub.org (root@mail.dinoex.sub.de [195.243.29.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA10959 for ; Mon, 8 Jun 1998 23:22:29 -0700 (PDT) (envelope-from dirk.meyer@dinoex.sub.org) Received: (from uucp@localhost) by mail.dinoex.sub.org (8.8.7/8.8.7) with UUCP id IAA05693 for freebsd-isdn@FreeBSD.ORG; Tue, 9 Jun 1998 08:22:22 +0200 (CEST) Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.8.7/8.8.7) with BSMTP id HAA12454 for ; Tue, 9 Jun 1998 07:20:08 +0200 (CEST) To: freebsd-isdn@FreeBSD.ORG Message-ID: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Subject: Re: isdn-subsystem hangs with 0.61 Date: Tue, 09 Jun 1998 07:18:16 +0200 X-Mailer: Dinoex 1.68 References: <19980609023844.58458@follo.net> X-Gateway: ZCONNECT gate.dinoex.sub.org [UNIX/Connect v0.76-m5] X-PGP-Fingerprint: 44 16 EC 0A D3 3A 4F 28 8A 8A 47 93 F1 CF 2F 12 X-ZC-VIA: 19980609000000S+2@dinoex.sub.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Eivind Eklund wrote: > On Mon, Jun 08, 1998 at 10:41:21PM +0200, Hellmuth Michaelis wrote: > > I would never have dreamed about compiling a kernel with DIAGNOSTIC.... > > DIAGNOSTIC is the present 'catch bugs if I can' option for developers > and people that run alpha software. It is slightly bogus due to > somebody spewing too much information when using it, and missing > distinction between providing invariants, using invariants, and > spewing information. This is on my planned list of fixes, but it will > take some time before it is fixed. > > [...] But if i were you, i would remove "options DIAGNOSTICS" from my kernel > > config file ..... okay, i _am_ a bit paranoid, but my systems runs 24/7 all fine with DIAGNOSTICS since i installed FreeBSD2.1.0. my new kernel is build now without it, and i check it soon. Gruß Dirk -- Dirk Meyer, Im Grund 4, 34317 Habichtswald, Tel 05606/6512 Q (voice) -- Origin: DINOEX Habichtswald -FRG- [dirk.meyer@dinoex.sub.org] . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Wed Jun 10 15:43:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA10669 for freebsd-isdn-outgoing; Wed, 10 Jun 1998 15:43:43 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from rrz.Hanse.DE (rrz.Hanse.DE [193.174.9.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA10594 for ; Wed, 10 Jun 1998 15:43:21 -0700 (PDT) (envelope-from stb@transit.hanse.de) Received: from daemon.Hanse.DE (daemon.Hanse.DE [193.174.9.17]) by rrz.Hanse.DE (8.8.8/8.8.8) with ESMTP id AAA27023 for ; Thu, 11 Jun 1998 00:36:50 +0200 (CEST) (envelope-from stb@transit.hanse.de) Received: from transit.hanse.de (transit.Hanse.DE [193.174.9.161]) by daemon.Hanse.DE (8.8.8/8.8.8) with ESMTP id AAA17288 for ; Thu, 11 Jun 1998 00:43:21 +0200 (CEST) (envelope-from stb@transit.hanse.de) Received: from localhost (stb@localhost) by transit.hanse.de (8.8.8/8.8.8) with SMTP id BAA02228 for ; Thu, 11 Jun 1998 01:42:51 +0200 (CEST) Date: Thu, 11 Jun 1998 01:42:49 +0200 (CEST) From: Stefan Bethke To: isdn@FreeBSD.ORG Subject: isdnd fails to accept incoming call?! 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 Duh, I'm pretty sure this is my fault, but currently, an incoming connection is not accepted. The relevant part of isdnd.rc: entry name = PELIKAN # name for reference usrdevicename = ipr # ipr, tel, rbch usrdeviceunit = 0 # unit number isdncontroller = 0 # contoller to use or -1 to use any isdnchannel = -1 # channel (1/2) to use or 0 or -1 for any local-phone-incoming = 256848 # this is my number remote-phone-incoming = 40736333 local-phone-dialout = 256848 # this is my number remote-phone-dialout = 736333 # i call this number remdial-handling = first # first, last or next dialin-reaction = callback # accept, reject, ignore, answer, callback dialout-type = normal # normal / calledback b1protocol = hdlc # hdlc, raw idletime-incoming = 120 # incoming call idle timeout idletime-outgoing = 30 # outgoing call idle timeout ratetype = 0 # ratesfile entry to use unitlength = 90 # unitlength to assume unitlengthsrc = rate # none, rate, cmdl, conf, aocd dialretries = 3 # # of dial retries dialrandincr = off # random dial increment time recoverytime = 5 # time to wait between 2 dial tries usedown = off # set i/f down downtries = 5 # retry cycles before set down downtime = 30 # time to be in down before going up What happens is this: when ping'ing the remote, I get Jun 11 01:27:50 transit isdnd[222]: DMN rate=240 sec/unit (day=4, beg=0, end=5,current=1) Jun 11 01:27:50 transit isdnd[222]: CHD 00021 dialing out from 256848 to 736333 Jun 11 01:27:50 transit isdnd[222]: CHD 00021 PELIKAN outgoing call proceeding (ctl 0, ch 0) Jun 11 01:27:51 transit isdnd[222]: CHD 00021 PELIKAN outgoing call active (ctl0, ch 0) and the ping succeeds. When I'm ping'ing myself from the outside: Jun 11 01:28:13 transit isdnd[222]: CHD unknown incoming call from 40736333 to 256848 isdntrace shows this: -- NT->TE - unit:0 - frame:000056 - time:11.06 01:28:04.69 - length:36 --------- Dump:003 08 01 01 05 a1 04 02 88 90 18 01 89 6c 0a 21 81 ............l.!. Dump:019 34 30 37 33 36 33 33 33 70 07 c1 32 35 36 38 34 40736333p..25684 Dump:035 38 8Q931: pd=Q.931/I.451, cr=0x01 (from origination), message=SETUP: [sending complete] [bearer capability: cap=unrestricted digital information std=CCITT rate=64 kbit/s mode=circuit] [channel id: channel=B-1 (exclusive)] [calling party number: 40736333 (type=national, plan=ISDN, presentation allowed, screening user provided: verified & passed)] [called party number: 256848 (type=subscriber, plan=ISDN)] Looks perfectly sane to me. What did I do wrong? Thanks, Stefan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Thu Jun 11 01:03:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA16419 for freebsd-isdn-outgoing; Thu, 11 Jun 1998 01:03:08 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from casparc.ppp.net (mail.ppp.net [194.64.12.35]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id BAA16268 for ; Thu, 11 Jun 1998 01:02:14 -0700 (PDT) (envelope-from ernie!bert.kts.org!hm@ppp.net) Received: from ernie by casparc.ppp.net with uucp (Smail3.1.28.1 #1) id m0yk2J8-002ZlqC; Thu, 11 Jun 98 10:02 MET DST Received: from bert.kts.org(really [194.55.156.2]) by ernie.kts.org via sendmail with smtp id for ; Thu, 11 Jun 1998 09:37:44 +0200 (CEST) (Smail-3.2.0.91 1997-Jan-14 #3 built 1998-Feb-14) Received: by bert.kts.org via sendmail with stdio id for freebsd-isdn@FreeBSD.ORG; Thu, 11 Jun 1998 09:33:05 +0200 (CEST) (Smail-3.2.0.94 1997-Apr-22 #1 built 1998-Jun-6) Message-Id: From: hm@kts.org (Hellmuth Michaelis) Subject: Re: isdn-subsystem hangs with 0.61 In-Reply-To: from Dirk Meyer at "Jun 9, 98 07:18:16 am" To: dirk.meyer@dinoex.sub.org (Dirk Meyer) Date: Thu, 11 Jun 1998 09:33:05 +0200 (CEST) Cc: freebsd-isdn@FreeBSD.ORG Organization: Kitchen Table Systems Reply-To: hm@kts.org X-Mailer: ELM [version 2.4ME+ PL38 (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 Dirk Meyer wrote: > okay, i _am_ a bit paranoid, but my systems runs 24/7 all fine with > DIAGNOSTICS since i installed FreeBSD2.1.0. > > my new kernel is build now without it, and i check it soon. How did it go ? hellmuth -- Hellmuth Michaelis hm@kts.org Hamburg, Europe A duck is like a bicycle because they both have two wheels except the duck (terry@cs.weber.edu) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Thu Jun 11 11:02:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA15118 for freebsd-isdn-outgoing; Thu, 11 Jun 1998 11:02:32 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from casparc.ppp.net (mail.ppp.net [194.64.12.35]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id LAA15083 for ; Thu, 11 Jun 1998 11:02:15 -0700 (PDT) (envelope-from ernie!bert.kts.org!hm@ppp.net) Received: from ernie by casparc.ppp.net with uucp (Smail3.1.28.1 #1) id m0ykBfl-002Zk1C; Thu, 11 Jun 98 20:02 MET DST Received: from bert.kts.org(really [194.55.156.2]) by ernie.kts.org via sendmail with smtp id for ; Thu, 11 Jun 1998 19:17:25 +0200 (CEST) (Smail-3.2.0.91 1997-Jan-14 #3 built 1998-Feb-14) Received: by bert.kts.org via sendmail with stdio id for isdn@FreeBSD.ORG; Thu, 11 Jun 1998 19:12:47 +0200 (CEST) (Smail-3.2.0.94 1997-Apr-22 #1 built 1998-Jun-6) Message-Id: From: hm@kts.org (Hellmuth Michaelis) Subject: Re: isdnd fails to accept incoming call?! In-Reply-To: from Stefan Bethke at "Jun 11, 98 01:42:49 am" To: stb@transit.hanse.de (Stefan Bethke) Date: Thu, 11 Jun 1998 19:12:47 +0200 (CEST) Cc: isdn@FreeBSD.ORG Organization: Kitchen Table Systems Reply-To: hm@kts.org X-Mailer: ELM [version 2.4ME+ PL38 (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 Stefan Bethke wrote: > Looks perfectly sane to me. To mee to. > What did I do wrong? You didn't debug it ;-) hellmuth -- Hellmuth Michaelis hm@kts.org Hamburg, Europe A duck is like a bicycle because they both have two wheels except the duck (terry@cs.weber.edu) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Jun 12 07:51:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA24243 for freebsd-isdn-outgoing; Fri, 12 Jun 1998 07:51:19 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from hcshh.hcs.de (hcshh.hcs.de [194.123.40.1]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id HAA24235 for ; Fri, 12 Jun 1998 07:51:16 -0700 (PDT) (envelope-from hm@hcs.de) Received: from hcswork.hcs.de([192.76.124.5]) (2143 bytes) by hcshh.hcs.de via sendmail with P:smtp/R:inet_hosts/T:smtp (sender: ) id for ; Fri, 12 Jun 1998 16:51:02 +0200 (METDST) (Smail-3.2.0.97 1997-Aug-19 #16 built 1997-Oct-22) Received: by hcswork.hcs.de (Smail3.1.29.0 #12) id m0ykVCT-0000bJC; Fri, 12 Jun 98 16:53 METDST Message-Id: From: hm@hcs.de (Hellmuth Michaelis) Subject: i4b-00.62-alpha-120698.tgz available for download To: freebsd-isdn@FreeBSD.ORG (ISDN Mailinglist) Date: Fri, 12 Jun 1998 16:53:05 +0200 (METDST) 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 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, a new isdn4bsd alpha (i4b-00.62-alpha-120698.tgz) has been made available on the isdn4bsd ftp site. - a driver for the Sedlbauer win speed card was contributed by German Tischler - a driver for the AVM PCMCIA Fritz!Card was contributed by Matthias Apitz - the code resetting the ISDN layers in the kernel when opening /dev/i4b (killing and restarting isdnd) has been debugged and extended so that it should work better now. Feedback and diffs welcome ;-) - isdnd has been enhanced to actually support the "usedown" keyword and to support incoming-only, outgoing-only or in/out going connections. - several bugs have been fixed and much more was done, for details please have a look at the ChangeLog file. How to access the ftp site: The ISDN4BSD package is available from: isdn4bsd@ftp.consol.de/pub -------------------------- you have to log in as user isdn4bsd -------- and give your mail address as the password. Then change to the "pub" directory. Anonymous ftp as user "ftp" or "anonymous" will NOT (!) give the desired result ! Have fun, hellmuth -- Hellmuth Michaelis Tel +49 40 559747-70 HCS Hanseatischer Computerservice GmbH Fax +49 40 559747-77 Oldesloer Strasse 97-99 Mail hm@hcs.de 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 Jun 12 08:03:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA26649 for freebsd-isdn-outgoing; Fri, 12 Jun 1998 08:03:53 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from harvey.aball.de (root@harvey.aball.de [194.77.82.26]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id IAA26643 for ; Fri, 12 Jun 1998 08:03:49 -0700 (PDT) (envelope-from alice.turbocat.de!dave@harvey.aball.de) Received: by harvey.aball.de (Smail3.1.28.1 #11) id m0ykVMj-000IyHC; Fri, 12 Jun 98 17:03 MET DST Received: from cat.turbocat.de (cat.turbocat.de [194.77.82.49]) by alice.turbocat.de (8.8.8/8.7.3) with ESMTP id QAA01060 for ; Fri, 12 Jun 1998 16:33:04 +0200 (CEST) Received: (from dave@localhost) by cat.turbocat.de (8.8.5/8.7.3) id QAA01189 for freebsd-isdn@FreeBSD.ORG; Fri, 12 Jun 1998 16:33:09 +0200 (MET DST) Message-Id: <199806121433.QAA01189@cat.turbocat.de> Content-Type: text/plain MIME-Version: 1.0 (NeXT Mail 4.2mach v148) Received: by NeXT.Mailer (1.148) From: David Wetzel Date: Fri, 12 Jun 98 16:33:08 +0200 To: ISDN-List Subject: New version? Organisation: Turbocat's Development http://www.turbocat.de/ Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi! I am planning to upgrade my i4b installation soon. Is there a new version coming up? --- _ _ _(_)(_)_ David Wetzel, Turbocat's Development, (_) __ (_) Buchhorster Strasse, D-16567 Muehlenbeck/Berlin, FRG, _/ \_ Fax +49 33056 82835 NeXTmail dave@turbocat.de (______) http://www.turbocat.de/ DEVELOPMENT * CONSULTING * ADMINISTRATION WATCH OUT FOR TURBOFAX for OPENSTEP! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Jun 12 12:00:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA16080 for freebsd-isdn-outgoing; Fri, 12 Jun 1998 12:00:31 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from foobar.franken.de (logix@foobar.franken.de [194.94.249.81]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA15834 for ; Fri, 12 Jun 1998 11:59:46 -0700 (PDT) (envelope-from logix@foobar.franken.de) Received: (from logix@localhost) by foobar.franken.de (8.8.8/8.8.5) id UAA20285; Fri, 12 Jun 1998 20:59:28 +0200 (CEST) Message-ID: <19980612205928.58438@foobar.franken.de> Date: Fri, 12 Jun 1998 20:59:28 +0200 From: Harold Gutch To: freebsd-isdn@FreeBSD.ORG Subject: problems compiling i4b 00.62 Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i X-Organisation: BatmanSystemDistribution X-Mission: To free the world from the Penguin Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, well, after having major problems getting i4b 00.61 to work, even with an AVM Fritz! card, I downloaded 00.62 today, installed it and added the new options for the Sedlbauer card to my kernel configfile configfile, as i wanted to try i4b with my Teledat 100. When compiling the kernel, i got the following errormsg: loading kernel i4b_isic.o: Undefined symbol `_isic_attach_sws' referenced from text segment *** Error code 1 As I havent ever modified anything in my kernel-sources myself, I just had a look, and commented out lines 421 - 425 in /usr/src/sys/i4b/layer1/i4b_isic.c. Compiling then worked fine, but I guess that this will break things and i4b will not work at all afterwards. As I dont have the time to test stuff today, I didnt even reboot and test, if I dont know more by tomorrow, I will test it then, as soon as I have the time :). When editing i4b_isic.c i noticed that isicprobe() does not do a isic_probe_sws(), what I would expect it to do. After modifying the parts a bit, i got an "Undefined symbol _isic_probe_sws ..." error when compiling. Are these parts simply missing in the source-tree or is this the way it's meant to be (sws not being probed) ? -- bye, logix Sleep is an abstinence syndrome wich occurs due to lack of caffein. Wed Mar 4 04:53:33 CET 1998 #unix, ircnet To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Jun 12 15:22:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA29584 for freebsd-isdn-outgoing; Fri, 12 Jun 1998 15:22:07 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from maulwurf.franken.de (root@maulwurf.franken.de [193.141.110.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA29565 for ; Fri, 12 Jun 1998 15:22:03 -0700 (PDT) (envelope-from gaspode.franken.de!tanis@maulwurf.franken.de) Received: by maulwurf.franken.de via rmail with stdio id for freebsd-isdn@freebsd.org; Sat, 13 Jun 1998 00:21:45 +0200 (MET DST) (Smail-3.2 1996-Jul-4 #1 built DST-May-30) Received: (from tanis@localhost) by gaspode.franken.de (8.8.8/8.8.8) id AAA01299; Sat, 13 Jun 1998 00:19:43 +0200 (CEST) (envelope-from tanis) Message-ID: <19980613001943.28632@gaspode.franken.de> Date: Sat, 13 Jun 1998 00:19:43 +0200 From: German Tischler To: Harold Gutch Cc: freebsd-isdn@FreeBSD.ORG Subject: Re: problems compiling i4b 00.62 References: <19980612205928.58438@foobar.franken.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.76 In-Reply-To: <19980612205928.58438@foobar.franken.de>; from Harold Gutch on Fri, Jun 12, 1998 at 08:59:28PM +0200 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Jun 12, 1998 at 08:59:28PM +0200, Harold Gutch wrote: > Hi, > > well, after having major problems getting i4b 00.61 to work, even > with an AVM Fritz! card, I downloaded 00.62 today, installed it > and added the new options for the Sedlbauer card to my kernel > configfile configfile, as i wanted to try i4b with my Teledat 100. > > When compiling the kernel, i got the following errormsg: > loading kernel > i4b_isic.o: Undefined symbol `_isic_attach_sws' referenced from text segment > *** Error code 1 I'm using the following isdn specific config file lines: controller pnp0 device isic0 at isa? port 0x100 net irq 5 flags 0x18 vector isicintr device isic0 at isa? port 0x300 net irq 5 flags 0x18 vector isicintr options SEDLBAUER options "I4B_PNP" pseudo-device "i4bq921" pseudo-device "i4bq931" pseudo-device "i4b" pseudo-device "i4btrc" 4 pseudo-device "i4bctl" pseudo-device "i4brbch" 4 pseudo-device "i4bipr" 4 options IPR_VJ pseudo-device "i4bisppp" 4 pseudo-device sppp 4 Which is enough for using the card for syncppp and ip over raw hdlc. (Note: it is necessary to have TWO (!) isic0 entries in your config file, which is a hack for now, because PnP support in i4b is experimental.) PnP is also mandatory. (which i think is most likely you forgot). If your bios leaves the card disabled, boot with -c and use: pnp 1 0 os enable port0 0x270 irq0 11 Or something that would suit you ( man pnp ). -- German Tischler tanis@gaspode.franken.de Apple eaten (core dumped) tanis@cip.informatik.uni-wuerzburg.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Jun 12 18:34:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA05895 for freebsd-isdn-outgoing; Fri, 12 Jun 1998 18:34:34 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from stoned.rhein-main.de (strange@NAFp2-254.rz.uni-frankfurt.de [141.2.23.254]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA05845 for ; Fri, 12 Jun 1998 18:34:22 -0700 (PDT) (envelope-from strange@stoned.rhein-main.de) Received: (from strange@localhost) by stoned.rhein-main.de (8.8.8/8.8.8) id DAA07292; Sat, 13 Jun 1998 03:33:08 +0200 (CEST) (envelope-from strange) Message-ID: <19980613033306.A5152@stoned.ether.net> Date: Sat, 13 Jun 1998 03:33:06 +0200 From: Meike Aulbach To: freebsd-isdn@FreeBSD.ORG Subject: Re: i4b not working - with teles so 16.3 nonpnp References: <19980528151603.23028@foobar.franken.de> <19980528182501.41880@foobar.franken.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1 In-Reply-To: <19980528182501.41880@foobar.franken.de>; from Harold Gutch on Thu, May 28, 1998 at 06:25:01PM +0200 Sender: owner-freebsd-isdn@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, May 28, 1998 at 06:25:01PM +0200, Harold Gutch wrote: Hi, > > installing isdn4bsd worked without the slightest problem for me, > > as did the compiling of the new kernel. same here. I'm using FreeBSD 2.2.6-RELEASE with the new isdn4bsd alpha package (i4b-00.62-alpha-120698), the week before I tested i4b-00.61 I have got a teles so 16.3 nonpnp ISDN-card with DIP switches set to io-address 180 What my kernel finds: /kernel: isic0 at 0xd80 irq 5 flags 0x4 on isa /kernel: isic0: Teles S0/16.3 /kernel: isic0: ISAC 2085 Version A1/A2 or 2086/2186 Version 1.1 (IOM-2) (Addr=0x960) /kernel: isic0: HSCX 82525 or 21525 Version 2.1 (AddrA=0x160, AddrB=0x560) [...] /kernel: i4b: ISDN call control device attached /kernel: i4bisppp: 4 ISDN SyncPPP device(s) attached /kernel: i4bctl: ISDN system control port attached /kernel: i4bipr: 4 IP over raw HDLC ISDN device(s) attached /kernel: i4btel: 2 ISDN telephony interface device(s) attached /kernel: i4brbch: 4 raw B channel access device(s) attached /kernel: i4btrc: 4 ISDN trace device(s) attached > (~0.3s) and i got a bunch of errormsgs: > /kernel: i4b-L2-i4b_tei_assign: tx TEI ID_Request > /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal > /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 > /kernel: i4b-L2-i4b_tei_assign: tx TEI ID_Request > /kernel: i4b-L1-ph_data_req: still in state F3! > /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal > /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 > /kernel: i4b-L2-i4b_tei_assign: tx TEI ID_Request > /kernel: i4b-L1-ph_data_req: still in state F3! > /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal > /kernel: i4b-L3-T303_timeout: SETUP not answered, cr = 19 > /kernel: i4b-L3-next_l3state: FSM illegal state, state = ST_OW - Out Wait EST, > event = EV_T303EXP - T303 timeout! Well, whenever I try to dial out with isdnd or isdntest, I get _exactly_ these errormsgs showed above > And the following 5 msgs were repeated once every 2 seconds until > i pressed a key to reboot: > /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal > /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 > /kernel: i4b-L2-i4b_tei_assign: tx TEI ID_Request > /kernel: i4b-L1-ph_data_req: still in state F3! > /kernel: i4b-L1-ph_data_req: No Space in TX FIFO, state = F4 Awaiting Signal My machine dont panics, but the errormsgs dont stop flooding the screen until I reboot it manually (with "shutdown -r now" or so) This is all what happens since I started with the last isdn4bsd package one week ago. I also tried different irqs for the card and the kernel finds it: /kernel: isic0 at 0xd80 irq 9 flags 0x4 on isa but after that I get about the same errata. I'm actually a little bit confused as "man isic" says that my teles card is supported. Did I miss anything important left to do ? Except of configuring /etc/isdn/isdnd.rc which isn't even necessary for isdntest afaik. Any suggestions ? bye, Meike -- Meike Aulbach PGP Key fingerprint = 66 05 8B 5E AD 80 60 DE 06 EA 60 D6 E0 D8 F1 43 The universe rings with milky way music To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message From owner-freebsd-isdn Fri Jun 12 23:02:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA05232 for freebsd-isdn-outgoing; Fri, 12 Jun 1998 23:02:07 -0700 (PDT) (envelope-from owner-freebsd-isdn@FreeBSD.ORG) Received: from casparc.ppp.net (mail.ppp.net [194.64.12.35]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id XAA05224 for ; Fri, 12 Jun 1998 23:02:04 -0700 (PDT) (envelope-from ernie!bert.kts.org!hm@ppp.net) Received: from ernie by casparc.ppp.net with uucp (Smail3.1.28.1 #1) id m0ykjO5-002ZjfC; Sat, 13 Jun 98 08:02 MET DST Received: from bert.kts.org(really [194.55.156.2]) by ernie.kts.org via sendmail with smtp id for ; Sat, 13 Jun 1998 07:44:29 +0200 (CEST) (Smail-3.2.0.91 1997-Jan-14 #3 built 1998-Feb-14) Received: by bert.kts.org via sendmail with stdio id for freebsd-isdn@FreeBSD.ORG; Sat, 13 Jun 1998 07:39:43 +0200 (CEST) (Smail-3.2.0.94 1997-Apr-22 #1 built 1998-Jun-6) Message-Id: From: hm@kts.org (Hellmuth Michaelis) Subject: Re: i4b not working - with teles so 16.3 nonpnp In-Reply-To: <19980613033306.A5152@stoned.ether.net> from Meike Aulbach at "Jun 13, 98 03:33:06 am" To: strange@stoned.rhein-main.de (Meike Aulbach) Date: Sat, 13 Jun 1998 07:39:43 +0200 (CEST) Cc: freebsd-isdn@FreeBSD.ORG Organization: Kitchen Table Systems Reply-To: hm@kts.org X-Mailer: ELM [version 2.4ME+ PL38 (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 Meike Aulbach wrote: > I'm using FreeBSD 2.2.6-RELEASE with the new isdn4bsd alpha package > (i4b-00.62-alpha-120698), the week before I tested i4b-00.61 > I have got a teles so 16.3 nonpnp ISDN-card with DIP switches set to > io-address 180 > > (~0.3s) and i got a bunch of errormsgs: > > /kernel: i4b-L2-i4b_tei_assign: tx TEI ID_Request > > /kernel: i4b-L1-timer3_expired: state = F4 Awaiting Signal > > /kernel: i4b-L2-i4b_T202_timeout: unit 0, N202 = 3 > > /kernel: i4b-L2-i4b_tei_assign: tx TEI ID_Request > > /kernel: i4b-L1-ph_data_req: still in state F3! Somehow the interrupts generated by the card are not recognized by the CPU. > I'm actually a little bit confused as "man isic" says that my > teles card is supported. It is supported. Actually i have one here and it is running fine: isic0 at 0xd80 irq 9 flags 0x4 on isa isic0: Teles S0/16.3 isic0: ISAC 2085 Version A1/A2 or 2086/2186 Version 1.1 (IOM-2) (Addr=0x960) isic0: HSCX 82525 or 21525 Version 2.1 (AddrA=0x160, AddrB=0x560) > Did I miss anything important left to do ? I don't think so. > Any suggestions ? Verify your setup and your kernel configuration. When using other irq's does not help, try using the other possiblities left for setting the i/o address. The symptom you describe is a real showstopper for _some_ people. I know several people running i4b on 16.3 cards successfully but for you it does not run. I've tried hard to solve this problem without being able to reproduce it but failed obviously. So the only suggestion i can give is that someone/you who actually _has_ this problem has to sit down and debug it to find a solution or it will never be solved. In case you need help with this, just ask! Or - send me your machine so i have something here where i can reproduce it and i will start to debug it. hellmuth -- Hellmuth Michaelis hm@kts.org Hamburg, Europe A duck is like a bicycle because they both have two wheels except the duck (terry@cs.weber.edu) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isdn" in the body of the message