*BSD News Article 86507


Return to BSD News archive

Path: euryale.cc.adfa.oz.au!newshost.carno.net.au!harbinger.cc.monash.edu.au!munnari.OZ.AU!news.ecn.uoknor.edu!feed1.news.erols.com!cpk-news-hub1.bbnplanet.com!news.bbnplanet.com!cam-news-hub1.bbnplanet.com!howland.erols.net!news.nacamar.de!news-kar1.dfn.de!news-stu1.dfn.de!news-mue1.dfn.de!nntp.fh-augsburg.de!inga.augusta.de!rabbit.augusta.de!usenet
From: shanee@rabbit.augusta.de (Andreas Kohout)
Newsgroups: comp.unix.bsd.freebsd.misc
Subject: Re: Help PPP
Date: 7 Jan 1997 21:02:18 GMT
Organization: Privat Site running FreeBSD
Lines: 54
Message-ID: <5audkq$4g6@rabbit.augusta.de>
References: <32D18634.3EB5@hotmail.com>
NNTP-Posting-Host: localhost.augusta.de
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
X-Newsreader: knews 0.9.8
Xref: euryale.cc.adfa.oz.au comp.unix.bsd.freebsd.misc:33831

In article <32D18634.3EB5@hotmail.com>,
	JD <jdole@hotmail.com> writes:

> can someone please help me get the PPP program up and running, 
> my ip is dynamic, 
> but my name server is 206.171.181.1
> and my domain is theworks.com

I prefer pppd, you have to recompile your kernel with 

	pseudo-device ppp 1

On condishen that 206.171.181.1 is also the IP of your provider (the remote IP):
	
you need two files, /etc/ppp/options and /etc/ppp/chat.theworks

root:/root# cat /etc/ppp/options
/dev/cuaa0
115200
lock
connect "chat -f /etc/ppp/chat.theworks"
crtscts
modem
domain theworks.com
noipdefault
passive
:206.171.181.1
defaultroute

this is: your modem is connected to cuaa0 (COM1) with 115200 baud (man pppd(1))

root:/root# cat /etc/ppp/chat.theworks
ABORT BUSY ABORT "NO CARRIER" ABORT "NO ANSWER" "" ATZ OK ATD<number> \
CONNECT "" ogin: <your-login> ssword: <your-password>

Note: I don't know wheather the backslash is ok to cut lines, write in in
only one line!

remove <number> with your providers login-number, <your-login> with Pjdole
and <your-password> with your password for example (ask your provider!).

in /etc/host.conf use hosts before bind

root:/root# cat /etc/resolv.conf
domain theworks.com
nameserver 206.171.181.1


I think that's all ...

-- 
Greeting, Andy
                                                    running FreeBSD-current
---------------------------------------------------------------------------