From owner-freebsd-questions Mon Aug 4 17:04:28 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id RAA07037 for questions-outgoing; Mon, 4 Aug 1997 17:04:28 -0700 (PDT) Received: from iconz.co.nz (iconz.co.nz [202.14.100.2]) by hub.freebsd.org (8.8.5/8.8.5) with SMTP id RAA07026 for ; Mon, 4 Aug 1997 17:04:21 -0700 (PDT) Received: from news.iconz.co.nz (status.gen.nz [202.14.100.1]) by iconz.co.nz (8.6.12/8.6.10) with ESMTP id MAA19354; Tue, 5 Aug 1997 12:04:07 +1200 Received: (from uucp@localhost) by news.iconz.co.nz (8.8.5/8.8.5) with UUCP id MAA01383; Tue, 5 Aug 1997 12:04:07 +1200 Received: from tui.pinnacle.co.nz (tui.pinnacle.co.nz [202.37.163.3]) by kakapo.pinnacle.co.nz (8.8.5/8.8.5) with ESMTP id LAA27493; Tue, 5 Aug 1997 11:55:49 +1200 (NZST) Received: from localhost (jonc@localhost) by tui.pinnacle.co.nz (8.8.6/8.8.6) with SMTP id LAA29943; Tue, 5 Aug 1997 11:55:49 +1200 (NZST) X-Authentication-Warning: tui.pinnacle.co.nz: jonc owned process doing -bs Date: Tue, 5 Aug 1997 11:55:49 +1200 (NZST) From: Jonathan Chen To: Dave Parks cc: freebsd-questions@FreeBSD.ORG Subject: Re: PPP Question In-Reply-To: <199708042213.QAA00663@phantom.srccomp.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk On Mon, 4 Aug 1997, Dave Parks wrote: > Hi, > > I apologize in advance if this question is answered somewhere that I haven't > looked, but after spending the afternoon surfing the WEB, I can't find it. > > I am trying to connect my home system running FreeBSD to our office's ppp > server. Our office's server is from Sonic and does not have a 'text' > interface layer. I cannot figure our how to connect without going through > the 'chat' layer. It seems that pppd always expects some form of text > username/password string to be sent from the remote host. [snip] Below is an example you can use. The key setting is: set openmode active which initiates the conversation once the phone picks up. Cheers. -- Jonathan Chen e-mail : jonc@pinnacle.co.nz Pinnacle Software Ltd Voice : +64.9.415.4460 Auckland, New Zealand Fax : +64.9.415.4250 ---------- ################################################################# # # PPP Configuration File # ################################################################# default: set device /dev/cuaa2 set speed 38400 disable lqr deny lqr set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" AT&FB0&G2&P1S11=60 OK \\dATDT\\T TIMEOUT 40 CONNECT" # # PAP connection with local ISP # isp-pap: set phone 1234567 set debug chat phase lcp accept pap set authname MyUserName set authkey MyPassword set timeout 0 set openmode active