Trying to configure voicemail with H.323 all I get is the following errors when I call 123, 666, 665, 664 or 031. I'm a newbie at this so, I think it might be a simple fix. [chan_oh323.so] => (OpenH323 Channel Driver) == Parsing '/etc/asterisk/oh323.conf': Found 0:00.004 OpenH323 Wrapper OpenH323 Wrapper Version 0.0alpha0 by inAccess Networks (www.inaccessnetworks.com) on Unix Linux (2.4.20-i686) at 2003/6/15 18:28:45.055 == Registered channel type 'OH323' (OpenH323 Channel Driver) == OpenH323 Channel Ready (v0.5.2) == Parsing '/etc/asterisk/enum.conf': Found Asterisk Ready. *CLI> WARNING[344086]: File pbx.c, Line 1722 (ast_pbx_run): Channel 'H323:18299' sent into invalid extension 's' in context 'default', but no invalid handler -- Hungup 'H323:18299' 1:11.507 H225 Answer:81142f0 H225 Read error (4): Interrupted system call 1:11.547 H323 Cleaner H323 Connection ip$192.168.2.25:2255/18299 terminated. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20030615/c29b7595/attachment.htm
Tjardick van der Kraan
2003-Jun-16 01:06 UTC
[Asterisk-Users] Licensed G.729 (from digium)
Hello everyone, Can someone tell me which annex the G.729 codec from digium is. Asterisk seems to thing it's Annex B (with a warning in trasnlate.c) [codec_g729b.so] => (Annex B (floating point) G.729/PCM16 Codec Translator) == Detected 10 licensed G.729 transcoders WARNING[8192]: File translate.c, Line 218 (calc_cost): Translator 'g729tolinb' does not produce sample frames. == Registered translator 'g729tolinb' from format 8 to 6, cost 99999 == Registered translator 'lintog729b' from format 6 to 8, cost 20 But the channels like IAX only work when you put in allow=G729 (without the B) When having the G729 code in the h323.conf and it's building a connection with the H.323 channel i get: 2:51.058 ThreadID=0x00020011 h323caps.cxx(1626) H323 Added capability: G.729A{n/a} <1> 2:51.059 ThreadID=0x00020011 h323caps.cxx(1687) H323 Found capability: G.729A{n/a} <1> I think this may be the source of the problems we have with incomming H.323 call Audio only working one way... (outgoing calls do fine though) Is there just some inconsistency which needs to be fixed, or is the codec an all G.729 codec which can do both A & B ? Or do i just have my H.323 allow=G729 wrong ? Thanks in advance, Tjardick van der Kraan -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20030616/3be2e94d/attachment.htm
Larry Creech wrote:> Trying to configure voicemail with H.323 all I get is the following errors > when I call 123, 666, 665, 664 or 031. I'm a newbie at this so, I think it > might be a simple fix.Are all these aliases present in [register] section in oh323.conf? Is there a context associated with these aliases? Something like: "oh323.conf" [general] ... context=default-context ... [register] ... context=test-context alias=123 alias=666 alias=665 alias=664 alias=031 ... If you don't group the aliases under a context, then the context defined in [general] section will be used ("default-context" in this case). After that, go in your extensions.conf and build the context(s) and extensions as you like. If you want to access the VoiceMail of extension 1234 when you dial 666, add: "extensions.conf" ... [test-context] ... exten => 666,1,Voicemail(1234) ... Michael.> > [chan_oh323.so] => (OpenH323 Channel Driver) > == Parsing '/etc/asterisk/oh323.conf': Found > 0:00.004 OpenH323 Wrapper OpenH323 Wrapper Version > 0.0alpha0 by inAccess Networks (www.inaccessnetworks.com > <http://www.inaccessnetworks.com>) on Unix Linux > (2.4.20-i686) at 2003/6/15 18:28:45.055 > == Registered channel type 'OH323' (OpenH323 Channel Driver) > == OpenH323 Channel Ready (v0.5.2) > == Parsing '/etc/asterisk/enum.conf': Found > Asterisk Ready. > *CLI> WARNING[344086]: File pbx.c, Line 1722 (ast_pbx_run): Channel > 'H323:18299' sent into invalid extension 's' in context 'default', but no > invalid handler > -- Hungup 'H323:18299' > 1:11.507 H225 Answer:81142f0 H225 Read error (4): Interrupted > system call > 1:11.547 H323 Cleaner H323 Connection > ip$192.168.2.25:2255/18299 terminated.