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...
> 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 during class.  I want to block it on the server.  Any
> suggestions? Thanks so much,
> Meg
> 
> 
> On Friday, October 4, 2002, at 02:41 PM, juaid wrote:
> 
> > 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
> >
> >

You might try this:

Source: www.oofle.com

To block AIM, you should filter for incoming connections from port
5190 from AOL's servers and the login server login.oscar.aol.com. 

To do this with ipchains:

ipchains -A input -b --sport 5190 -j DENY
ipchains -A input -b -s login.oscar.aol.com -j DENY

To do this with iptables:

iptables -A INPUT --sport 5190 -j REJECT
iptables -A INPUT -s login.oscar.aol.com -j REJECT


                              Regards,

                                Tom



-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]?subject=unsubscribe
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to