Morning Rajendra,

Which proxy you are using ?

Yopu can achive same by ipchains or iptables also:

ipchain rules.

/sbin/ipchains -A forward -s ur_network/subnetmask -j
MASQ
Note: Make sure that ip forwarding is enable. If not
run this command. ( Same for iptables also. )

echo 1 > /proc/sys/net/ipv4/ip_forward

iptables rules.

/sbin/iptables -A FORWARD -s ur_network/subnetmask -p
tcp -j ACCEPT

This rule will allow traffic to be forwarded, as long
as the protocol was tcp, and the source was a machine
on the your subnet.

/sbin/iptables -t nat -A POSTROUTING -o eth0 -j
MASQUERADE

This rule, coupled with the one above will allow for
MASQUERADE(ing) your internal network traffic, via NAT
(Network Address Translation), so that you can share
your internet connection with the rest of your
network.


If you using Squid:

    * httpd_accel_host virtual
    * httpd_accel_port 80
    * httpd_accel_with_proxy on
    * httpd_accel_uses_host_header on
make sure that these are enable + working squid
configuration. Will make transparent proxy.

Regards,
Animesh.


--- Rajendra Rait <[EMAIL PROTECTED]> wrote:
> Hi Friends,
> 
> I am a newbie to linux. I am trying to configure
> transparent proxy,
> using Red Hat Linux 9.0, i have tried port
> forwarding rule but it
> doesn't work. But when i manually keyin the ip and
> port number in
> Internet Explorer, it works fine.
> 
> Please help me.
> 
> Rajendra.
> 
> -- 
> http://mm.ilug-bom.org.in/mailman/listinfo/linuxers
> 



                
__________________________________
Do you Yahoo!?
Yahoo! Mail Address AutoComplete - You start. We finish.
http://promotions.yahoo.com/new_mail 

-- 
http://mm.ilug-bom.org.in/mailman/listinfo/linuxers

Reply via email to