Ramiro

I think you want to use "transparant proxying" otherwise know as NAT or
ipmasquerading. There should be a howto on this in /usr/doc/HOWTO. Under
linux this is implemented using ipchains, so look for that too. TH basics
though would be something liek this


# IP Masquerading
echo "ip_masq 192.168.1.3"
echo "1" > /proc/sys/net/ipv4/ip_forward
/sbin/depmod -a
/sbin/modprobe ipip.o
/sbin/modprobe ip_masq_ftp.o
/sbin/modprobe ip_masq_raudio.o
#/sbin/modprobe ip_irc.o
/sbin/modprobe ip_masq_pptp.o

# sets timeouts to decent values
# This sets the timeout for an open but inactive tcp connection to
# 2 hours, a "properly" closed tcp connection to 2 minutes and an
# open/inactive udp connection to 2 hours
ipchains -M -S 7200 120 7200

/sbin/ipchains -P forward DENY
/sbin/ipchains -A forward -j MASQ -s 192.168.1.0/24 -d 0.0.0.0/0

in your rc.local file. replaxe the 192.168.1.x with ip range you use for
your internal network. Tell you no-gateway machines to use the linux box
as the gateway and they should be able to see the net - no proxy setting
needed!

you've got to love linux
charles

On Sat, 27 May 2000, Ramiro Fabricio Pulgar Montero wrote:

> Hi!
> I want to do a proxy with RedHat linux 6.2 (modem connection) for sharing my 
>internet service to my LAN but I don't know if a proxy application includes in RH.
> What can I do?
> 
> Thanks!
> 


-- 
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.

Reply via email to