did you allow masquerading of your PPPX device in your firewall? also check if your 
pppx device appears in your routing table 
(although proxyarp will add this for you automatically, it doesn't work. not sure why, 
but it took me a while to isolate this 
prob before.)

if not, you'll need to add the shell commands of both in your /etc/ppp/ip-up (or 
ip-up.local) and /etc/ppp/ip-down (or 
ip-down.local) scripts, like so:

"/etc/ppp/ip-up.local" file:
#/bin/bash
route add -host <client_ip> dev ppp0
/sbin/ipchains -A input -i ppp0 -s <client_ip> -j ACCEPT

"/etc/ppp/ip-down.local" file:
#/bin/bash
route del -host <client_ip> dev ppp0
/sbin/ipchains -D input -i ppp0 -s <client_ip> -j ACCEPT

root owns both files, and chmod-ed as 755.

regards,
dan

----- Original Message -----
From: "Alinmar B. Umlas" <[EMAIL PROTECTED]>
Date: Mon, 13 Jan 2003 14:28:42 +0800 (PHT) 
To: <[EMAIL PROTECTED]>
Subject: [plug] dial-in cant browse

> 
> 
> 
> fellow Pluggers,
> 
>        I configure my dial-in server and successfully authenticated users,
> but my problem is, the remote workstation cant browse, what seem to
> be the problem on my configuration? I used ipchains in my MASQ. can
> anyone gives me an idea how to solve it? Thanks a lot, its a big
> for me :):):)
> 
> 
> oninz <--{^0^}
> 
> 
> 
> 
> _
> Philippine Linux Users Group. Web site and archives at http://plug.linux.org.ph
> To leave: send "unsubscribe" in the body to [EMAIL PROTECTED]
> 
> Fully Searchable Archives With Friendly Web Interface at http://marc.free.net.ph
> 
> To subscribe to the Linux Newbies' List: send "subscribe" in the body to 
>[EMAIL PROTECTED]

_
Philippine Linux Users Group. Web site and archives at http://plug.linux.org.ph
To leave: send "unsubscribe" in the body to [EMAIL PROTECTED]

Fully Searchable Archives With Friendly Web Interface at http://marc.free.net.ph

To subscribe to the Linux Newbies' List: send "subscribe" in the body to 
[EMAIL PROTECTED]

Reply via email to