|
-
March 28th, 2003, 07:28 PM
#1
Slackware internet connection problem
Im using the PPP dialup utility in Gnome.
When i click connect the modem is initialized, dials up then gives me a message saying connection established!
However, after a few seconds i get disconnected and a message pops up saying 'pppd daemon died unexpectedly'.
I have lowered the speed setting of the modem and have uncommented noauth in /etc/ppp/options.
Here is the log from /var/log/messages
Code:
ppp generic driver version 2.4.1
pppd 2.4.1 started by root, uid 0
using interface ppp0
connect: ppp0 <--> /dev/tty1
connection terminated
exit
Ive also tried connecting as root but same problem!
Any ideas?
r3b007
-
March 30th, 2003, 05:24 AM
#2
Depending on how long it takes for your daemon to die, a script run in cron say every 2 - 3 minutes to check for the daemon and restart it if down may help. You'll get a relatively good idea of any trends in the daemon dying that may help you find the issue. This is NOT a fix, and you should probably bring it up in a slackware mailing list. I personally have never used ppp so I don't have any expertise on pppd and it's related config files etc.
------------------------------------------------------------------------------------------------------------------
#!/bin/csh
# The list for daemons to search for
foreach DAEMON (pppd) #this can be any daemon, or list of daemons separated by spaces.
ps -e | fgrep "$DAEMON:t" | cut -c1-8 > /dev/null
if ( $status > 0 ) then
echo "Restarting $DAEMON"
date
/etc/rc.d/rc.pppd restart
endif
end
Get OpenSolaris http://www.opensolaris.org/
-
April 1st, 2003, 11:28 PM
#3
i had a problem similar to this once before, you might want to check with your ISP. Sometimes a problem on there end can also disconnect you, im not sure if youv tried that as an option or not but call them up and see what going on there, if you still have problems....then i have no idea lol sorry, butp calling my ISP usually fixed this problem on my end.
i just did a lil searching and foun a big list of how tos that may help you also, im sorry i cant help more but hopefully you find the problem 
http://www.linux.org/docs/faq.html
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|