Выход IP телефона через Е1 интерфейс на Cisco VG200
У меня в сети много IP телефонов, они между собой все нормально связываются (по Asterisk у естественно), вопрос теперь заставить их звонить наружу через Е1 интерфейс который на Cisco VG200 (он похож на Роутеры 26xx серии) и соответственно принимать звонки снаружи.
VG200 пока сконфигурил базово
controller E1 1/0
pri-group timeslots 1-31
description Armentel E1
!
controller E1 1/1
shutdown
!
!
interface FastEthernet0/0
ip address 192.168.9.187 255.255.255.0
duplex auto
speed auto
!
interface Serial1/0:15
no ip address
isdn switch-type primary-net5
no cdp enable
!
ip classless
no ip http server
!
access-list 2 permit 192.168.9.80
!
dial-peer voice 101 voip
session protocol sipv2
session target sip-server
!
sip-ua
retry invite 2
retry response 2
retry bye 2
retry cancel 2
sip-server ipv4:192.168.9.6:5060
!
!
line con 0
line aux 0
line vty 0 4
access-class 2 in
password 7 1543595F
login
transport input telnet
line vty 5 15
login
transport input telnet
!
end
при данной конфигурации Asterisk "видит" Cisco-овского SIP агента, но наружу не звонит
Вот что выдает Asterisk в SIP debug моде
-------------------------------------------------
11 headers, 0 lines
Reliably Transmitting:
OPTIONS sip:192.168.9.187 SIP/2.0
Via: SIP/2.0/UDP 192.168.9.6:5060;branch=z9hG4bK7eb7ac65
From: "asterisk" <sip:asterisk@192.168.9.6>;tag=as2be993ad
To: <sip:192.168.9.187>
Contact: <sip:asterisk@192.168.9.6>
Call-ID: 3c9af3243702ac9f68f532033182304e@192.168.9.6
CSeq: 102 OPTIONS
User-Agent: Asterisk PBX
Date: Tue, 05 Apr 2005 11:51:03 GMT
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER
Content-Length: 0
(no NAT) to 192.168.9.187:5060
Sip read:
SIP/2.0 200 OK
Via: SIP/2.0/UDP 192.168.9.6:5060;branch=z9hG4bK7eb7ac65
From: "asterisk" <sip:asterisk@192.168.9.6>;tag=as2be993ad
To: <sip:192.168.9.187>;tag=13DBEEC-2264
Date: Mon, 01 Mar 1993 05:47:03 GMT
Call-ID: 3c9af3243702ac9f68f532033182304e@192.168.9.6
Server: Cisco-SIPGateway/IOS-12.x
Content-Type: application/sdp
CSeq: 102 OPTIONS
Allow: INVITE, OPTIONS, BYE, CANCEL, ACK
Accept: application/sdp
Content-Length: 105
v=0
o=CiscoSystemsSIP-GW-UserAgent 0 0 IN IP4 192.168.9.187
s=SIP Call
c=IN IP4 192.168.9.187
t=0 0
12 headers, 5 lines
Destroying call '3c9af3243702ac9f68f532033182304e@192.168.9.6'
--------------------------------------------------
Вот куски моих конфигов
extensions.conf
[home]
exten => 101,1,Dial(Skinny/101@Wired)
exten => 101,2,Hangup
exten => 102,1,Dial(Skinny/102@Wiredd)
exten => 102,2,Hangup
exten => _9X.,1,Dial(SIP/cisco,,r)
sip.conf
[cisco]
type=friend
username=cisco
;secret=blah
;mailbox=10
qualify=200
nat=no
context=home
host=192.168.9.187
canreinvite=yes
как вы поняли 192.168.9.6 IP моего Asterisk-а.
Помогите пожалуйста!
Заранее спасибо!
|