[Ekiga-list] Pb firewall (iptables): No sound

2009-06-14 Thread Ray Ishido
Hi,

My problem is probably very simple but I don't find the solution.
Since I installed my firewall (Iptables) I don't have sound with ekiga,
even with all ekiga ports open. Note that It was also unsuccessful  to
work with STUNserver.
here the firewall configuration:
thanks for your help!

#!/sbin/runscript
IPTABLES=/sbin/iptables
IPTABLESSAVE=/sbin/iptables-save
IPTABLESRESTORE=/sbin/iptables-restore
FIREWALL=/etc/firewall.rules
IINTERFACE=eth0
WINTERFACE=wlan0

opts="${opts} showstatus panic save restore showoptions rules"

#depend() {
#  need net
#}

rules() {
  stop
  ebegin "Paramétrer les règles internes"

  einfo "On ignore tout par défaut"
#  $IPTABLES -A FORWARD -j LOG --log-prefix "FOWD"
#  $IPTABLES -A INPUT   -j LOG --log-prefix "INPUT"
#  $IPTABLES -A OUTPUT  -j LOG --log-prefix "OUTPUT"
  $IPTABLES -P FORWARD DROP
  $IPTABLES -P INPUT   DROP
  $IPTABLES -P OUTPUT  DROP

  # Règles par default
  einfo "Créer les chaînes d'état"
  $IPTABLES -N allowed-connection
  $IPTABLES -F allowed-connection
  $IPTABLES -A allowed-connection -m state --state ESTABLISHED,RELATED
-j ACCEPT
  $IPTABLES -A allowed-connection -i $IINTERFACE -m limit -j LOG
--log-prefix \
  "Bad packet from ${IINTERFACE}:"
  $IPTABLES -A allowed-connection -i $WINTERFACE -m limit -j LOG
--log-prefix \
  "Bad packet from ${WINTERFACE}:"
  $IPTABLES -A allowed-connection -j DROP

  # Trafic ICMP
  einfo "Créer la chaîne icmp"
  $IPTABLES -N icmp_allowed
  $IPTABLES -F icmp_allowed
  $IPTABLES -A icmp_allowed -m state --state NEW -p icmp --icmp-type \
  time-exceeded -j ACCEPT
  $IPTABLES -A icmp_allowed -m state --state NEW -p icmp --icmp-type \
  destination-unreachable -j ACCEPT
  $IPTABLES -A icmp_allowed -p icmp -j LOG --log-prefix "Bad ICMP traffic:"
  $IPTABLES -A icmp_allowed -p icmp -j DROP

  # Trafic entrant
  einfo "Créer la chaîne de trafic ssh entrant"
  $IPTABLES -N allow-ssh-traffic-in
  $IPTABLES -F allow-ssh-traffic-in
  # Protection anti Flood
  $IPTABLES -A allow-ssh-traffic-in -m limit --limit 1/second -p tcp
--tcp-flags \
  ALL RST --dport ssh -j ACCEPT
  $IPTABLES -A allow-ssh-traffic-in -m limit --limit 1/second -p tcp
--tcp-flags \
  ALL FIN --dport ssh -j ACCEPT
  $IPTABLES -A allow-ssh-traffic-in -m limit --limit 1/second -p tcp
--tcp-flags \
  ALL SYN --dport ssh -j ACCEPT
  $IPTABLES -A allow-ssh-traffic-in -p tcp --dport ssh -j ACCEPT

  # Trafic sortant
  einfo "Créer la chaîne de trafic SSH sortant"
  $IPTABLES -N allow-ssh-traffic-out
  $IPTABLES -F allow-ssh-traffic-out
  $IPTABLES -A allow-ssh-traffic-out -p tcp --dport ssh -j ACCEPT

  einfo "Créer la chaîne de trafic DNS sortant"
  $IPTABLES -N allow-dns-traffic-out
  $IPTABLES -F allow-dns-traffic-out
  $IPTABLES -A allow-dns-traffic-out -p udp --dport domain \
  -j ACCEPT
  $IPTABLES -A allow-dns-traffic-out -p udp --dport domain \
 -j ACCEPT

  einfo "Créer la chaîne de trafic HTTP/HTTPS sortant"
  $IPTABLES -N allow-www-traffic-out
  $IPTABLES -F allow-www-traffic-out
  $IPTABLES -A allow-www-traffic-out -p tcp --dport www -j ACCEPT
  $IPTABLES -A allow-www-traffic-out -p tcp --dport https -j ACCEPT
  $IPTABLES -A allow-www-traffic-out -p tcp --dport 8090 -j ACCEPT


  einfo "Crée les chaînes de trafic MAIL"
  $IPTABLES -N allow-email-traffic-reception
  $IPTABLES -F allow-email-traffic-reception
  $IPTABLES -A allow-email-traffic-reception -p tcp --dport 995 -j ACCEPT
  $IPTABLES -A allow-email-traffic-reception -p tcp --dport 110 -j ACCEPT
  $IPTABLES -N allow-email-traffic-envoie
  $IPTABLES -F allow-email-traffic-envoie
  $IPTABLES -A allow-email-traffic-envoie -p tcp --dport 465 -j ACCEPT
  $IPTABLES -A allow-email-traffic-envoie -p tcp --dport 25 -j ACCEPT
  $IPTABLES -A allow-email-traffic-envoie -p tcp --dport 2525 -j ACCEPT



  einfo "Crée les chaînes de trfic EKIGA"
  $IPTABLES -N allow-ekiga-traffic-reception
  $IPTABLES -F allow-ekiga-traffic-reception
  $IPTABLES -A allow-ekiga-traffic-reception -p udp --dport 3478 -j ACCEPT
  $IPTABLES -A allow-ekiga-traffic-reception -p udp --dport 3479 -j ACCEPT
  $IPTABLES -A allow-ekiga-traffic-reception -p tcp --dport 1720 -j ACCEPT
  $IPTABLES -A allow-ekiga-traffic-reception -p udp --dport 5000:5100 -j
ACCEPT
  $IPTABLES -A allow-ekiga-traffic-reception -p tcp --dport 3:30010
-j ACCEPT
  $IPTABLES -N allow-ekiga-traffic-envoie
  $IPTABLES -F allow-ekiga-traffic-envoie
  $IPTABLES -A allow-ekiga-traffic-envoie -p udp --dport 3478 -j ACCEPT
  $IPTABLES -A allow-ekiga-traffic-envoie -p udp --dport 3479 -j ACCEPT
  $IPTABLES -A allow-ekiga-traffic-envoie -p tcp --dport 1720 -j ACCEPT
  $IPTABLES -A allow-ekiga-traffic-envoie -p udp --dport 5000:5100 -j ACCEPT
  $IPTABLES -A allow-ekiga-traffic-envoie -p tcp --dport 3:30010 -j
ACCEPT


  # Détecter les scanneurs de ports.
  einfo "Créer la chaîne de détection de portscan"
  $IPTABLES -N check-flags
  $IPTABLES -F check-flags
  $IPTABLES -A check-flags -p tcp --tcp-flags ALL FIN,URG,PSH -m limit \
 

Re: [Ekiga-list] glibc detected *** ekiga: malloc(): memory corruption (fast): 0x08364930 ***

2007-09-03 Thread Ray Ishido




Hi,

thanks for the answer.

I fixed the problem. As I suspected the pb is gcc 4.2.0:
opal 2.2.8 refuse to compile if pwlib 1.10.7 was compile with gcc 4.2.0
here is the bug report for opal and a patch for gentoo (as the patch is
adapted from suse distribution I think the problem may (if not already)
also appear on binary distribution)

http://bugs.gentoo.org/show_bug.cgi?id=184542

Thanks

Ray

Julien Puydt a écrit :

  Ray Ishido a écrit :
  
  
I just recompile my entire system and can't no longer run ekiga
(v2.0.9). here is what happen:

  
  
  
  
I use a gentoo. how can I solve the problem?

  
  
I see two ways :
1) trying to fix your install : which optimization options do you use to 
compile ekiga ?
2) trying to fix your system : install a sane distribution, with nice 
binary packages which have a chance to work&break almost everywhere, 
hence can be debugged.

Snark on #ekiga
___
ekiga-list mailing list
ekiga-list@gnome.org
http://mail.gnome.org/mailman/listinfo/ekiga-list

  


-- 

-= G3NT00 P0W3RED =-


-BEGIN PGP PUBLIC KEY BLOCK-
Version: GnuPG v2.0.4 (GNU/Linux)

mQGiBEW+fVURBACgxJ0kTvhQOPzQ/rLau6wMapgcorx72iS6/B3BQFJqtiLkFs8p
URsTizxdlCnZOlla+xCCXzaOudoewHtbXgTpT4ezNpdCF2a4jDQ6CaasvgBD5Blp
alVs62ZcUqu4vkye84N+qNC5GUuxFPRoYQzfnr0tru5gmwAe7SfOFfTplwCgnNBF
6a+J8fjoQ5MCImw6Yxhu2jcD/R2XZnCvTOYgadQPN15UMpMuu3400IoXEzPBNXof
dGxnD0JpQcw+yA6dsmrfCjcJKCmAa2TWP5F+m/Mr0NdliKupFgnm9oCd8wxZLsRS
7Oag0KzDeJh9POsA3Drh1qHqPeBI5PewDvOc1lCfX5PXV8khTo/fI6gdmjElSqZX
6wfHBACEu7E23FsIPqVCmbzA0ETm48MpJrbohUwra/GVZBDuwQbiKYjD3bAJFSpC
DADHoCu93QOQbgoT8V4Zus6D+PT32oYuarYqB7R6ozVVZZZxpfP7upnLRERFmPBH
K9qFAa1RgTaQEvt7Z9pRv5ScseXtcJT36Md0jwGTvtb5N05zN7QpUmF5IElzaGlk
byAoW0VsQ10pIDxyYXkuaXNoaWRvQGdtYWlsLmNvbT6IYAQTEQIAIAUCRb59VQIb
AwYLCQgHAwIEFQIIAwQWAgMBAh4BAheAAAoJEGIRkrVm+N74Hg8AmwR7I7z+h8UJ
SRAT+q0vcl0naoFGAJ4xq+AF+W/QUf/6416vazhdDKCJzbkCDQRFvn1dEAgA4SgG
ypBeMRAxwW4FGli6/yoTXX5R2okeQCQkx9hkRHiNnAck8g6c3gaWf616s6OtGJNR
VFbgwLFO4aN50bfkuSq4cU577bjtOE6qNMjCTw3rHvctyk3xnpfy6wljx6X7QORq
0NBnEXzSIgKS4BD2RUPp8Im1uW/lWDAaRXexUfLC8i67E7GLCplT7QdA+XVEk+EX
8SZGw3qmtIRadfLj3fL3ruo8FfLBFEsWL794iUUUpvN5LreUoU1sBX76n8K9kYTo
7D83qyRPoAyBD7fXskQCQQ2CO8ejz4Z4ovt/OiKJMVWCg2f8WZehWWHIy6rXA+Vq
SE3cLtsOT3jq9Yz51wADBQgAkRFL6V0XHwkXCq8vtCGZ5M35tE/9Qb4fm65G/PjW
Z0edHe9l3aqWFRc/I9S3QRWe0lVXLuX4ZRjDo6jgvieiA+0eq2XtFOdCODv7bJBW
xqGFBN91F68QMUOUKI+AgGaw8FA/dd64/c2hX4ROki2OtsXbP2HeKLluN0017jGu
vM1WfIZjdA72X51IbDe11IQ27LYyjYthqDCyLFYOkdaMTaBCjUiXi/EVyWxn9EQ7
6woPfBHMtx/Xf2wEZXRJVBKA863/E/y4savjKbAkipoqAN5L9F25Txq+DMmTM5jj
jnQeYTna1rXsXipvUofqGcY5c9Dw06VFRgvVry84u5PrLohJBBgRAgAJBQJFvn1d
AhsMAAoJEGIRkrVm+N74KS4AoIfoCfSJ7aLIXFqu81q3aUHkA5ZwAKCCFznDwMd+
IVbBFKbNxeG6QBKk9Q==
=DSsR
-END PGP PUBLIC KEY BLOCK-




___
ekiga-list mailing list
ekiga-list@gnome.org
http://mail.gnome.org/mailman/listinfo/ekiga-list

[Ekiga-list] glibc detected *** ekiga: malloc(): memory corruption (fast): 0x08364930 ***

2007-09-01 Thread Ray Ishido
hi,

I just recompile my entire system and can't no longer run ekiga
(v2.0.9). here is what happen:

[EMAIL PROTECTED] ~ $ ekiga --debug=6
2007/09/01 16:56:31.441   0:00.807ekiga Detected
audio plugins: ALSA
2007/09/01 16:56:31.441   0:00.807ekiga Detected
video plugins: Picture,V4L2,V4L
2007/09/01 16:56:31.442   0:00.808ekiga Detected
audio plugins: ALSA
2007/09/01 16:56:31.442   0:00.808ekiga Detected
video plugins: Picture,V4L2,V4L
2007/09/01 16:56:31.646   0:01.012ekiga Detected
the following audio input devices: Default,HDA Intel with plugin ALSA
2007/09/01 16:56:31.647   0:01.013ekiga Detected
the following audio output devices: Default,HDA Intel with plugin ALSA
2007/09/01 16:56:31.647   0:01.013ekiga Detected
the following video input devices: Pixart PAC207-BCA with plugin V4L
2007/09/01 16:56:31.647   0:01.013ekiga Detected
the following audio input devices: Default,HDA Intel with plugin ALSA
2007/09/01 16:56:31.647   0:01.013ekiga Detected
the following audio output devices: Default,HDA Intel with plugin ALSA
2007/09/01 16:56:31.647   0:01.013ekiga Detected
the following video input devices: Pixart PAC207-BCA with plugin V4L
2007/09/01 16:56:33.017   0:02.383ekiga Ekiga
version 2.0.9
2007/09/01 16:56:33.018   0:02.384ekiga OPAL
version 2.2.8
2007/09/01 16:56:33.018   0:02.384ekiga PWLIB
version 1.10.7
2007/09/01 16:56:33.019   0:02.385ekiga GNOME
support enabled
2007/09/01 16:56:33.020   0:02.386ekiga
Fullscreen support disabled
2007/09/01 16:56:33.021   0:02.387ekiga DBUS
support enabled
2007/09/01 16:56:33.024   0:02.390ekiga Set TCP
port range to 3:30010
2007/09/01 16:56:33.025   0:02.391ekiga Set RTP
port range to 5000:5059
2007/09/01 16:56:33.027   0:02.393ekiga Set UDP
port range to 5060:5100
*** glibc detected *** ekiga: malloc(): memory corruption (fast):
0x08364930 ***
=== Backtrace: =
/lib/libc.so.6[0xb6a8bd3a]
/lib/libc.so.6[0xb6a8e50f]
/lib/libc.so.6(malloc+0x83)[0xb6a8f3ed]
/usr/lib/gcc/i686-pc-linux-gnu/4.2.0/libstdc++.so.6(_Znwj+0x29)[0xb6c2bfc9]
/usr/lib/libopal_linux_x86_n.so.2.2(_ZN12OpalListener11StartThreadERK9PNotifieri+0x51)[0xb6f3de51]
=== Memory map: 
08048000-080eb000 r-xp  08:03 3559939/usr/bin/ekiga
080eb000-080f2000 rw-p 000a2000 08:03 3559939/usr/bin/ekiga
080f2000-083e rw-p 080f2000 00:00 0  [heap]
b392c000-b3b85000 rw-s  00:0e 126166 /dev/v4l/video0
b3b85000-b3b86000 ---p b3b85000 00:00 0
b3b86000-b3c11000 rw-p b3b86000 00:00 0
b3c11000-b3c29000 r--p  08:03 3505162   
/usr/share/locale/fr/LC_MESSAGES/evolution-data-server-1.10.mo
b3c29000-b3c2a000 ---p b3c29000 00:00 0
b3c2a000-b3c6a000 rw-p b3c2a000 00:00 0
b3c6a000-b3c6b000 ---p b3c6a000 00:00 0
b3c6b000-b446b000 rw-p b3c6b000 00:00 0
b446b000-b4495000 r-xp  08:03 2767991   
/usr/lib/libcroco-0.6.so.3.0.1
b4495000-b4498000 rw-p 00029000 08:03 2767991   
/usr/lib/libcroco-0.6.so.3.0.1
b4498000-b44be000 r-xp  08:03 3297125   
/usr/lib/libgsf-1.so.114.0.5
b44be000-b44c rw-p 00026000 08:03 3297125   
/usr/lib/libgsf-1.so.114.0.5
b44c-b44c1000 rw-p b44c 00:00 0
b44c1000-b44e7000 r-xp  08:03 2218717   
/usr/lib/librsvg-2.so.2.16.1
b44e7000-b44e8000 rw-p 00026000 08:03 2218717   
/usr/lib/librsvg-2.so.2.16.1
b44ff000-b450 ---p b44ff000 00:00 0
b450-b4d21000 rw-p b450 00:00 0
b4d21000-b4e0 ---p b4d21000 00:00 0
b4e05000-b4e0b000 r-xp  08:03 3275057   
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-xpm.so
b4e0b000-b4e0c000 rw-p 5000 08:03 3275057   
/usr/lib/gtk-2.0/2.10.0/loaders/libpixbufloader-xpm.so
b4e0c000-b4e0d000 r-xp  08:03 3275356   
/usr/lib/gtk-2.0/2.10.0/immodules/im-cedilla.so
b4e0d000-b4e0e000 rw-p  08:03 3275356   
/usr/lib/gtk-2.0/2.10.0/immodules/im-cedilla.so
b4e0e000-b4e0f000 ---p b4e0e000 00:00 0
b4e0f000-b560f000 rw-p b4e0f000 00:00 0
b560f000-b5613000 r-xp  08:03 2596785/usr/lib/libfam.so.0.0.0
b5613000-b5614000 rw-p 3000 08:03 2596785/usr/lib/libfam.so.0.0.0
b5615000-b5618000 r--p  08:03 2648082   
/usr/share/locale/fr/LC_MESSAGES/atk10.mo
b5618000-b5623000 r-xp  08:03 2931628/lib/libbz2.so.1.0.4
b5623000-b5624000 rw-p b000 08:03 2931628/lib/libbz2.so.1.0.4
b5624000-b562b000 r--p  08:03 3294073   
/usr/share/locale/fr/LC_MESSAGES/libgnomeui-2.0.mo
b562b000-b5634000 r-xp  08:03 3299133   
/usr/lib/gnome-vfs-2.0/modules/libfile.so
b5634000-b5635000 rw-p 8000 08:03 3299133   
/usr/lib/gnome-vfs-2.0/modules/libfile.so
b5635000-b563e000

Re: [Ekiga-list] sound quality is not good

2007-06-11 Thread Ray Ishido




+1

I had very bad sound using dimaondcard before changes in my
university's network and keeping only GSM and SPEEX solved the pb :)

arnuld a écrit :

  
On 5/30/07, yannick <[EMAIL PROTECTED]> wrote:

  
  
  
  

  Damien Sandras :
  

  
  
  
  

  The audio test is usign high bandwidth codecs (G.711), probably your bandwidth
sucks...
  

  
  
  
  
iLBC is available on sip:[EMAIL PROTECTED] too...

  
  

yannick, now i got it. my bandwidth is low, only 256 kbps which gives
the download rate of 29 kb/sec only. bad part is that it continuously
up and down to 1 and 7 :-( . i checked  "Audio Codecs" section and
unchecked all those codecs that require high-bandwidth. i kept only
these 2:

GSM = 8.0 kbps
SPEEX = 8.0 kbps

and it works fine now :-)

(BTW, G.711 was unchecked by default)

  



___
ekiga-list mailing list
ekiga-list@gnome.org
http://mail.gnome.org/mailman/listinfo/ekiga-list

Re: [Ekiga-list] Fwd: Re: fuck you

2007-01-26 Thread Ray Ishido




don't really understand what's your pb with the messages... perhaps you
can explain a bit more?

Luis Miranda wrote:

  stop messenger mother fucker
  
  
  
  

  

Subject:

Re: [Ekiga-list] fuck you
  
  

From: 
Damien Sandras <[EMAIL PROTECTED]>
  
  

Date: 
Thu, 25 Jan 2007 21:53:11 +0100
  
  

To: 
Ekiga mailing list 
  

  
  

  

To: 
Ekiga mailing list 
  
  

CC: 
[EMAIL PROTECTED]
  

  
  

  

Received:

from smtp198.oninetspeed.pt ([192.168.2.198]) by RVS1.at.isp with
Microsoft SMTPSVC(6.0.3790.1830); Thu, 25 Jan 2007 23:29:24 +
  
  

Received:

from ekiga.com ([86.64.162.35]) by smtp198.oninetspeed.pt with
Microsoft SMTPSVC(6.0.3790.1830); Thu, 25 Jan 2007 20:53:26 +
  
  

Received:

from localhost (localhost [127.0.0.1]) by ekiga.com (Postfix) with
ESMTP id 462DD672FA2; Thu, 25 Jan 2007 21:56:12 +0100 (CET)
  
  

X-Virus-Scanned:

Debian amavisd-new at ekiga.com
  
  

Received:

from ekiga.com ([127.0.0.1]) by localhost (ekiga.com [127.0.0.1])
(amavisd-new, port 10024) with ESMTP id 1m3i5oI9elOj; Thu, 25 Jan 2007
21:56:11 +0100 (CET)
  
  

Received:

from [192.168.0.113] (82.153-242-81.adsl-dyn.isp.belgacom.be
[81.242.153.82]) (using SSLv3 with cipher RC4-MD5 (128/128 bits)) (No
client certificate requested) by ekiga.com (Postfix) with ESMTP id
5EB64672F9B; Thu, 25 Jan 2007 21:56:11 +0100 (CET)
  
  

In-Reply-To:

<[EMAIL PROTECTED]>
  
  

References:

<[EMAIL PROTECTED]>
  
  

Content-Type:

text/plain; charset=UTF-8
  
  

Message-ID:

<[EMAIL PROTECTED]>
  
  

MIME-Version:

1.0
  
  

X-Mailer:

Evolution 2.6.3
  
  

Content-Transfer-Encoding:

8bit
  
  

Return-Path:

[EMAIL PROTECTED]
  
  

X-OriginalArrivalTime:

25 Jan 2007 20:53:28.0391 (UTC) FILETIME=[DD4BBD70:01C740C2]
  

  
  
  Drug, alcohol or stupidity ?


Le jeudi 25 janvier 2007 à 18:57 +, Luis Miranda a écrit :
  
  
pièce jointe message de courriel (forwarded message),
"[EMAIL PROTECTED]: ekiga-list Digest, Vol 6, Issue 37"


   Message transféré 
De: [EMAIL PROTECTED]
Répondre à: ekiga-list@gnome.org
À: ekiga-list@gnome.org
Sujet: ekiga-list Digest, Vol 6, Issue 37
Date: Wed, 24 Jan 2007 17:19:30 -0500

  

___
ekiga-list mailing list
ekiga-list@gnome.org
http://mail.gnome.org/mailman/listinfo/ekiga-list



___
ekiga-list mailing list
ekiga-list@gnome.org
http://mail.gnome.org/mailman/listinfo/ekiga-list
  



___
ekiga-list mailing list
ekiga-list@gnome.org
http://mail.gnome.org/mailman/listinfo/ekiga-list

Re: [Ekiga-list] Any experiences with DiamondCard.us?

2007-01-24 Thread Ray Ishido




It work great (not as "wengo's nightmare"...)

The price a a bit high but lower than skype and it help support ekiga. 
As already said it work great and the quality is good.

one thing: in the french version of ekiga (don't know if their is also
the pb in other language) the pc-to-phone configuration ask for:
numero de compte (account id)->no pb
mot de passe (password)-> here your must enter the PIN CODE (cf your
diamond card home page), and NOT your password. perhaps it would be a
good idea to change this in further version.

cheers

Ray

Oisin Feeley wrote:
Hi all,
  
I see that diamondcard.us are the
default ekiga provider using the pc-to-phone setup tab.  What are
people's experiences with them?
  
Thanks for any info.
Oisin
  

___
ekiga-list mailing list
ekiga-list@gnome.org
http://mail.gnome.org/mailman/listinfo/ekiga-list



___
ekiga-list mailing list
ekiga-list@gnome.org
http://mail.gnome.org/mailman/listinfo/ekiga-list