Date: Thu, 4 Feb 1999 10:43:14 +0300 From: "Igor Sysoev" <igor@nitek.ru> To: <ts@polynet.lviv.ua>, <freebsd-questions@FreeBSD.ORG> Subject: Re: HELP: Dial-UP server FAQs Message-ID: <199902040744.KAA16865@gate.nitek.ru>
next in thread | raw e-mail | index | archive | help
> From: ts@polynet.lviv.ua > > On Wed, 3 Feb 1999, Igor Sysoev wrote: > > > > I try to build Dial-UP server on FreeBSD. > > > Is there any FAQs on that subject ? > > > > At http://www.nitek.ru/~igor/pppd/ you can find > > how to setup pppd in Russian. > > > Seems all the problems I had were connected with usage of cuaaX > instead of ttydX. By the way, do you know the difference between > cuaaX and ttydX ? http://www.nitek.ru/~igor/pppd/freebsd.html#cuaa > Also, I would like to ask you how can I initialize the line, > accually the modem with your Dial-UP server scenario ? > > I have the internal modem [USR Sportser w/ FAX] which seems does not > remember his setup after save [AT&W]. > Anyway, I'd like to do some modem initialization when getty starts. > I've used /etc/gettytab to make my own aka std.38400 with 'ic' string > which works pretty well with /dev/cuaaX but does not with /dev/ttydX. If you will see my url you will know why 'ic' doesn't work with ttydX. So you need to run by cron such script instead: ----- #!/bin/sh chat -V \ "" "AT" \ "OK" "ATZ" \ "OK" "ATS0=1" \ "OK" "" \ < /dev/cuaa1 > /dev/cuaa1 ----- Note in this script you have to use cuaaX. This script can be modified to set autoanswer and to disable it. > You say that part "tuning the ports" is not ready on the web page, > I think this is what I need. Please, help me. I hope to complete soon. With best regards, Igor Sysoev To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199902040744.KAA16865>