Advertisement
oquidave

asterisk gtalk problem

Dec 13th, 2013
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. //runing asterisk 11.6
  2.  
  3. *CLI> == Using SIP RTP CoS mark 5
  4. [Dec 13 15:23:16] ERROR[1755][C-00000001]: chan_motif.c:1814 jingle_request: Unable to create Jingle session on endpoint 'google' as no capable resource for target 'oloborama@gmail.com' was found
  5. [Dec 13 15:23:16] WARNING[1755][C-00000001]: app_dial.c:2437 dial_exec_full: Unable to create channel of type 'Motif' (cause 42 - Switching equipment congestion)
  6. == Everyone is busy/congested at this time (1:0/0/1)
  7. == Spawn extension (outgoing-motif, 100, 2) exited non-zero on 'SIP/40-00000001'
  8.  
  9.  
  10. //sip.conf
  11. [40]
  12. type=friend
  13. host=dynamic
  14. context=outgoing-motif
  15. secret=secret
  16. mailbox=40@default
  17.  
  18. //extension.conf
  19. [incoming-motif]
  20. exten => s,1,NoOp("incoming call from google talk")
  21. same => n,Wait(1)
  22. same => n,Answer()
  23. same => n,SendDTMF(1)
  24. same => n,Dial(SIP/40,20)
  25.  
  26. [outgoing-motif]
  27. exten => 100,1,Dial(Motif/google/oloborama@gmail.com,,r)
  28. same=>n, Hangup()
  29.  
  30. //xmpp.conf
  31. [google]
  32. type=client
  33. serverhost=talk.google.com
  34. username=mygmail_email@gmail.com
  35. secret=secret
  36. priority=25
  37. port=5222
  38. usetls=yes
  39. usesasl=yes
  40. status=available
  41. statusmessage="I am available"
  42. timeout=5
  43.  
  44.  
  45. //motif.conf
  46. [default](!)
  47. disallow=all
  48. allow=ulaw
  49. allow=h264
  50. context=incoming-motif ; Default context that incoming sessions will land in
  51.  
  52. ; Sample configuration entry for Google Talk
  53. [google](default)
  54. transport=google ; Since this is a Google Talk endpoint we want to offer Google Jingle for outgoing sessions
  55. connection=google
  56.  
  57. //rtp.conf
  58. [general]
  59. ;
  60. ; RTP start and RTP end configure start and end addresses
  61. ;
  62. ; Defaults are rtpstart=5000 and rtpend=31000
  63. ;
  64. rtpstart=10000
  65. rtpend=20000
  66.  
  67. icesupport=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement