Guest User

Untitled

a guest
May 24th, 2018
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. Hello all.
  2.  
  3. I have an NEC PBX connected via a TE210p E1 line to an asterisk 1.6 box.
  4.  
  5. NEC -> E1 -> TE210P:1 -> * -> TE210P:2 -> E1 -> Telco
  6.  
  7. Incomming calls from the telco to the asterisk box to the NEC work
  8. fine with indials and everything. Works sweet.
  9.  
  10. Outbound from the NEC to the Asterisk box fail. Giving an long dial
  11. tone that then times out.
  12.  
  13. Ie, pick up NEC handset, dial to get outside line, are given a dial tone,
  14. and then press numbers on keypad but dialtone continues and then
  15. eventually get an fast busy signal.
  16.  
  17. Looking at the console, it doesn't seem like the * system is seeing the
  18. dialed number data from the NEC box. the reason I say this is that
  19. the asterisk box complains that it is accepting call from '' to ''
  20.  
  21. Which just seems like no data is passing across.
  22.  
  23. It is an NEC Xen Master that is configured to connect to an E1 and works
  24. fine. This E1 line has been replaced by a direct link to the * box to make
  25. the NEC box think the * box is the Telco – so I know this at least works.
  26. And I can also send a call into the NEC system fine.
  27.  
  28. Does anyone know how to debug this? How can I see what data the NEC
  29. box is sending over the signaling channel in * ?
  30.  
  31.  
  32. dahdi/system.conf looks like:
  33. ------------------------------------------------
  34.  
  35. # Span 1: TE2/0/1 "T2XXP (PCI) Card 0 Span 1"
  36. # To NEC System
  37. span=1,0,0,ccs,hdb3,crc4
  38. bchan=1-15,17-31
  39. dchan=16
  40. echocanceller=mg2,1-15,17-31
  41.  
  42. # Span 2: TE2/0/2 "T2XXP (PCI) Card 0 Span 2"
  43. # To E1
  44. span=2,1,0,ccs,hdb3,crc4
  45. bchan=32-46,48-62
  46. dchan=47
  47. echocanceller=mg2,32-46,48-62
  48.  
  49. # Global data
  50.  
  51. loadzone = au
  52. defaultzone = au
  53.  
  54.  
  55. asterisk/dahdi-channels.conf looks like:
  56. ------------------------------------------------
  57.  
  58. ; SPAN 1 connects to the NEC PBX system
  59. ; Span 1: TE2/0/1 "T2XXP (PCI) Card 0 Span 1" (MASTER) B8ZS/ESF
  60. group=1
  61. context=from-nec
  62. switchtype = euroisdn
  63. signalling = pri_net
  64. channel => 1-15,17-31
  65. immediate = no
  66. overlapdial = yes
  67.  
  68. ; SPAN 2 connects to Telstra – 30 channel E1
  69. ; Span 2: TE2/0/2 "T2XXP (PCI) Card 0 Span 2" B8ZS/ESF
  70. group=2
  71. context=from-pstn
  72. switchtype = euroisdn
  73. signalling = pri_cpe
  74. channel => 32-46,48-62
  75. immediate = no
  76. overlapdial = yes
  77. prindication = outofband
  78.  
  79.  
  80. asterisk/extensions.conf (relative bit) looks like:
  81. ------------------------------------------------
  82.  
  83. [from-pstn]
  84. exten => _555573XX,1,Dial(DAHDI/g1/${EXTEN},,T)
  85.  
  86. [from-nec]
  87. exten => _X.,1,Dial(DAHDI/g2/${EXTEN},,T)
Add Comment
Please, Sign In to add comment