Re: Iptables Help Needed

2003-08-18 Thread Andre Speelmans
On Mon, 18 Aug 2003, Simran Hansrai wrote: > Hi Guys, > > I am trying to forward port 8080 on my redhat 8.0 box to port 80 on my > solaris box and I have done the following so far: > > and issued the following command: > > iptables -A PREROUTING -t nat -p tcp -d 192.168.0.7 --dport 8080 -j > D

Re: Iptables Help Needed

2003-08-18 Thread Jason Dixon
On Mon, 2003-08-18 at 09:45, Simran Hansrai wrote: > Hi Guys, > > I am trying to forward port 8080 on my redhat 8.0 box to port 80 on my > solaris box and I have done the following so far: > > Made sure that I have a "1" in my /proc/sys/net/ipv4/ip_forward file > > and issued the following comma

Re: Iptables Help Needed

2003-08-18 Thread Sean Estabrooks
On Mon, 18 Aug 2003 06:45:03 -0700 "Simran Hansrai" <[EMAIL PROTECTED]> wrote: > Hi Guys, > > I am trying to forward port 8080 on my redhat 8.0 box to port 80 on my > solaris box and I have done the following so far: > > Made sure that I have a "1" in my /proc/sys/net/ipv4/ip_forward file > > a

Re: Iptables Help Needed

2003-08-18 Thread Nick Lindsell
On Mon, 2003-08-18 at 14:45, Simran Hansrai wrote: > Hi Guys, > > I am trying to forward port 8080 on my redhat 8.0 box to port 80 on my > solaris box and I have done the following so far: > > Made sure that I have a "1" in my /proc/sys/net/ipv4/ip_forward file > > and issued the following comma

Iptables Help Needed

2003-08-18 Thread Simran Hansrai
Hi Guys, I am trying to forward port 8080 on my redhat 8.0 box to port 80 on my solaris box and I have done the following so far: Made sure that I have a "1" in my /proc/sys/net/ipv4/ip_forward file and issued the following command: iptables -A PREROUTING -t nat -p tcp -d 192.168.0.7 --dport 80

IPtables help

2003-07-26 Thread dlewis
hey , I have a question and I'm not sure if it's been done, but here goes. I am trying to setup a iptables firewall to protect my servers and local lan now the thing is that this firewall is going to be behind an natted connection. I'm using my Cisco router to do the natting and simple Access l

Re: Iptables HELP vpn

2002-11-16 Thread Jason Costomiris
On Saturday, November 16, 2002, at 10:26 AM, Jason Staudenmayer wrote: Ok here's what I have (the long version). Here's a very simple configuration that works. This assumes eth0 is outside, eth1 is inside. You should limit the services that are permitted to be forwarded from the ppp+ inter

RE: Iptables HELP vpn

2002-11-16 Thread Jason Staudenmayer
6, 2002 9:45 AM To: [EMAIL PROTECTED] Subject: Re: Iptables HELP vpn On Friday, November 15, 2002, at 09:00 PM, Yoink! wrote: > Try something like this if it's imap you are after: > > iptables -A INPUT -i ppp0 -p tcp --sport 143 -m state -j ACCEPT > iptables -A OUTPUT -o ppp0

Re: Iptables HELP vpn

2002-11-16 Thread Jason Costomiris
On Friday, November 15, 2002, at 09:00 PM, Yoink! wrote: Try something like this if it's imap you are after: iptables -A INPUT -i ppp0 -p tcp --sport 143 -m state -j ACCEPT iptables -A OUTPUT -o ppp0 -p tcp --dport 143 -m state -j ACCEPT That would only work if the IMAP server was running on

Re: Iptables HELP vpn

2002-11-15 Thread Jason Costomiris
On Friday, November 15, 2002, at 03:14 PM, Jason Staudenmayer wrote: I can't seem to figure this out. I have pptp (poptop) server running on my firewall . VPN connection is good. VPN client can't see anything on the network. Iterfaces are as follows. Eth0 internal private network Eth1 outside wo

Re: Iptables HELP vpn

2002-11-15 Thread Yoink!
On Fri, 15 Nov 2002, Jason Staudenmayer wrote: > I can't seem to figure this out. > I have pptp (poptop) server running on my firewall . > VPN connection is good. > VPN client can't see anything on the network. > Iterfaces are as follows. > Eth0 internal private network > Eth1 outside world > Ppp+

Iptables HELP vpn

2002-11-15 Thread Jason Staudenmayer
Title: Iptables HELP vpn I can't seem to figure this out. I have pptp (poptop) server running on my firewall . VPN connection is good. VPN client can't see anything on the network. Iterfaces are as follows. Eth0 internal private network Eth1 outside world Ppp+ vpn client. I nee

Re: IPTABLES help

2002-11-06 Thread Peter Robb
My favourite iptables tutorial is http://www.netfilter.org/documentation/tutorials/blueflux/ It will answer all of your question, except the blacklisted hosts. How do you want to collect/maintain this list? Regards, Peter On Fri, 2002-11-01 at 02:52, Chad Skinner wrote: > During my update of Re

IPTABLES help

2002-10-31 Thread Chad Skinner
During my update of RedHat I failed to backup my firewall script and so I am trying to recreate it and was wondering if someone would give me input into how to improve it. To outline what I have: 1. Set variables for interfaces/networks 2. Create a Table to block traffic from reserved and privat

Re: iptables help

2002-08-14 Thread Anthony Abby
Shyam, you're best bet since you don't know IPTables is to turn off IPChains in the service GUI and download Firestarter (http://firestarter.sourceforge.net) and install it. Firestarter will write your IPTables for you and save them in /etc/firestarter. You can learn how to write your own rules

iptables help

2002-08-14 Thread shyam
hi friends i am running mail server ,proxy server,php groupware on a RH7.2 machine . i need to frame iptables rules in such a way that only the http ,pop,smtp packets should allow and other all like ftp telnet etc.. and even ping i need to restrict .my network is 202.41.75.0 any help is pre

Re: Iptables -- HELP

2002-07-30 Thread Mike Burger
iptables -A INPUT -s xxx.xxx.xxx.xxx -j DROP might do it. On Mon, 29 Jul 2002, Jesse Angell wrote: > I need to block an ip with iptables ASAP.. I want it to just drop the > connection if they try to connect to ANYTHING on my server.. > How do i do this... > help asap > > ---

Re: Iptables -- HELP

2002-07-30 Thread Emmanuel Seyman
On Tue, Jul 30, 2002 at 12:54:21AM -0500, Jesse Angell wrote: > > Well.. is there any way i can do it with ipchains? Michael gave you the commands to disable ipchains and use iptables. Disabling ipchains: chkconfig --level 2345 ipchains off service ipchains stop, rmmod ip

Re: Iptables -- HELP

2002-07-29 Thread Jesse Angell
Well.. is there any way i can do it with ipchains? - Original Message - From: "Michael Fratoni" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 29, 2002 11:13 PM Subject: Re: Iptables -- HELP > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 &

Re: Iptables -- HELP

2002-07-29 Thread Michael Fratoni
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Monday 29 July 2002 11:54 pm, Roger wrote: > dumb question time. If ipchains and iptables are mutually exclusive, > why does Redhat default to both enabled? Or did I miss a check box... > Or did I need to be a little more clueful there? Both ar

Re: Iptables -- HELP

2002-07-29 Thread Roger
Around Mon,Jul 29 2002, at 10:36, Michael Fratoni, wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > On Monday 29 July 2002 10:27 pm, Jesse Angell wrote: > > Wierd.. > > What does this all mean > > /lib/modules/2.4.9-31/kernel/net/ipv4/netfilter/ip_tables.o: insmod > > Do you have any

Re: Iptables -- HELP

2002-07-29 Thread Michael Fratoni
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Monday 29 July 2002 10:27 pm, Jesse Angell wrote: > Wierd.. > What does this all mean > [root@palaceunlimited /etc]# /sbin/iptables -A INPUT -s 24.72.17.31 -j > DROP /lib/modules/2.4.9-31/kernel/net/ipv4/netfilter/ip_tables.o: > init_module: Device

Re: Iptables -- HELP

2002-07-29 Thread Jesse Angell
;C. Linus Hicks" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 29, 2002 7:52 PM Subject: Re: Iptables -- HELP > On Mon, 2002-07-29 at 20:38, Jesse Angell wrote: > > I need to block an ip with iptables ASAP.. I want it to just drop the > > connection

Re: Iptables -- HELP

2002-07-29 Thread C. Linus Hicks
On Mon, 2002-07-29 at 20:38, Jesse Angell wrote: > I need to block an ip with iptables ASAP.. I want it to just drop the > connection if they try to connect to ANYTHING on my server.. > How do i do this... > help asap iptables -A INPUT -s nn.nn.nn.nn -j DROP Linus ___

Re: Iptables -- HELP

2002-07-29 Thread Mark
On Tuesday 30 July 2002 1:38 am, Jesse Angell wrote: > I need to block an ip with iptables ASAP.. I want it to just drop > the connection if they try to connect to ANYTHING on my server.. > How do i do this... > help asap $EXTIF=your External network card (eth0,etc..) $EXTIF_IP=your External IP a

Iptables -- HELP

2002-07-29 Thread Jesse Angell
I need to block an ip with iptables ASAP.. I want it to just drop the connection if they try to connect to ANYTHING on my server.. How do i do this... help asap - Thank You, Jesse Angell Founder, PalaceUnlimited.com [EMAIL PROTECTED] ___