LinuxSA Mailing list archives

Index: [thread] [date] [subject] [author] [stats]
  From: Chris <slackjaw77@optusnet.com.au>
  To  : Andrew Reid <andrew.reid@plug.cx>
  Date: Wed, 16 Jul 2003 17:50:26 +0930

Re: unwanted pop ups in windows

Andrew Reid wrote:

>----- Original Message -----
>From: "Luke Vanderfluit" <luke@chipcity.com.au>
>To: <linuxsa@linuxsa.org.au>
>Sent: Wednesday, July 16, 2003 4:51 PM
>Subject: unwanted pop ups in windows
>
>
>  
>
>>I know this is not a linux topic but in some ways it is??
>>    
>>
>
>The first part of your mail message is, in no way, a Linux topic. It's
>like asking an oil refinery for car maintenance tips because you use
>their fuel.
>
>  
>
>>A while back someone on this list posted about pop ups and how to
>>    
>>
>disable
>  
>
>>them, I'm wondering if someone could tell me how to disable this (this
>>    
>>
>was in
>  
>
>>the windows OS)
>>    
>>
>
>Seeing as you can recall it being on the list, perhaps browsing through
>the fully-searchable archives would be an advisable "self-help" method.
>http://www.linuxsa.org.au/mailing-list/archive-index.html
>
>  
>
>>In Linux:
>>If anyone can give me the correct syntax to reject an IP address using
>>IPtables that would do it.
>>the ip address I first need to block is: 203.161.193.78
>>    
>>
>
>Err.. Of the top of my head:
>
># iptables -A FORWARD -d 203.161.193.78 -j DROP
>

iptables -I INPUT -s 203.161.193.78 -j DROP

-A FORWARD let's the packet into your machine, and can then it that 
manner be tracked.  -I INPUT will not let it into the INPUT chain at all.

DROP will not notify the IP you are blocking that they are being 
blocked.  "-j REJECT" or "-j DENY" will notify the party sending this 
popup that it is being dropped. I would also recommend to add:
"-i <incoming interface>" eg: "-i eth0"
into your iptables statement, but that is just my methodology.

>
>That should do it, but you may need to experiment a little if it doesn't
>do the trick -- it's been a while since I've had to use iptables. Of
>course, a little time spent looking at the manpage will tell you
>everything you need to know, albiet in a bit of a confusing manner at
>times.
>
>  
>
>>It's highly annoying when I'm using cubase to record and the operation
>>    
>>
>gets
>  
>
>>interrupted by a ******** IE pop up grrrrrr.......
>>    
>>
>
>The beta version of the new Google toolbar has a popup-blocking feature
>built into it. I'm not sure if it'll help in your situation, but it may
>be worth looking into in any case. See http://toolbar.google.com/
>
>   - andrew
>
>--
>| Andrew Reid [mailto:andrew.reid@plug.cx]
>| Overworked and Underpaid Network Monkey
>| C: +61-401-946-813  F: +61-8-8379-1093
>
>  
>


-- 
LinuxSA WWW: http://www.linuxsa.org.au/ IRC: #linuxsa on irc.freenode.net
To unsubscribe from the LinuxSA list:
  mail linuxsa-request@linuxsa.org.au with "unsubscribe" as the subject


Index: [thread] [date] [subject] [author] [stats]
Return to the LinuxSA Mailing List Information Page