Linux Netfilter discussions
 help / color / mirror / Atom feed
* Blocking programs with IPtables
@ 2004-07-30 14:38 Leonardo Teves
  2004-07-30 14:48 ` Antony Stone
  2004-07-30 16:26 ` Eric Leblond
  0 siblings, 2 replies; 8+ messages in thread
From: Leonardo Teves @ 2004-07-30 14:38 UTC (permalink / raw)
  To: netfilter

Hi,
I´m new in this forum, and i have a little question.
Is there a way to block some programs with Iptables?
I want to block Microsoft Outlook recovering mail from Imap server.
I want to force all users to use Thunderbird as mail client without 
deinstalling Outlook from every workstation.
Is my question clear?
Any ideas?
Thanks in advance,

Leo.

pd: Sorry for my poor English. I´m from Argentina, so my first 
"protocol" is spanish :-)


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Blocking programs with IPtables
  2004-07-30 14:38 Blocking programs with IPtables Leonardo Teves
@ 2004-07-30 14:48 ` Antony Stone
  2004-07-30 15:41   ` Leonardo Teves
  2004-07-30 16:26 ` Eric Leblond
  1 sibling, 1 reply; 8+ messages in thread
From: Antony Stone @ 2004-07-30 14:48 UTC (permalink / raw)
  To: netfilter

On Friday 30 July 2004 3:38 pm, Leonardo Teves wrote:

> Hi,
> I´m new in this forum, and i have a little question.
> Is there a way to block some programs with Iptables?
> I want to block Microsoft Outlook recovering mail from Imap server.
> I want to force all users to use Thunderbird as mail client without
> deinstalling Outlook from every workstation.
> Is my question clear?
> Any ideas?

Your question is clear.

This cannot be done with netfilter (because all imap connections look the same 
to netfilter, no matter what client or server software is being used)

I cannot think of another way to do it either, because I would be surprised if 
Outlook sent anything in its connect message to identify itself as Outlook 
(the server end of a connection often does, but the client end usually 
doesn't, except for web browsers).

Sorry - but perhaps someone else here can prove me wrong?

Regards,

Antony.

-- 
Microsoft may sell more software than any other company, but McDonald's sell 
more burgers than any other company, and I think the other similarities are 
obvious...

                                                     Please reply to the list;
                                                           please don't CC me.



^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: Blocking programs with IPtables
@ 2004-07-30 15:04 Steve Wakelin
  2004-07-30 15:12 ` Antony Stone
  2004-07-30 15:18 ` Gavin Hamill
  0 siblings, 2 replies; 8+ messages in thread
From: Steve Wakelin @ 2004-07-30 15:04 UTC (permalink / raw)
  To: netfilter

Easiest way is to setup your IMAP server on a different port other than 143 and then configure Thunderbird to use that port.  Disable access to 143.

-----Original Message-----
From: netfilter-admin@lists.netfilter.org [mailto:netfilter-admin@lists.netfilter.org] On Behalf Of Antony Stone
Sent: 30 July 2004 15:48
To: netfilter@lists.netfilter.org
Subject: Re: Blocking programs with IPtables

On Friday 30 July 2004 3:38 pm, Leonardo Teves wrote:

> Hi,
> I´m new in this forum, and i have a little question.
> Is there a way to block some programs with Iptables?
> I want to block Microsoft Outlook recovering mail from Imap server.
> I want to force all users to use Thunderbird as mail client without
> deinstalling Outlook from every workstation.
> Is my question clear?
> Any ideas?

Your question is clear.

This cannot be done with netfilter (because all imap connections look the same 
to netfilter, no matter what client or server software is being used)

I cannot think of another way to do it either, because I would be surprised if 
Outlook sent anything in its connect message to identify itself as Outlook 
(the server end of a connection often does, but the client end usually 
doesn't, except for web browsers).

Sorry - but perhaps someone else here can prove me wrong?

Regards,

Antony.

-- 
Microsoft may sell more software than any other company, but McDonald's sell 
more burgers than any other company, and I think the other similarities are 
obvious...

                                                     Please reply to the list;
                                                           please don't CC me.




^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Blocking programs with IPtables
  2004-07-30 15:04 Steve Wakelin
@ 2004-07-30 15:12 ` Antony Stone
  2004-07-30 15:18 ` Gavin Hamill
  1 sibling, 0 replies; 8+ messages in thread
From: Antony Stone @ 2004-07-30 15:12 UTC (permalink / raw)
  To: netfilter

On Friday 30 July 2004 4:04 pm, Steve Wakelin wrote:

> Easiest way is to setup your IMAP server on a different port other than 143
> and then configure Thunderbird to use that port.  Disable access to 143.

Except that Leonardo obviously doesn't trust his users not to surreptitiously 
continue using Outlook when they've been told to use Thunderbird - so he 
doesn't trust them not to configure Outlook to connect to the same port that 
Thunderbird connects to.

Antony.

> -----Original Message-----
> From: netfilter-admin@lists.netfilter.org
> [mailto:netfilter-admin@lists.netfilter.org] On Behalf Of Antony Stone
> Sent: 30 July 2004 15:48
> To: netfilter@lists.netfilter.org
> Subject: Re: Blocking programs with IPtables
>
> On Friday 30 July 2004 3:38 pm, Leonardo Teves wrote:
> > Hi,
> > I´m new in this forum, and i have a little question.
> > Is there a way to block some programs with Iptables?
> > I want to block Microsoft Outlook recovering mail from Imap server.
> > I want to force all users to use Thunderbird as mail client without
> > deinstalling Outlook from every workstation.
> > Is my question clear?
> > Any ideas?
>
> Your question is clear.
>
> This cannot be done with netfilter (because all imap connections look the
> same to netfilter, no matter what client or server software is being used)
>
> I cannot think of another way to do it either, because I would be surprised
> if Outlook sent anything in its connect message to identify itself as
> Outlook (the server end of a connection often does, but the client end
> usually doesn't, except for web browsers).
>
> Sorry - but perhaps someone else here can prove me wrong?
>
> Regards,
>
> Antony.

-- 
"Linux is going to be part of the future. It's going to be like Unix was."

 - Peter Moore, Asia-Pacific general manager, Microsoft

                                                     Please reply to the list;
                                                           please don't CC me.



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Blocking programs with IPtables
  2004-07-30 15:04 Steve Wakelin
  2004-07-30 15:12 ` Antony Stone
@ 2004-07-30 15:18 ` Gavin Hamill
  1 sibling, 0 replies; 8+ messages in thread
From: Gavin Hamill @ 2004-07-30 15:18 UTC (permalink / raw)
  To: netfilter

On Friday 30 July 2004 16:04, Steve Wakelin wrote:
> Easiest way is to setup your IMAP server on a different port other than 143
> and then configure Thunderbird to use that port.  Disable access to 143.

My own thoughts revolved around finding some combination of SSL options / 
authentication mechanisms that Thunderbird supports, which Outlook does not, 
thereby disabling Outlook from accessing the server..

Anyway, this is wildly off-topic - sorry :)

gdh


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Blocking programs with IPtables
  2004-07-30 14:48 ` Antony Stone
@ 2004-07-30 15:41   ` Leonardo Teves
  0 siblings, 0 replies; 8+ messages in thread
From: Leonardo Teves @ 2004-07-30 15:41 UTC (permalink / raw)
  To: netfilter

Thanks Antony,
i will continue looking for a solution,
sorry if subject was a off-topic.
Leo.

Antony Stone escribió:
> Your question is clear.
> 
> This cannot be done with netfilter (because all imap connections look the same 
> to netfilter, no matter what client or server software is being used)
> 
> I cannot think of another way to do it either, because I would be surprised if 
> Outlook sent anything in its connect message to identify itself as Outlook 
> (the server end of a connection often does, but the client end usually 
> doesn't, except for web browsers).
> 
> Sorry - but perhaps someone else here can prove me wrong?
> 
> Regards,
> 
> Antony.
> 


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Blocking programs with IPtables
  2004-07-30 14:38 Blocking programs with IPtables Leonardo Teves
  2004-07-30 14:48 ` Antony Stone
@ 2004-07-30 16:26 ` Eric Leblond
  2004-08-01 16:29   ` Leonardo Teves
  1 sibling, 1 reply; 8+ messages in thread
From: Eric Leblond @ 2004-07-30 16:26 UTC (permalink / raw)
  To: netfilter

[-- Attachment #1: Type: text/plain, Size: 1051 bytes --]

On Fri, 2004-07-30 at 16:38, Leonardo Teves wrote:
> Hi,
> I´m new in this forum, and i have a little question.
> ient without deinstalling Outlook from every workstation.
> Is my question clear?
> Any ideas?

It's a planned feature of NuFW. So it can not solved your problem but it
will soon.
In fact, NuFW is a authenticating firewall which extend Netfilter. It's
basic goal has been extended with interesting features (QOS per user,
SSO capabilities, user activities logging). One of the next planned
feature is to have the client warn about the soft that established the
connection and to be able to filter on this parameter. You will be able
to say things like :
"I want user of the group accountant to be able to connect to IMAP
server with thunderbird if there OS is newer than WIN2K"

"I want admins to be able to connect to IMAP server with any client
software if OS is Linux"

More informations on :
	http://www.nufw.org

BR,
-- 
Eric Leblond <eric@regit.org>
NuFW, Now User Filtering Works : http://www.nufw.org

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Blocking programs with IPtables
  2004-07-30 16:26 ` Eric Leblond
@ 2004-08-01 16:29   ` Leonardo Teves
  0 siblings, 0 replies; 8+ messages in thread
From: Leonardo Teves @ 2004-08-01 16:29 UTC (permalink / raw)
  To: netfilter

Thanks Eric!
I was checking info about NuFW, and it's very interesting. Will look for
more news about this project.
Anyway, could this:

http://www.netfilter.org/documentation/HOWTO//netfilter-extensions-HOWTO-3.html#ss3.18

be a solution?
Thanks again,
Leo.

-- 
"Cristo vuelve pronto, prepárate"


Eric Leblond wrote:
> It's a planned feature of NuFW. So it can not solved your problem but it
> will soon.
> In fact, NuFW is a authenticating firewall which extend Netfilter. It's
> basic goal has been extended with interesting features (QOS per user,
> SSO capabilities, user activities logging). One of the next planned
> feature is to have the client warn about the soft that established the
> connection and to be able to filter on this parameter. You will be able
> to say things like :
> "I want user of the group accountant to be able to connect to IMAP
> server with thunderbird if there OS is newer than WIN2K"
> 
> "I want admins to be able to connect to IMAP server with any client
> software if OS is Linux"
> 
> More informations on :
> 	http://www.nufw.org
> 
> BR,


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2004-08-01 16:29 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-07-30 14:38 Blocking programs with IPtables Leonardo Teves
2004-07-30 14:48 ` Antony Stone
2004-07-30 15:41   ` Leonardo Teves
2004-07-30 16:26 ` Eric Leblond
2004-08-01 16:29   ` Leonardo Teves
  -- strict thread matches above, loose matches on Subject: below --
2004-07-30 15:04 Steve Wakelin
2004-07-30 15:12 ` Antony Stone
2004-07-30 15:18 ` Gavin Hamill

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox