From owner-freebsd-isdn@FreeBSD.ORG Mon Jan 21 16:38:54 2008 Return-Path: Delivered-To: freebsd-isdn@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1915016A47F for ; Mon, 21 Jan 2008 16:38:54 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe02.swip.net [212.247.154.33]) by mx1.freebsd.org (Postfix) with ESMTP id A462313C447 for ; Mon, 21 Jan 2008 16:38:53 +0000 (UTC) (envelope-from hselasky@c2i.net) X-Cloudmark-Score: 0.000000 [] Received: from [85.19.218.45] (account mc467741@c2i.net [85.19.218.45] verified) by mailfe02.swip.net (CommuniGate Pro SMTP 5.1.13) with ESMTPA id 776888288; Mon, 21 Jan 2008 17:38:51 +0100 From: Hans Petter Selasky To: freebsd-isdn@freebsd.org Date: Mon, 21 Jan 2008 17:39:37 +0100 User-Agent: KMail/1.9.7 References: <27f0c3e40801150255p7b568193wd91bbd5e320e0234@mail.gmail.com> <200801182012.11396.hselasky@c2i.net> <14997818.post@talk.nabble.com> In-Reply-To: <14997818.post@talk.nabble.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200801211739.37686.hselasky@c2i.net> Cc: kabede84 Subject: Re: Problem with FreeBSD 6.2 and isdn4bsd now don't call X-BeenThere: freebsd-isdn@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Using ISDN with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Jan 2008 16:38:54 -0000 On Monday 21 January 2008, kabede84 wrote: > Hello, > > now with the contribute of HPS my modem isdn usb are recognized, but don't > call. > > When i attach it the light "power" go up an my dmesg see /dev/ihfc63.X. > into /dev I have 3 device: ihfc63.0 ihfc63.1 ihfc63.2 . When i run the > daemon isdnd the light isdn go up, but don't call (whit ppp dial), the > light b1 and b2 are off. > I have tried various configuration but i haven't any result. > Then I have try with minicom.... when i start minicom with device ihfc63.0 > go up isdn light, ihfc63.1 go up the light b1, ihfc63.2 go up the light b2. > > Another suggestion? ( I am very boring!!) Hi, You need an entry like shown below in your /etc/isdn/isdnd.rc : #================================================================= # User-ppp example #================================================================= entry name = userppp0 usrdevicename = rbch usrdeviceunit = 0 isdncontroller = 63 isdnchannel = -1 local-phone-incoming = 1234567 remote-phone-incoming = * local-phone-dialout = 1234567 remote-phone-dialout = 1234567 # ppp(8) will override this remdial-handling = first dialin-reaction = ignore dialout-type = normal b1protocol = hdlc idletime-incoming = 0 # Should be larger than ppps timeout idletime-outgoing = 0 # Should be larger than ppps timeout ratetype = 0 unitlength = 90 unitlengthsrc = rate dialretries = 1 dialrandincr = on recoverytime = 1 # Should be smaller than ppps redial usedown = off downtries = 2 downtime = 30 Hope that helps. --HPS