You can try this from the command line once you are connected:

Check what IP you have been given:

tail -100 /var/log/messages

It should have 2 lines like:
Jun  9 15:46:55 MAIN  pppd[10539]: remote IP address 192.168.0.1
Jun  9 15:46:55 MAIN  pppd[10539]: local IP address 192.168.0162

Check that they are the same as when you do:

/sbin/route -n

You can also try to remove the default route:
/sbin/route del default

And add it again:
/sbin/route add 192.168.0.1 ppp0                        # Replace IP with
your remote IP
/sbin/route add default gw 192.168.0.1 ppp0     # Replace IP with your
remote IP

or just
/sbin/route add default ppp0

Hope this works.

A copy from your /var/log/messages will help to diagnose the problem

Regards
Bernhard



Tarsi wrote:

> Here's the problem I'm having:
> RedHat 5.2 Apollo, libc5, PPP ver 2.1.2
>
> I dial into the ISP, it connects fine (using ifup ppp0), and I
> can ping my ISP, but I can't go anywhere else.  I've tried
> entering a default route with route but it gives me an error,
> saying the device doesn't support it.  It does give a default
> route if I do route -n but it doesn't look right, like it's not
> getting the right IP.  Any hints for me?
>
> Thanks a bunch.
>
> Tarsi
> 210
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-ppp" in
> the body of a message to [EMAIL PROTECTED]


-
To unsubscribe from this list: send the line "unsubscribe linux-ppp" in
the body of a message to [EMAIL PROTECTED]

Reply via email to