Asterisk GV problem with call pickup - please help

I have asterisk setup on my router (Netgear WNDR3700v2) and it randomly decides not to pick up some of the incoming calls. As in, the jabber client receives a voice chat or a google voice call, it passes it along to the SIP devices (Linksys PAP2T ATA), and the phone rings. However, when I attempt to pick up the phone, I hear just complete silence and my other GV forwarding devices continue to ring.

Hopefully someone can tell my why I have these “No remote address on RTP instance… so dropping frame” issues.

Also to note: this setup is intended for google voice calling through asterisk ONLY. I don’t intend to use anything else (yet). I’ve simply followed directions that were available to set this up. If I’m doing something wrong in there, please let me know.

Edit: This is on Asterisk 1.8.4.4 available throught openwrt package feeds.

Here are my config files: jabber.conf, sip.conf, dialplan.conf and the output of the debugging console:

[code][general]
autoregister=yes

[myuserid]
type=client
serverhost=talk.google.com
username=myuserid@gmail.com/Talk
secret=mypassword
port=5222
usetls=yes
usesasl=yes
statusmessage=I am asterisk [ And you can too! http://goo.gl/0DD1I ]
priority=1000
status=xaway
timeout=100
[/code]

[code][general]
static=yes
writeprotect=no
clearglobalvars=no

[globals]
CONSOLE=Console/dsp ; Console interface for demo
IAXINFO=guest ; IAXtel username/password
TRUNK=Zap/G2 ; Trunk interface
TRUNKMSD=1 ; MSD digits to strip (usually 1 or 0)

[default]
exten => s,1,Set(CALLERID(name)=${DB(cidname/${CALLERID(num)})})
exten => s,n,Dial(SIP/101,10)
exten => s,n, Hangup
exten => 101, 1, Dial(SIP/101, 10)
;exten => 102, 1, Dial(SIP/102, 10)

[google-in]
exten => myuserid@gmail.com, 1, GotoIf(${DB_EXISTS(gv_dialout/channel)}?bridged)
exten => myuserid@gmail.com, n, NoOp(Callerid ${CALLERID(name)})
exten => myuserid@gmail.com, n, Set(CALLERID(num)=${SHIFT(CALLERID(name),@)})
exten => myuserid@gmail.com, n, Set(CALLERID(name)=${DB(cidname/${CALLERID(num)})})
exten => myuserid@gmail.com, n, Dial(SIP/101, 180, D(:1))
exten => myuserid@gmail.com, n(bridged),Bridge(${DB_DELETE(gv_dialout/channel)}, p)

[outbound]
include => seven-digit
include => local-devices
include => fouroneone
include => talk-gmail-outbound
include => talk-numeric-outbound
include => dial-uri

[local-devices]
exten => _1, 1, Dial(SIP/101,10)
exten => 101, 1, Dial(SIP/101,10)
exten => _2, 1, Dial(SIP/102,10)
exten => 102, 1, Dial(SIP/102,10)

[fouroneone]
exten => _411, 1, Dial(Gtalk/myuserid/18005558355@voice.google.com)
;exten => _1800NXXXXXX,1,Dial(SIP/${EXTEN}@proxy.ideasip.com,60)
;exten => _1888NXXXXXX,1,Dial(SIP/${EXTEN}@proxy.ideasip.com,60)
;exten => _1877NXXXXXX,1,Dial(SIP/${EXTEN}@proxy.ideasip.com,60)
;exten => _1866NXXXXXX,1,Dial(SIP/${EXTEN}@proxy.ideasip.com,60)

[seven-digit]
exten => _NXXXXXX,1,Set(CALLERID(dnid)=1415${CALLERID(dnid)})
exten => _NXXXXXX,n,Goto(1415${EXTEN},1)
exten => _NXXNXXXXXX,1,Set(CALLERID(dnid)=1${CALLERID(dnid)})
exten => _NXXNXXXXXX,n,Goto(1${EXTEN},1)

[talk-gmail-outbound]
exten => _[a-z].@gmail.com,1,Dial(Gtalk/myuserid/${EXTEN}@gmail.com)
exten => _[A-Z].@gmail.com,1,Dial(Gtalk/myuserid/${EXTEN}@gmail.com)

[talk-numeric-outbound]
exten => _1NXXNXXXXXX,1,Dial(Gtalk/myuserid/${EXTEN}@voice.google.com)
exten => _+1NXXNXXXXXX,1,Dial(Gtalk/myuserid/${EXTEN}@voice.google.com)

[gv-agi-outbound]
exten => _1NXXNXXXXXX,1,AGI(google-voice-dialout.agi)
exten => _+1NXXNXXXXXX,1,AGI(google-voice-dialout.agi)

[dial-uri]
exten => _[a-z].,1,Dial(SIP/${EXTEN}@${SIPDOMAIN},120,tr)
exten => _[A-Z].,1,Dial(SIP/${EXTEN}@${SIPDOMAIN},120,tr)
exten => _X.,1,Dial(SIP/${EXTEN}@${SIPDOMAIN},120,tr)
[/code]

[code][general]
context=default ; Default context for incoming calls
allowoverlap=no ; Disable overlap dialing support. (Default is yes)
bindport=5060 ; UDP Port to bind to (SIP standard port is 5060)
bindaddr=0.0.0.0 ; IP address to bind to (0.0.0.0 binds to all)
tcpenable=yes ; Enable server for incoming TCP connections (default is no)
tcpbindaddr=0.0.0.0 ; IP address for TCP server to bind to (0.0.0.0 binds to all interfaces)
srvlookup=yes ; Enable DNS SRV lookups on outbound calls

[101]
username=101
secret=secret
type=friend
callerid="Stewie Griffin <101>"
host=dynamic
context=outbound
outgoinglimit=1
incominglimit=1
canreinvite=no
mailbox=101@chiggy

[/code]

[Sep 18 17:51:53] DEBUG[5984]: res_jabber.c:1765 aji_act_hook: JABBER: Handling paktype IQ [Sep 18 17:51:53] DEBUG[5984]: chan_gtalk.c:984 gtalk_alloc: The client is guest for alloc [Sep 18 17:51:53] DEBUG[5984]: rtp_engine.c:344 ast_rtp_instance_new: Using engine 'asterisk' for RTP instance '0xab5398' [Sep 18 17:51:53] DEBUG[5984]: res_rtp_asterisk.c:472 ast_rtp_new: Allocated port 15708 for RTP instance '0xab5398' [Sep 18 17:51:53] DEBUG[5984]: rtp_engine.c:353 ast_rtp_instance_new: RTP instance '0xab5398' is setup and ready to go [Sep 18 17:51:53] DEBUG[5984]: res_rtp_asterisk.c:2370 ast_rtp_prop_set: Setup RTCP on RTP instance '0xab5398' [Sep 18 17:51:53] DEBUG[5984]: rtp_engine.c:535 ast_rtp_codecs_payloads_set_m_type: Setting payload 0 based on m type on 0xab5548 [Sep 18 17:51:53] DEBUG[5984]: rtp_engine.c:535 ast_rtp_codecs_payloads_set_m_type: Setting payload 101 based on m type on 0xab5548 [Sep 18 17:51:53] DEBUG[5984]: rtp_engine.c:638 ast_rtp_codecs_payload_formats: Incorporating payload 0 on 0xab5548 [Sep 18 17:51:53] DEBUG[5984]: rtp_engine.c:638 ast_rtp_codecs_payload_formats: Incorporating payload 101 on 0xab5548 [Sep 18 17:51:53] DEBUG[5984]: netsock2.c:125 ast_sockaddr_split_hostport: Splitting 'google.com' gives... [Sep 18 17:51:53] DEBUG[5984]: netsock2.c:155 ast_sockaddr_split_hostport: ...host 'google.com' and port '(null)'. [Sep 18 17:51:53] DEBUG[5978]: devicestate.c:340 _ast_device_state: No provider found, checking channel drivers for Gtalk - +1917xxxyyyy [Sep 18 17:51:53] DEBUG[5978]: devicestate.c:458 do_state_change: Changing state for Gtalk/+1917xxxyyyy - state 2 (In use) [Sep 18 17:51:53] DEBUG[5978]: devicestate.c:438 devstate_event: device 'Gtalk/+1917xxxyyyy' state '2' [Sep 18 17:51:53] DEBUG[5984]: acl.c:699 ast_ouraddrfor: Not an IPv4 nor IPv6 address, cannot get port. [Sep 18 17:51:53] DEBUG[5984]: acl.c:725 ast_ouraddrfor: For destination '74.125.226.116', our source address is '207.2xx.xx.xx'. [Sep 18 17:51:53] DEBUG[5984]: res_jabber.c:1397 aji_recv: XML parsing successful [Sep 18 17:51:53] DEBUG[14419]: db.c:243 ast_db_get: Unable to find key 'channel' in family 'gv_dialout' [Sep 18 17:51:53] DEBUG[14419]: pbx.c:3894 pbx_substitute_variables_helper_full: Function result is '0' [Sep 18 17:51:53] DEBUG[14419]: pbx.c:4066 pbx_extension_helper: Launching 'GotoIf' -- Executing [myuserid@gmail.com@google-in:1] GotoIf("Gtalk/+1917xxxyyyy-9075", "0?bridged") in new stack [Sep 18 17:51:53] DEBUG[14419]: pbx.c:9736 pbx_builtin_gotoif: Not taking any branch [Sep 18 17:51:53] DEBUG[14419]: pbx.c:3894 pbx_substitute_variables_helper_full: Function result is '+1917xxxyyyy@voice.google.com/srvres-MTAuMTMuMTA1LjEwOjk4NjE=' [Sep 18 17:51:53] DEBUG[14419]: pbx.c:4066 pbx_extension_helper: Launching 'NoOp' -- Executing [myuserid@gmail.com@google-in:2] NoOp("Gtalk/+1917xxxyyyy-9075", "Callerid +1917xxxyyyy@voice.google.com/srvres-MTAuMTMuMTA1LjEwOjk4NjE=") in new stack [Sep 18 17:51:53] DEBUG[14419]: pbx.c:3661 ast_str_substitute_variables_full: Evaluating 'CALLERID(name)' (from 'CALLERID(name)}' len 14) [Sep 18 17:51:53] DEBUG[14419]: pbx.c:3695 ast_str_substitute_variables_full: Function result is '+1917xxxyyyy@voice.google.com/srvres-MTAuMTMuMTA1LjEwOjk4NjE=' [Sep 18 17:51:53] DEBUG[14419]: pbx.c:3894 pbx_substitute_variables_helper_full: Function result is '+1917xxxyyyy' [Sep 18 17:51:53] DEBUG[14419]: pbx.c:4066 pbx_extension_helper: Launching 'Set' -- Executing [myuserid@gmail.com@google-in:3] Set("Gtalk/+1917xxxyyyy-9075", "CALLERID(num)=+1917xxxyyyy") in new stack [Sep 18 17:51:53] DEBUG[14419]: pbx.c:3894 pbx_substitute_variables_helper_full: Function result is '+1917xxxyyyy' [Sep 18 17:51:53] DEBUG[14419]: db.c:243 ast_db_get: Unable to find key '+1917xxxyyyy' in family 'cidname' [Sep 18 17:51:53] DEBUG[14419]: func_db.c:128 function_db_read: DB: cidname/+1917xxxyyyy not found in database. [Sep 18 17:51:53] DEBUG[14419]: pbx.c:3894 pbx_substitute_variables_helper_full: Function result is '' [Sep 18 17:51:53] DEBUG[14419]: pbx.c:4066 pbx_extension_helper: Launching 'Set' -- Executing [myuserid@gmail.com@google-in:4] Set("Gtalk/+1917xxxyyyy-9075", "CALLERID(name)=") in new stack [Sep 18 17:51:53] DEBUG[14419]: pbx.c:4066 pbx_extension_helper: Launching 'Dial' -- Executing [myuserid@gmail.com@google-in:5] Dial("Gtalk/+1917xxxyyyy-9075", "SIP/101, 180, D(:1)") in new stack [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:25335 sip_request_call: Asked to create a SIP channel with formats: 0x4 (ulaw) [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:7384 sip_alloc: Allocating new SIP dialog for 53a260612160defd4a99abd62b8430ff@(null) - INVITE (No RTP) [Sep 18 17:51:53] DEBUG[14419]: rtp_engine.c:344 ast_rtp_instance_new: Using engine 'asterisk' for RTP instance '0xb0a3c0' [Sep 18 17:51:53] DEBUG[14419]: res_rtp_asterisk.c:472 ast_rtp_new: Allocated port 15226 for RTP instance '0xb0a3c0' [Sep 18 17:51:53] DEBUG[14419]: rtp_engine.c:353 ast_rtp_instance_new: RTP instance '0xb0a3c0' is setup and ready to go [Sep 18 17:51:53] DEBUG[14419]: res_rtp_asterisk.c:2370 ast_rtp_prop_set: Setup RTCP on RTP instance '0xb0a3c0' == Using SIP RTP CoS mark 5 [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:4849 do_setnat: Setting NAT on RTP to Off [Sep 18 17:51:53] DEBUG[14419]: acl.c:699 ast_ouraddrfor: Not an IPv4 nor IPv6 address, cannot get port. [Sep 18 17:51:53] DEBUG[14419]: acl.c:725 ast_ouraddrfor: For destination '192.168.1.139', our source address is '192.168.1.1'. [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:3408 ast_sip_ouraddrfor: Setting SIP_TRANSPORT_UDP with address 192.168.1.1:5060 [Sep 18 17:51:53] DEBUG[14419]: frame.c:1242 ast_codec_choose: Could not find preferred codec - Going for the best codec [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:6723 sip_new: *** Our native formats are 0x4 (ulaw) [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:6724 sip_new: *** Joint capabilities are 0x4 (ulaw) [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:6725 sip_new: *** Our capabilities are 0x80000008000e (gsm|ulaw|alaw|h263|testlaw) [Sep 18 17:51:53] DEBUG[14419]: frame.c:1242 ast_codec_choose: Could not find preferred codec - Going for the best codec [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:6726 sip_new: *** AST_CODEC_CHOOSE formats are 0x4 (ulaw) [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:6728 sip_new: *** Our preferred formats from the incoming channel are 0x4 (ulaw) [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:6756 sip_new: This channel will not be able to handle video. [Sep 18 17:51:53] DEBUG[14419]: rtp_engine.c:1446 ast_rtp_instance_early_bridge_make_compatible: Seeded SDP of 'SIP/101-00000007' with that of 'Gtalk/+1917xxxyyyy-9075' [Sep 18 17:51:53] DEBUG[14419]: channel.c:5930 ast_channel_inherit_variables: Not copying variable DIALEDTIME. [Sep 18 17:51:53] DEBUG[14419]: channel.c:5930 ast_channel_inherit_variables: Not copying variable ANSWEREDTIME. [Sep 18 17:51:53] DEBUG[14419]: channel.c:5930 ast_channel_inherit_variables: Not copying variable DIALEDPEERNAME. [Sep 18 17:51:53] DEBUG[14419]: channel.c:5930 ast_channel_inherit_variables: Not copying variable DIALEDPEERNUMBER. [Sep 18 17:51:53] DEBUG[14419]: channel.c:5930 ast_channel_inherit_variables: Not copying variable DIALSTATUS. [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:5378 sip_call: Outgoing Call for 101 [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:5620 update_call_counter: Updating call counter for outgoing call [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:10768 add_sdp: This call needs video offers, but there's no video support enabled! [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:10815 add_sdp: ** Our capability: 0x800000080006 (gsm|ulaw|h263|testlaw) Video flag: False Text flag: False [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:10816 add_sdp: ** Our prefcodec: 0x4 (ulaw) [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:10925 add_sdp: -- Done with adding codecs to SDP [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:11064 add_sdp: Done building SDP. Settling with this capability: 0x800000080006 (gsm|ulaw|h263|testlaw) [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:2988 initialize_initreq: Initializing initreq for method INVITE - callid 5d0869f23bd82d4844ca56eb3ce9e0ee@192.168.1.1:5060 [Sep 18 17:51:53] DEBUG[14419]: chan_sip.c:3254 __sip_xmit: Trying to put 'INVITE sip:' onto UDP socket destined for 192.168.1.139:5060 -- Called 101 [Sep 18 17:51:53] DEBUG[5988]: chan_sip.c:7638 find_call: = Looking for Call ID: 5d0869f23bd82d4844ca56eb3ce9e0ee@192.168.1.1:5060 (Checking To) --From tag as11c2acb5 --To-tag [Sep 18 17:51:53] DEBUG[5988]: chan_sip.c:3987 __sip_semi_ack: (Provisional) Stopping retransmission (but retaining packet) on '5d0869f23bd82d4844ca56eb3ce9e0ee@192.168.1.1:5060' Request 102: Found [Sep 18 17:51:53] DEBUG[5988]: chan_sip.c:19048 handle_response_invite: SIP response 100 to standard invite [Sep 18 17:51:53] ERROR[5988]: pbx.c:3571 ast_func_write: Function MASTER_CHANNEL not registered [Sep 18 17:51:53] DEBUG[5988]: chan_sip.c:7638 find_call: = Looking for Call ID: 5d0869f23bd82d4844ca56eb3ce9e0ee@192.168.1.1:5060 (Checking To) --From tag as11c2acb5 --To-tag 124799b87f4b1880i0 [Sep 18 17:51:53] DEBUG[5988]: chan_sip.c:3987 __sip_semi_ack: (Provisional) Stopping retransmission (but retaining packet) on '5d0869f23bd82d4844ca56eb3ce9e0ee@192.168.1.1:5060' Request 102: Found [Sep 18 17:51:53] DEBUG[5988]: chan_sip.c:19048 handle_response_invite: SIP response 180 to standard invite [Sep 18 17:51:53] ERROR[5988]: pbx.c:3571 ast_func_write: Function MASTER_CHANNEL not registered [Sep 18 17:51:53] DEBUG[5978]: devicestate.c:340 _ast_device_state: No provider found, checking channel drivers for SIP - 101 [Sep 18 17:51:53] DEBUG[5978]: chan_sip.c:25233 sip_devicestate: Checking device state for peer 101 [Sep 18 17:51:53] DEBUG[5978]: devicestate.c:458 do_state_change: Changing state for SIP/101 - state 1 (Not in use) [Sep 18 17:51:53] DEBUG[5978]: devicestate.c:438 devstate_event: device 'SIP/101' state '1' -- SIP/101-00000007 is ringing [Sep 18 17:51:53] DEBUG[14419]: chan_gtalk.c:1669 gtalk_indicate: Don't know how to indicate condition '3' [Sep 18 17:51:53] DEBUG[14419]: channel.c:4408 ast_indicate_data: Driver for channel 'Gtalk/+1917xxxyyyy-9075' does not support indication 3, emulating it [Sep 18 17:51:53] DEBUG[14419]: channel.c:5048 set_format: Set channel Gtalk/+1917xxxyyyy-9075 to write format slin [Sep 18 17:51:53] DEBUG[14419]: channel.c:4558 ast_prod: Prodding channel 'Gtalk/+1917xxxyyyy-9075' [Sep 18 17:51:53] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:53] DEBUG[5984]: res_jabber.c:1765 aji_act_hook: JABBER: Handling paktype IQ [Sep 18 17:51:53] DEBUG[5984]: res_jabber.c:1397 aji_recv: XML parsing successful [Sep 18 17:51:53] DEBUG[5984]: res_jabber.c:1765 aji_act_hook: JABBER: Handling paktype IQ [Sep 18 17:51:53] DEBUG[5984]: chan_gtalk.c:1986 gtalk_parser: About to add candidate! [Sep 18 17:51:53] DEBUG[5984]: chan_gtalk.c:1991 gtalk_parser: Candidate Added! [Sep 18 17:51:53] DEBUG[5984]: res_jabber.c:1397 aji_recv: XML parsing successful [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:7638 find_call: = Looking for Call ID: 5d0869f23bd82d4844ca56eb3ce9e0ee@192.168.1.1:5060 (Checking To) --From tag as11c2acb5 --To-tag 124799b87f4b1880i0 [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:3908 __sip_ack: Acked pending invite 102 [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:3946 __sip_ack: Stopping retransmission on '5d0869f23bd82d4844ca56eb3ce9e0ee@192.168.1.1:5060' of Request 102: Match Found [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:19048 handle_response_invite: SIP response 200 to standard invite [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:8433 process_sdp: Processing session-level SDP v=0... UNSUPPORTED. [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:8433 process_sdp: Processing session-level SDP o=- 3896409 3896409 IN IP4 192.168.1.139... UNSUPPORTED. [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:8433 process_sdp: Processing session-level SDP s=-... UNSUPPORTED. [Sep 18 17:51:54] DEBUG[5988]: netsock2.c:125 ast_sockaddr_split_hostport: Splitting '192.168.1.139' gives... [Sep 18 17:51:54] DEBUG[5988]: netsock2.c:155 ast_sockaddr_split_hostport: ...host '192.168.1.139' and port '(null)'. [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:8433 process_sdp: Processing session-level SDP c=IN IP4 192.168.1.139... OK. [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:8433 process_sdp: Processing session-level SDP t=0 0... UNSUPPORTED. [Sep 18 17:51:54] DEBUG[5988]: rtp_engine.c:535 ast_rtp_codecs_payloads_set_m_type: Setting payload 0 based on m type on 0x2bb4ed68 [Sep 18 17:51:54] DEBUG[5988]: rtp_engine.c:535 ast_rtp_codecs_payloads_set_m_type: Setting payload 101 based on m type on 0x2bb4ed68 [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:8620 process_sdp: Processing media-level (audio) SDP a=rtpmap:0 PCMU/8000... OK. [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:8620 process_sdp: Processing media-level (audio) SDP a=rtpmap:100 NSE/8000... OK. [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:8620 process_sdp: Processing media-level (audio) SDP a=fmtp:100 192-193... UNSUPPORTED. [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:8620 process_sdp: Processing media-level (audio) SDP a=rtpmap:101 telephone-event/8000... OK. [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:8620 process_sdp: Processing media-level (audio) SDP a=fmtp:101 0-15... UNSUPPORTED. [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:8620 process_sdp: Processing media-level (audio) SDP a=ptime:30... OK. [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:8620 process_sdp: Processing media-level (audio) SDP a=sendrecv... OK. [Sep 18 17:51:54] DEBUG[5988]: rtp_engine.c:638 ast_rtp_codecs_payload_formats: Incorporating payload 0 on 0x2bb4ed68 [Sep 18 17:51:54] DEBUG[5988]: rtp_engine.c:638 ast_rtp_codecs_payload_formats: Incorporating payload 101 on 0x2bb4ed68 [Sep 18 17:51:54] DEBUG[5988]: res_rtp_asterisk.c:2391 ast_rtp_remote_address_set: Setting RTCP address on RTP instance '0xb0a3c0' [Sep 18 17:51:54] DEBUG[5988]: rtp_engine.c:516 ast_rtp_codecs_payloads_copy: Copying payload 0 from 0x2bb4ed68 to 0xb0a570 [Sep 18 17:51:54] DEBUG[5988]: rtp_engine.c:516 ast_rtp_codecs_payloads_copy: Copying payload 101 from 0x2bb4ed68 to 0xb0a570 [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:8852 process_sdp: We're settling with these formats: 0x4 (ulaw) [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:8857 process_sdp: We have an owner, now see if we need to change this call [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:5620 update_call_counter: Updating call counter for outgoing call [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:13535 build_route: build_route: Contact hop: <sip:101@192.168.1.139:5060> [Sep 18 17:51:54] DEBUG[5988]: netsock2.c:125 ast_sockaddr_split_hostport: Splitting '192.168.1.139:5060' gives... [Sep 18 17:51:54] DEBUG[5988]: netsock2.c:155 ast_sockaddr_split_hostport: ...host '192.168.1.139' and port '5060'. [Sep 18 17:51:54] DEBUG[5988]: netsock2.c:125 ast_sockaddr_split_hostport: Splitting '192.168.1.139:5060' gives... [Sep 18 17:51:54] DEBUG[5988]: netsock2.c:155 ast_sockaddr_split_hostport: ...host '192.168.1.139' and port '5060'. [Sep 18 17:51:54] DEBUG[5988]: chan_sip.c:3254 __sip_xmit: Trying to put 'ACK sip:101' onto UDP socket destined for 192.168.1.139:5060 [Sep 18 17:51:54] DEBUG[14419]: chan_gtalk.c:1669 gtalk_indicate: Don't know how to indicate condition '22' -- SIP/101-00000007 answered Gtalk/+1917xxxyyyy-9075 -- Sending DTMF '1' to the calling party. [Sep 18 17:51:54] DEBUG[5978]: devicestate.c:340 _ast_device_state: No provider found, checking channel drivers for SIP - 101 [Sep 18 17:51:54] DEBUG[5978]: chan_sip.c:25233 sip_devicestate: Checking device state for peer 101 [Sep 18 17:51:54] DEBUG[5978]: devicestate.c:458 do_state_change: Changing state for SIP/101 - state 1 (Not in use) [Sep 18 17:51:54] DEBUG[5978]: devicestate.c:438 devstate_event: device 'SIP/101' state '1' [Sep 18 17:51:54] ERROR[5988]: pbx.c:3571 ast_func_write: Function MASTER_CHANNEL not registered [Sep 18 17:51:55] DEBUG[14419]: channel.c:5048 set_format: Set channel Gtalk/+1917xxxyyyy-9075 to write format ulaw [Sep 18 17:51:55] DEBUG[14419]: chan_gtalk.c:511 gtalk_answer: Answer! [Sep 18 17:51:55] DEBUG[5978]: devicestate.c:340 _ast_device_state: No provider found, checking channel drivers for Gtalk - +1917xxxyyyy [Sep 18 17:51:55] DEBUG[5978]: devicestate.c:458 do_state_change: Changing state for Gtalk/+1917xxxyyyy - state 2 (In use) [Sep 18 17:51:55] DEBUG[5978]: devicestate.c:438 devstate_event: device 'Gtalk/+1917xxxyyyy' state '2' [Sep 18 17:51:55] DEBUG[14419]: chan_gtalk.c:1669 gtalk_indicate: Don't know how to indicate condition '-1' [Sep 18 17:51:55] DEBUG[14419]: features.c:3525 ast_bridge_call: bridge answer set, chan answer set [Sep 18 17:51:55] DEBUG[14419]: chan_gtalk.c:1669 gtalk_indicate: Don't know how to indicate condition '20' [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:725 ast_rtp_update_source: Setting the marker bit due to a source update [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[5984]: res_jabber.c:1765 aji_act_hook: JABBER: Handling paktype IQ [Sep 18 17:51:55] DEBUG[5984]: res_jabber.c:1397 aji_recv: XML parsing successful [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:55] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:56] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[5988]: chan_sip.c:7638 find_call: = Looking for Call ID: a8968ed0-bd9b7286@192.168.1.139 (Checking From) --From tag b47610e8688174eo0 --To-tag [Sep 18 17:51:57] DEBUG[5988]: chan_sip.c:23907 handle_incoming: **** Received NOTIFY (4) - Command in SIP NOTIFY [Sep 18 17:51:57] DEBUG[5988]: chan_sip.c:3254 __sip_xmit: Trying to put 'SIP/2.0 200' onto UDP socket destined for 192.168.1.139:5060 [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[5988]: chan_sip.c:3797 __sip_autodestruct: Auto destroying SIP dialog '32be21ab25fb119e1f2e77bf59c57d14@192.168.1.1:5060' [Sep 18 17:51:57] DEBUG[5988]: chan_sip.c:5768 sip_destroy: Destroying SIP dialog 32be21ab25fb119e1f2e77bf59c57d14@192.168.1.1:5060 [Sep 18 17:51:57] DEBUG[5988]: rtp_engine.c:292 instance_destructor: Destroyed RTP instance '0xb06d48' [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:57] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame [Sep 18 17:51:58] DEBUG[14419]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance '0xab5398' so dropping frame

Thanks,
cchhat01

Anyone? I really need some help with this…

I’ve tested this several times by calling my google voice number through another google account.
tested that it randomly outputs “dropping frame” related debugging message.

Almost all my calls succeeded. This is via “Call Phone” by dialling through the numerical keypad on gtalk and via “Call Computer.”

Then when i called from my dad’s cellphone, it drops frame at the time of pickup and my other gv forwarding continue to ring.
I tried to analyze the above debug trace and it seems that it takes too long to figure out where the voice data is coming from?
"receiving Stun from … "

please help.
thank you…
cchhat01

Anyone?

I have experience setting up * on my ASUS RT-N16. IMHO, this hardware is the weapon of choice because the hardware has more RAM than the majority of router and there is a community out there that uses this device with *. My system is setup with a Linksys SPA2002 and an Android phone.

I am no * ninja: from the sound of it, this is not an * configuration problem, but an inbound network problem. I would recommend that you try turning off QOS and see if this yields results. I also noticed [google-in] of your dialplan is elaborate (I don’t understand it): try something very simple and see if it solves the problem. I use:

exten => s, 1, Dial(SIP/101, 180, D(:1))

If you continue having problems, I would suggest considering an ASUS RT-N16 and configure it with Optware (OTRW) or an Obihai. I have numerous posting in this forum and the dd-wrt forum that you may wish to review.

Good luck!

I have experience setting up * on my ASUS RT-N16. IMHO, this hardware is the weapon of choice because the hardware has more RAM than the majority of router and there is a community out there that uses this device with *. My system is setup with a Linksys SPA2002 and an Android phone.

I am no * ninja: from the sound of it, this is not an * configuration problem, but an inbound network problem. I would recommend that you try turning off QOS and see if this yields results. I also noticed [google-in] of your dialplan is elaborate (I don’t understand it): try something very simple and see if it solves the problem. I use:

exten => s, 1, Dial(SIP/101, 180, D(:1))

If you continue having problems, I would suggest considering an ASUS RT-N16 and configure it with Optware (OTRW) or an Obihai. I have numerous posting in this forum and the dd-wrt forum that you may wish to review.

Good luck![/quote]

That’s some massive hardware you’ve got there. It does blow mine away in terms of FLASH and RAM.
However, the hardware support is there and asterisk is known to build and work on my Netgear device.

I’m not running any QoS.

My current dialplan is quite simple actually.

; rip out all the garbage after the "@' sign and set it as the callerid name and num
[google-in]
exten => myuserid@gmail.com,1,Set(CALLERID(num)=${SHIFT(CALLERID(name),@)})
exten => myuserid@gmail.com,n,Set(CALLERID(name)=${CALLERID(num)})
exten => myuserid@gmail.com,n,Dial(SIP/101,180,D(:1))

I’ve almost narrowed this down to the outgoing response which is generated on my asterisk server. There is a difference between the jabber xml/xmpp message which is generated when the calls fails as opposed to when the call succeeds.

I’ll post is up shortly…

cchhat01

Here’s a complete log of a call failure… with Jabber xml/xmpp messages…
hopefully this can lead someone to some miraculous finding about why my damn ATA adapter has so many “dropped” calls …

[code]OpenWrtCLI>
OpenWrt
CLI>
OpenWrtCLI>
OpenWrt
CLI>
OpenWrtCLI>
OpenWrt
CLI>
OpenWrtCLI>
OpenWrt
CLI>
OpenWrtCLI>
OpenWrt
CLI>
OpenWrt*CLI>

JABBER: myuserid INCOMING: <ses:session type=“initiate” id="SIP1198387586@10.229.66.38" initiator="+1917xxxyyyy@voice.google.com/srvres-MTAuMjI5LjEyOS4yODo5ODUx" xmlns:ses=“http://www.google.com/session”><pho:description xmlns:pho=“http://www.google.com/session/phone”><pho:payload-type id=“0” name=“PCMU” clockrate=“8000”/><pho:payload-type id=“101” name=“telephone-event”/></pho:description><nick:nick xmlns:nick=“http://jabber.org/protocol/nick”>Dad</nick:nick></ses:session>
[Sep 23 00:34:45] DEBUG[13378]: res_jabber.c:1765 aji_act_hook: JABBER: Handling paktype IQ
[Sep 23 00:34:45] DEBUG[13378]: chan_gtalk.c:984 gtalk_alloc: The client is guest for alloc
[Sep 23 00:34:45] DEBUG[13378]: rtp_engine.c:344 ast_rtp_instance_new: Using engine ‘asterisk’ for RTP instance ‘0x862188’
[Sep 23 00:34:45] DEBUG[13378]: res_rtp_asterisk.c:472 ast_rtp_new: Allocated port 10792 for RTP instance ‘0x862188’
[Sep 23 00:34:45] DEBUG[13378]: rtp_engine.c:353 ast_rtp_instance_new: RTP instance ‘0x862188’ is setup and ready to go
[Sep 23 00:34:45] DEBUG[13378]: res_rtp_asterisk.c:2370 ast_rtp_prop_set: Setup RTCP on RTP instance ‘0x862188’
[Sep 23 00:34:45] DEBUG[13378]: rtp_engine.c:535 ast_rtp_codecs_payloads_set_m_type: Setting payload 0 based on m type on 0x862338
[Sep 23 00:34:45] DEBUG[13378]: rtp_engine.c:535 ast_rtp_codecs_payloads_set_m_type: Setting payload 101 based on m type on 0x862338
[Sep 23 00:34:45] DEBUG[13378]: rtp_engine.c:638 ast_rtp_codecs_payload_formats: Incorporating payload 0 on 0x862338
[Sep 23 00:34:45] DEBUG[13378]: rtp_engine.c:638 ast_rtp_codecs_payload_formats: Incorporating payload 101 on 0x862338

JABBER: myuserid OUTGOING:
[Sep 23 00:34:45] DEBUG[13372]: devicestate.c:458 do_state_change: Changing state for Gtalk/+1917xxxyyyy - state 2 (In use)
[Sep 23 00:34:45] DEBUG[13372]: devicestate.c:438 devstate_event: device ‘Gtalk/+1917xxxyyyy’ state ‘2’
[Sep 23 00:34:45] DEBUG[16541]: pbx.c:3695 ast_str_substitute_variables_full: Function result is ‘+1917xxxyyyy@voice.google.com/srvres-MTAuMjI5LjEyOS4y
ODo5ODUx’
[Sep 23 00:34:45] DEBUG[16541]: pbx.c:3894 pbx_substitute_variables_helper_full: Function result is ‘+1917xxxyyyy’
[Sep 23 00:34:45] DEBUG[16541]: pbx.c:4066 pbx_extension_helper: Launching ‘Set’
[Sep 23 00:34:45] DEBUG[16541]: pbx.c:3894 pbx_substitute_variables_helper_full: Function result is ‘+1917xxxyyyy’
[Sep 23 00:34:45] DEBUG[16541]: pbx.c:4066 pbx_extension_helper: Launching ‘Set’
[Sep 23 00:34:45] DEBUG[16541]: pbx.c:4066 pbx_extension_helper: Launching ‘Dial’
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:25335 sip_request_call: Asked to create a SIP channel with formats: 0x4 (ulaw)
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:7384 sip_alloc: Allocating new SIP dialog for 382bdeaa6a7a053f51dc1f034e35e55b@(null) - INVITE (No RTP)
[Sep 23 00:34:45] DEBUG[16541]: rtp_engine.c:344 ast_rtp_instance_new: Using engine ‘asterisk’ for RTP instance ‘0x867858’
[Sep 23 00:34:45] DEBUG[16541]: res_rtp_asterisk.c:472 ast_rtp_new: Allocated port 19604 for RTP instance ‘0x867858’
[Sep 23 00:34:45] DEBUG[16541]: rtp_engine.c:353 ast_rtp_instance_new: RTP instance ‘0x867858’ is setup and ready to go
[Sep 23 00:34:45] DEBUG[16541]: res_rtp_asterisk.c:2370 ast_rtp_prop_set: Setup RTCP on RTP instance ‘0x867858’
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:4849 do_setnat: Setting NAT on RTP to Off
[Sep 23 00:34:45] DEBUG[16541]: acl.c:699 ast_ouraddrfor: Not an IPv4 nor IPv6 address, cannot get port.
[Sep 23 00:34:45] DEBUG[16541]: acl.c:725 ast_ouraddrfor: For destination ‘192.168.1.139’, our source address is ‘192.168.1.1’.
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:3408 ast_sip_ouraddrfor: Setting SIP_TRANSPORT_UDP with address 192.168.1.1:5060
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:6723 sip_new: *** Our native formats are 0x4 (ulaw)
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:6724 sip_new: *** Joint capabilities are 0x4 (ulaw)
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:6725 sip_new: *** Our capabilities are 0x80000008000e (gsm|ulaw|alaw|h263|testlaw)
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:6726 sip_new: *** AST_CODEC_CHOOSE formats are 0x4 (ulaw)
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:6728 sip_new: *** Our preferred formats from the incoming channel are 0x4 (ulaw)
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:6756 sip_new: This channel will not be able to handle video.
[Sep 23 00:34:45] DEBUG[16541]: rtp_engine.c:1446 ast_rtp_instance_early_bridge_make_compatible: Seeded SDP of ‘SIP/101-00000004’ with that of ‘Gtalk/+1917xxxyyyy-5a5a’
[Sep 23 00:34:45] DEBUG[16541]: channel.c:5930 ast_channel_inherit_variables: Not copying variable DIALEDTIME.
[Sep 23 00:34:45] DEBUG[16541]: channel.c:5930 ast_channel_inherit_variables: Not copying variable ANSWEREDTIME.
[Sep 23 00:34:45] DEBUG[16541]: channel.c:5930 ast_channel_inherit_variables: Not copying variable DIALEDPEERNAME.
[Sep 23 00:34:45] DEBUG[16541]: channel.c:5930 ast_channel_inherit_variables: Not copying variable DIALEDPEERNUMBER.
[Sep 23 00:34:45] DEBUG[16541]: channel.c:5930 ast_channel_inherit_variables: Not copying variable DIALSTATUS.
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:5378 sip_call: Outgoing Call for 101
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:5620 update_call_counter: Updating call counter for outgoing call
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:10768 add_sdp: This call needs video offers, but there’s no video support enabled!
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:10815 add_sdp: ** Our capability: 0x800000080006 (gsm|ulaw|h263|testlaw) Video flag: False Text flag: False
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:10816 add_sdp: ** Our prefcodec: 0x4 (ulaw)
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:10925 add_sdp: – Done with adding codecs to SDP
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:11064 add_sdp: Done building SDP. Settling with this capability: 0x800000080006 (gsm|ulaw|h263|testlaw)
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:2988 initialize_initreq: Initializing initreq for method INVITE - callid 592802867e81062a66eeb3da69327de8@192.168.1.1:5060
[Sep 23 00:34:45] DEBUG[16541]: chan_sip.c:3254 __sip_xmit: Trying to put ‘INVITE sip:’ onto UDP socket destined for 192.168.1.139:5060
[Sep 23 00:34:45] DEBUG[13378]: acl.c:699 ast_ouraddrfor: Not an IPv4 nor IPv6 address, cannot get port.
[Sep 23 00:34:45] DEBUG[13378]: acl.c:725 ast_ouraddrfor: For destination ‘74.125.226.113’, our source address is ‘20a.b.c.d’.
OpenWrt*CLI>
[Sep 23 00:34:45] DEBUG[13382]: chan_sip.c:3987 __sip_semi_ack: (Provisional) Stopping retransmission (but retaining packet) on ‘592802867e81062a66eeb3da69327de8@192.168.1.1:5060’ Request 102: Found
[Sep 23 00:34:45] ERROR[13382]: pbx.c:3571 ast_func_write: Function MASTER_CHANNEL not registered

JABBER: myuserid OUTGOING:

JABBER: myuserid OUTGOING:
[Sep 23 00:34:45] DEBUG[13378]: res_jabber.c:1397 aji_recv: XML parsing successful
[Sep 23 00:34:45] DEBUG[13382]: chan_sip.c:3987 __sip_semi_ack: (Provisional) Stopping retransmission (but retaining packet) on ‘592802867e81062a66eeb3da69327de8@192.168.1.1:5060’ Request 102: Found
[Sep 23 00:34:45] ERROR[13382]: pbx.c:3571 ast_func_write: Function MASTER_CHANNEL not registered
[Sep 23 00:34:45] DEBUG[16541]: chan_gtalk.c:1669 gtalk_indicate: Don’t know how to indicate condition ‘3’
[Sep 23 00:34:45] DEBUG[16541]: channel.c:4408 ast_indicate_data: Driver for channel ‘Gtalk/+1917xxxyyyy-5a5a’ does not support indication 3, emulating it
[Sep 23 00:34:45] DEBUG[16541]: channel.c:5048 set_format: Set channel Gtalk/+1917xxxyyyy-5a5a to write format slin
[Sep 23 00:34:45] DEBUG[16541]: channel.c:4558 ast_prod: Prodding channel ‘Gtalk/+1917xxxyyyy-5a5a’
[Sep 23 00:34:45] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:45] DEBUG[13372]: chan_sip.c:25233 sip_devicestate: Checking device state for peer 101
[Sep 23 00:34:45] DEBUG[13372]: devicestate.c:458 do_state_change: Changing state for SIP/101 - state 1 (Not in use)
[Sep 23 00:34:45] DEBUG[13372]: devicestate.c:438 devstate_event: device ‘SIP/101’ state '1’
OpenWrtCLI>
OpenWrt
CLI>

JABBER: myuserid INCOMING:
[Sep 23 00:34:45] DEBUG[13378]: res_jabber.c:1765 aji_act_hook: JABBER: Handling paktype IQ
[Sep 23 00:34:45] DEBUG[13378]: res_jabber.c:1397 aji_recv: XML parsing successful

JABBER: myuserid INCOMING:
[Sep 23 00:34:45] DEBUG[13378]: res_jabber.c:1765 aji_act_hook: JABBER: Handling paktype IQ
[Sep 23 00:34:45] DEBUG[13378]: res_jabber.c:1397 aji_recv: XML parsing successful

JABBER: myuserid INCOMING: <ses:session type=“candidates” id="SIP1198387586@10.229.66.38" initiator="+1917xxxyyyy@voice.google.com/srvres-MTAuMjI5LjEyOS4yODo5ODUx" xmlns:ses=“http://www.google.com/session”><ses:candidate name=“rtp” address=“74.125.91.126” port=“19295” username=“4QIooROu90uvnNc5” preference=“1.0” protocol=“udp” network=“mediaproxy” generation=“0” password="" type=“relay”/><ses:candidate name=“rtp” address=“74.125.91.126” port=“19294” username=“4QIooROu90uvnNc5” preference=“0.6” protocol=“tcp” network=“mediaproxy” generation=“0” password="" type=“relay”/><ses:candidate name=“rtp” address=“74.125.91.126” port=“443” username=“4QIooROu90uvnNc5” preference=“0.5” protocol=“ssltcp” network=“mediaproxy” generation=“0” password="" type=“relay”/></ses:session>
[Sep 23 00:34:46] DEBUG[13378]: res_jabber.c:1765 aji_act_hook: JABBER: Handling paktype IQ
[Sep 23 00:34:46] DEBUG[13378]: chan_gtalk.c:1986 gtalk_parser: About to add candidate!

JABBER: myuserid OUTGOING:
[Sep 23 00:34:46] DEBUG[13378]: chan_gtalk.c:1991 gtalk_parser: Candidate Added!
[Sep 23 00:34:46] DEBUG[13378]: res_jabber.c:1397 aji_recv: XML parsing successful
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:3908 __sip_ack: Acked pending invite 102
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:3946 __sip_ack: Stopping retransmission on ‘592802867e81062a66eeb3da69327de8@192.168.1.1:5060’ of Request 102: Match Found
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:8433 process_sdp: Processing session-level SDP v=0… UNSUPPORTED.
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:8433 process_sdp: Processing session-level SDP o=- 31107284 31107284 IN IP4 192.168.1.139… UNSUPPORTED.
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:8433 process_sdp: Processing session-level SDP s=-… UNSUPPORTED.
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:8433 process_sdp: Processing session-level SDP c=IN IP4 192.168.1.139… OK.
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:8433 process_sdp: Processing session-level SDP t=0 0… UNSUPPORTED.
[Sep 23 00:34:48] DEBUG[13382]: rtp_engine.c:535 ast_rtp_codecs_payloads_set_m_type: Setting payload 0 based on m type on 0x2b774d68
[Sep 23 00:34:48] DEBUG[13382]: rtp_engine.c:535 ast_rtp_codecs_payloads_set_m_type: Setting payload 101 based on m type on 0x2b774d68
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:8620 process_sdp: Processing media-level (audio) SDP a=rtpmap:0 PCMU/8000… OK.
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:8620 process_sdp: Processing media-level (audio) SDP a=rtpmap:100 NSE/8000… OK.
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:8620 process_sdp: Processing media-level (audio) SDP a=fmtp:100 192-193… UNSUPPORTED.
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:8620 process_sdp: Processing media-level (audio) SDP a=rtpmap:101 telephone-event/8000… OK.
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:8620 process_sdp: Processing media-level (audio) SDP a=fmtp:101 0-15… UNSUPPORTED.
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:8620 process_sdp: Processing media-level (audio) SDP a=ptime:30… OK.
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:8620 process_sdp: Processing media-level (audio) SDP a=sendrecv… OK.
[Sep 23 00:34:48] DEBUG[13382]: rtp_engine.c:638 ast_rtp_codecs_payload_formats: Incorporating payload 0 on 0x2b774d68
[Sep 23 00:34:48] DEBUG[13382]: rtp_engine.c:638 ast_rtp_codecs_payload_formats: Incorporating payload 101 on 0x2b774d68
[Sep 23 00:34:48] DEBUG[13382]: res_rtp_asterisk.c:2391 ast_rtp_remote_address_set: Setting RTCP address on RTP instance ‘0x867858’
[Sep 23 00:34:48] DEBUG[13382]: rtp_engine.c:516 ast_rtp_codecs_payloads_copy: Copying payload 0 from 0x2b774d68 to 0x867a08
[Sep 23 00:34:48] DEBUG[13382]: rtp_engine.c:516 ast_rtp_codecs_payloads_copy: Copying payload 101 from 0x2b774d68 to 0x867a08
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:8852 process_sdp: We’re settling with these formats: 0x4 (ulaw)
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:5620 update_call_counter: Updating call counter for outgoing call
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:13535 build_route: build_route: Contact hop: sip:101@192.168.1.139:5060
[Sep 23 00:34:48] DEBUG[13382]: chan_sip.c:3254 __sip_xmit: Trying to put ‘ACK sip:101’ onto UDP socket destined for 192.168.1.139:5060
[Sep 23 00:34:48] DEBUG[16541]: chan_gtalk.c:1669 gtalk_indicate: Don’t know how to indicate condition ‘22’
[Sep 23 00:34:48] DEBUG[13372]: chan_sip.c:25233 sip_devicestate: Checking device state for peer 101
[Sep 23 00:34:48] DEBUG[13372]: devicestate.c:458 do_state_change: Changing state for SIP/101 - state 1 (Not in use)
[Sep 23 00:34:48] DEBUG[13372]: devicestate.c:438 devstate_event: device ‘SIP/101’ state ‘1’
[Sep 23 00:34:48] ERROR[13382]: pbx.c:3571 ast_func_write: Function MASTER_CHANNEL not registered
[Sep 23 00:34:48] DEBUG[16541]: channel.c:5048 set_format: Set channel Gtalk/+1917xxxyyyy-5a5a to write format ulaw
[Sep 23 00:34:48] DEBUG[16541]: chan_gtalk.c:511 gtalk_answer: Answer!

JABBER: myuserid OUTGOING:
[Sep 23 00:34:48] DEBUG[13372]: devicestate.c:458 do_state_change: Changing state for Gtalk/+1917xxxyyyy - state 2 (In use)
[Sep 23 00:34:48] DEBUG[13372]: devicestate.c:438 devstate_event: device ‘Gtalk/+1917xxxyyyy’ state ‘2’
[Sep 23 00:34:48] DEBUG[16541]: chan_gtalk.c:1669 gtalk_indicate: Don’t know how to indicate condition ‘-1’
[Sep 23 00:34:48] DEBUG[16541]: chan_gtalk.c:1669 gtalk_indicate: Don’t know how to indicate condition ‘20’
[Sep 23 00:34:48] DEBUG[16541]: res_rtp_asterisk.c:725 ast_rtp_update_source: Setting the marker bit due to a source update
[Sep 23 00:34:48] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:48] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:48] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:48] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:48] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:48] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:48] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:48] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame

JABBER: myuserid INCOMING:
[Sep 23 00:34:48] DEBUG[13378]: res_jabber.c:1765 aji_act_hook: JABBER: Handling paktype IQ
[Sep 23 00:34:48] DEBUG[13378]: res_jabber.c:1397 aji_recv: XML parsing successful
[Sep 23 00:34:48] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:48] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:48] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:48] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:48] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:48] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:48] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame

JABBER: Keep alive packet
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:49] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:50] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[13382]: chan_sip.c:3254 __sip_xmit: Trying to put ‘SIP/2.0 200’ onto UDP socket destined for 192.168.1.139:5060
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:51] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:52] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:53] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:54] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:54] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:54] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:54] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:54] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:54] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:54] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:54] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:54] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:54] DEBUG[16541]: res_rtp_asterisk.c:1204 ast_rtp_write: No remote address on RTP instance ‘0x862188’ so dropping frame
[Sep 23 00:34:54] DEBUG[13382]: chan_sip.c:3001 sip_alreadygone: Setting SIP_ALREADYGONE on dialog 592802867e81062a66eeb3da69327de8@192.168.1.1:5060
[Sep 23 00:34:54] DEBUG[13382]: res_rtp_asterisk.c:2391 ast_rtp_remote_address_set: Setting RTCP address on RTP instance ‘0x867858’
[Sep 23 00:34:54] DEBUG[13382]: chan_sip.c:22769 handle_request_bye: Received bye, issuing owner hangup
[Sep 23 00:34:54] DEBUG[13382]: chan_sip.c:3254 __sip_xmit: Trying to put ‘SIP/2.0 200’ onto UDP socket destined for 192.168.1.139:5060
[Sep 23 00:34:54] DEBUG[16541]: channel.c:6853 ast_generic_bridge: Didn’t get a frame from channel: SIP/101-00000004
[Sep 23 00:34:54] DEBUG[16541]: chan_gtalk.c:1669 gtalk_indicate: Don’t know how to indicate condition ‘20’
[Sep 23 00:34:54] DEBUG[16541]: channel.c:7310 ast_channel_bridge: Bridge stops bridging channels Gtalk/+1917xxxyyyy-5a5a and SIP/101-00000004
[Sep 23 00:34:54] DEBUG[16541]: channel.c:2758 ast_hangup: Hanging up channel ‘SIP/101-00000004’
[Sep 23 00:34:54] DEBUG[16541]: chan_sip.c:5993 sip_hangup: Hangup call SIP/101-00000004, SIP callid 592802867e81062a66eeb3da69327de8@192.168.1.1:5060
[Sep 23 00:34:54] DEBUG[16541]: res_rtp_asterisk.c:2391 ast_rtp_remote_address_set: Setting RTCP address on RTP instance ‘0x867858’
[Sep 23 00:34:54] DEBUG[13372]: chan_sip.c:25233 sip_devicestate: Checking device state for peer 101
[Sep 23 00:34:54] DEBUG[13372]: devicestate.c:458 do_state_change: Changing state for SIP/101 - state 1 (Not in use)
[Sep 23 00:34:54] DEBUG[13372]: devicestate.c:438 devstate_event: device ‘SIP/101’ state ‘1’
[Sep 23 00:34:54] DEBUG[16541]: app_dial.c:2725 dial_exec_full: Exiting with DIALSTATUS=ANSWER.
[Sep 23 00:34:54] DEBUG[16541]: pbx.c:4755 __ast_pbx_run: Spawn extension (google-in,myuserid@gmail.com,3) exited non-zero on ‘Gtalk/+1917xxxyyyy-5a5a’
[Sep 23 00:34:54] DEBUG[16541]: channel.c:2630 ast_softhangup_nolock: Soft-Hanging up channel ‘Gtalk/+1917xxxyyyy-5a5a’
[Sep 23 00:34:54] DEBUG[16541]: channel.c:2758 ast_hangup: Hanging up channel ‘Gtalk/+1917xxxyyyy-5a5a’

JABBER: myuserid OUTGOING:
[Sep 23 00:34:54] DEBUG[16541]: rtp_engine.c:292 instance_destructor: Destroyed RTP instance ‘0x862188’
[Sep 23 00:34:54] DEBUG[13372]: devicestate.c:458 do_state_change: Changing state for Gtalk/+1917xxxyyyy - state 0 (Unknown)
[Sep 23 00:34:54] DEBUG[13372]: devicestate.c:438 devstate_event: device ‘Gtalk/+1917xxxyyyy’ state ‘0’

JABBER: myuserid INCOMING:
[Sep 23 00:34:54] DEBUG[13378]: res_jabber.c:1765 aji_act_hook: JABBER: Handling paktype IQ
[Sep 23 00:34:54] DEBUG[13378]: res_jabber.c:1397 aji_recv: XML parsing successful

OpenWrt*CLI>[/code]

Thank you…
cchhat01

Anyone?

Does this call look normal? I don’t know what to make of this…
Any help will be appreciated…
Thanks.

cchhat01

So there is no Solution?
Come on guys. Someone? Anyone?

cchhat01

Guys

Please this problem is killing me?
Someone must have a clue as to what is going on… If not atleast point me in the right direction so that I can dig for the solution.
Thanks.

cchhat01

GV,

You mentioned that when you pick up you hear silence correct? Make sure that you have ports 5060 open for SIP, and RTP is hard to come by as it uses a wide range of ports for voice. I would suggest disabling any firewalls to troubleshoot as a start. I use DD-WRT for a lot of things but haven’t used it for SIP purposes. Give that a shot and post the outcome.