Re: blocking specific ips on a linux server

2002-10-07 Thread Jake Colman
The following command will block access to AOL from all client workstations connected to the server: /sbin/iptables -t nat -I PREROUTING -p tcp -s 192.168.0.0/24 --destination-port 5190 -j DROP Make sure that your source address (the "-s" option) is correct for your network. MM> Thank yo

Re: blocking specific ips on a linux server

2002-10-05 Thread Tom Pollerman
On Fri, 4 Oct 2002 16:03:39 -0400 Meghan Madel <[EMAIL PROTECTED]> wrote: > Thank you. I have blocked using the following: > > ipchains -A input -s 64.12.161.153 -j DENY > > Packets are not being received so that worked. But my ultimate goal > > did not work... > This is what I want to do...

re: blocking specific ips on a linux server

2002-10-04 Thread Susan Buczak
I should have stated ALL out bound traffic for ALL ports 1-65535 is denied. The entire port range is defined in one simple rule. then all other rules follow. (**At the firewall the ALL out bound traffic from all internal address **(our little netblock of 192.168.xxx.xxx) is first denied.) -

Re: blocking specific ips on a linux server

2002-10-04 Thread Susan Buczak
What's real successful for us is ingress/egress filtering; not blocking bunches of certain ports but rather defining which ports traffic can flow outward from, and assuming that your firewall denies all unsolicited inbound traffic by default. for instance - I have 3 ip addresses accessing the

Re: blocking specific ips on a linux server

2002-10-04 Thread Meghan Madel
Actually, that worked! Thanks juaid! On Friday, October 4, 2002, at 04:03 PM, Meghan Madel wrote: > Thank you. I have blocked using the following: > > ipchains -A input -s 64.12.161.153 -j DENY > > Packets are not being received so that worked. But my ultimate goal > did not work... > This i

Re: blocking specific ips on a linux server

2002-10-04 Thread juaid
From: "Meghan Madel" <[EMAIL PROTECTED]> > Thank you. I have blocked using the following: > ipchains -A input -s 64.12.161.153 -j DENY great! > I work at a small school that runs on a linux network. We are having a > problem with students downloading AIM on our laptops and using it > duri

Re: blocking specific ips on a linux server

2002-10-04 Thread Meghan Madel
Thank you. I have blocked using the following: ipchains -A input -s 64.12.161.153 -j DENY Packets are not being received so that worked. But my ultimate goal did not work... This is what I want to do... I work at a small school that runs on a linux network. We are having a problem with stud

Re: blocking specific ips on a linux server

2002-10-04 Thread juaid
From: "Meghan Madel" <[EMAIL PROTECTED]> > >> I have found info on the ip's, port #, etc.just don't know where > >> or how to block those. use iptables or ipchains regards, juaid -- redhat-list mailing list unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe https://listman.redha

blocking specific ips on a linux server

2002-10-04 Thread Meghan Madel
>> I apologize if you have already seen this posting and especially if >> you have answered it. I subscribed the other day to what I thought >> was this list. Turns out it was redhat-install. However, I posted >> to this listI don't know if it went through to youbut, I did >> not ev

RE: blocking specific ips on a linux server

2002-09-30 Thread Rechenberg, Andrew
block all of the AIM server IP's if you know what they are. In that case just use the ipchains commands below, or use iptables. -Original Message- From: Anthony E. Greene [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 1:24 PM To: [EMAIL PROTECTED] Subject: Re: blocking speci

Re: blocking specific ips on a linux server

2002-09-30 Thread Anthony E. Greene
On 27-Sep-2002/16:40 -0400, Meghan Madel <[EMAIL PROTECTED]> wrote: >Hello, >I would like to block AIM on a linux server. What would you recommend >is the best way to do this. I found some documentation on >"access-lists," but am not familiar with this. I couldn't tell if it >was it's own fil

Re: blocking specific ips on a linux server

2002-09-30 Thread Joe Giles
What I would do is use iptables (or ipchains). This way, you can block the port (and/or the IP). They come with the OS and they are fairly simple to set up... Hope this helps :) -- Joe Giles [EMAIL PROTECTED] AOL: mcigiles Meghan Madel said: > Hello, > I would like to block AIM on a linux serv

blocking specific ips on a linux server

2002-09-30 Thread Meghan Madel
Hello, I would like to block AIM on a linux server. What would you recommend is the best way to do this. I found some documentation on "access-lists," but am not familiar with this. I couldn't tell if it was it's own file or if this was to be added to another file. I have found info on the i