/* HINT: Search archives @ http://www.indyramp.com/masq/ before posting! /* ALSO: Don't quote this header. It makes you look lame :-) */
a couple of things to consider: 1 - have you enabled ip forwarding? `echo 1 > /proc/sys/net/ipv4/ip_forward` 2 - have you set up your SNAT? `iptables -t nat -A POSTROUTING -o eth0 -s 192.168.0.0/255 -j SNAT --to 172.25.1.33` 3 - if you are new to this, it could be an ACL problem too... make sure you're policies are not dropping stuff you actually want to accept. I have seen that it is good practice to log information about packets before they drop off... this way you know whether or not you need to add/modify your policies. ----- Original Message ----- From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 15, 2004 1:00 PM Subject: Masq Digest, Vol 9, Issue 1 > Send Masq mailing list submissions to > [EMAIL PROTECTED] > > To subscribe or unsubscribe via the World Wide Web, visit > http://home.indyramp.com/mailman/listinfo/masq > or, via email, send a message with subject or body 'help' to > [EMAIL PROTECTED] > > You can reach the person managing the list at > [EMAIL PROTECTED] > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Masq digest..." > > > This is the Linux IP Masquerading mailing list digest. To unsubscribe, change to realtime distribution, or adjust your other list options, visit the web page at > > http://home.indyramp.com/mailman/listinfo/masq > > PLEASE read the HOWTO and search the archives before posting. > You can start your search at http://www.indyramp.com/masq/ > Please keep general linux/unix/pc/internet questions off the list. > > Today's Topics: > > 1. tried all but still challenge! (Krishnakant Mane) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Wed, 14 Jan 2004 20:30:28 +0000 (GMT) > From: Krishnakant Mane<[EMAIL PROTECTED]> > Subject: [Masq] tried all but still challenge! > To: [EMAIL PROTECTED] > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=iso-8859-1 > > hello all, > I am krishnakant from India (Mumbai). > I am a new member to this list. > first of all I have read the howto and also consulted > many people around. I am new as I said but I have > gone through enough documentation and finally decided > to mail for help. > I went as per the howto to get my mask running. > actually it seams that it does run without errors but > when I try to connect my client machines (running > windows 98) I still can't browse the net. > what must be going wrong? > firstly I have set the firewall rules as per the > howto. I have kernel 2.4.18 with redhat 8.0 on the > server. the eth0 has the external ip 172.25.1.33 and > the internal ip of the server is 192.168.0.10 on eth1. > I have the /etc/rc.d/rc.firewall-2.4 script in place > and all the other scripts in place. > when I run the scripts they are not giving me any > error. > and well I have also set the gaitway for my client > machines to 192.168.0.10 as it is the internal ip of > my linux server. > please help me out with this problem. > if you want any more info on the server please mail > back. > I don't know what more information you people will > neede but if asked I can provide it quickly. > thanks > krishnakant. > > ________________________________________________________________________ > Yahoo! Messenger - Communicate instantly..."Ping" > your friends today! Download Messenger Now > http://uk.messenger.yahoo.com/download/index.html > > ------------------------------ > > _______________________________________________ > Masq maillist - [EMAIL PROTECTED] > http://home.indyramp.com/mailman/listinfo/masq > Admin requests handled at the above URL or [EMAIL PROTECTED] > > PLEASE read the HOWTO and search the archives before posting. > You can start your search at http://www.indyramp.com/masq/ > Please keep general linux/unix/pc/internet questions off the list. > > End of Masq Digest, Vol 9, Issue 1 > ********************************** > _______________________________________________ Masq maillist - [EMAIL PROTECTED] Admin requests can be handled at http://www.indyramp.com/masq-list/ -- THIS INCLUDES UNSUBSCRIBING! or email to [EMAIL PROTECTED] PLEASE read the HOWTO and search the archives before posting. You can start your search at http://www.indyramp.com/masq/ Please keep general linux/unix/pc/internet questions off the list.
