Linux Netfilter discussions
 help / color / mirror / Atom feed
* How can I configure my firewall to access voice chat with MSN messenger 6.2?
@ 2004-08-04 11:02 MagicWind
  0 siblings, 0 replies; 4+ messages in thread
From: MagicWind @ 2004-08-04 11:02 UTC (permalink / raw)
  To: netfilter

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

I have a linux server which is configured as a router connecting my internal network and the internet.  using the following iptables rules:

iptables -A FORWARD -i eth0 -o eth1 -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A FORWARD -i eth1 -o eth0 -j ACCEPT
iptables -A FORWARD -j LOG
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE

where eth0 is the netword adapter linking to the internet and the eth1 is the adapter linking to the internal network.
It seems the network works quite well, except for the voice connection of MSN messenger 6.2.  I can't either initial a voice chat or accept a voice chat.

I've got absolutely no idea how to make it work.  Any ideas?

[-- Attachment #2: Type: text/html, Size: 1334 bytes --]

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

* How can I configure my firewall to access voice chat with MSN  messenger 6.2?
@ 2004-08-04 15:09 MagicWind
  2004-08-04 15:30 ` Alejandro Cabrera Obed
  2004-08-04 15:51 ` Alejandro Flores
  0 siblings, 2 replies; 4+ messages in thread
From: MagicWind @ 2004-08-04 15:09 UTC (permalink / raw)
  To: netfilter

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

I have a linux server which is configured as a router connecting my internal network and the internet.  using the following iptables rules:

iptables -A FORWARD -i eth0 -o eth1 -m state --state ESTABLISHED,RELATED -j ACCEPT
iptables -A FORWARD -i eth1 -o eth0 -j ACCEPT
iptables -A FORWARD -j LOG
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE

where eth0 is the netword adapter linking to the internet and the eth1 is the adapter linking to the internal network.
It seems the network works quite well, except for the voice connection of MSN messenger 6.2.  I can't either initial a voice chat or accept a voice chat.

I've got absolutely no idea how to make it work.  Any ideas?

[-- Attachment #2: Type: text/html, Size: 1373 bytes --]

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

* Re: How can I configure my firewall to access voice chat with MSN messenger 6.2?
  2004-08-04 15:09 How can I configure my firewall to access voice chat with MSN messenger 6.2? MagicWind
@ 2004-08-04 15:30 ` Alejandro Cabrera Obed
  2004-08-04 15:51 ` Alejandro Flores
  1 sibling, 0 replies; 4+ messages in thread
From: Alejandro Cabrera Obed @ 2004-08-04 15:30 UTC (permalink / raw)
  To: MagicWind, netfilter

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

I think you have to install the H.323 module in order to establish voice over IP communications.

See here: http://roeder.goe.net/~koepi/newnat.html

And then you must to set your firewalls rules according to RTP ports.

Greetings

Alejandro
  ----- Original Message ----- 
  From: MagicWind 
  To: netfilter@lists.netfilter.org 
  Sent: Wednesday, August 04, 2004 12:09 PM
  Subject: How can I configure my firewall to access voice chat with MSN messenger 6.2?


  I have a linux server which is configured as a router connecting my internal network and the internet.  using the following iptables rules:

  iptables -A FORWARD -i eth0 -o eth1 -m state --state ESTABLISHED,RELATED -j ACCEPT
  iptables -A FORWARD -i eth1 -o eth0 -j ACCEPT
  iptables -A FORWARD -j LOG
  iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE

  where eth0 is the netword adapter linking to the internet and the eth1 is the adapter linking to the internal network.
  It seems the network works quite well, except for the voice connection of MSN messenger 6.2.  I can't either initial a voice chat or accept a voice chat.

  I've got absolutely no idea how to make it work.  Any ideas?

[-- Attachment #2: Type: text/html, Size: 2955 bytes --]

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

* Re: How can I configure my firewall to access voice chat with MSN  messenger 6.2?
  2004-08-04 15:09 How can I configure my firewall to access voice chat with MSN messenger 6.2? MagicWind
  2004-08-04 15:30 ` Alejandro Cabrera Obed
@ 2004-08-04 15:51 ` Alejandro Flores
  1 sibling, 0 replies; 4+ messages in thread
From: Alejandro Flores @ 2004-08-04 15:51 UTC (permalink / raw)
  To: MagicWind; +Cc: netfilter

	Hello there,

	Voice/video on MSN doesn't work behind firewall/nat. The negotiation of
the void/video connection is done in the payload of the packet.
	Take a look at linux-igd:
	http://linux-igd.sourceforge.net/
	It's working for me.

Regards,
Alejandro Flores

> I have a linux server which is configured as a router connecting my
> internal network and the internet.  using the following iptables
> rules:
>  
> iptables -A FORWARD -i eth0 -o eth1 -m state --state
> ESTABLISHED,RELATED -j ACCEPT
> iptables -A FORWARD -i eth1 -o eth0 -j ACCEPT
> iptables -A FORWARD -j LOG
> iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
>  
> where eth0 is the netword adapter linking to the internet and the eth1
> is the adapter linking to the internal network.
> It seems the network works quite well, except for the voice connection
> of MSN messenger 6.2.  I can't either initial a voice chat or accept a
> voice chat.
>  
> I've got absolutely no idea how to make it work.  Any ideas?
>  


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

end of thread, other threads:[~2004-08-04 15:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-08-04 15:09 How can I configure my firewall to access voice chat with MSN messenger 6.2? MagicWind
2004-08-04 15:30 ` Alejandro Cabrera Obed
2004-08-04 15:51 ` Alejandro Flores
  -- strict thread matches above, loose matches on Subject: below --
2004-08-04 11:02 MagicWind

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