cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
beldridge
New Contributor

SIP to PRI no outbound or inbound calls

Can someone look at my config, I am able to ping my provider and they can ping me back with responses on both ends. When they place a test call to us our adtran gets the response from them but it seems out SIP services isn't engaging to the call. Looking at the stats its all Zeros. Below is my config. 

 

 

!
!
! ADTRAN, Inc. OS version R13.12.0.E
! Boot ROM version R10.9.3.B3
! Platform: Total Access 908e (3rd Gen), part number 4243908F1
! Serial number CFG1899908
!
!
hostname "TA908e"

!
!
!
ip subnet-zero
ip classless
ip routing
ipv6 unicast-routing
!
!
!
!
auto-config
!
event-history on
no logging forwarding
no logging email
!
no service password-encryption
!

!
banner motd #
Important

 

The gig 0/1 interface is enabled with an address of 10.10.10.1
Telnet/SSH access is also enabled.
#
!
!
no ip firewall alg msn
no ip firewall alg mszone
no ip firewall alg h323
!
!
!
!
!
!
!
!
no dot11ap access-point-control
!
!
!
!
!
!
!
!
!
!
!
!
!
ip crypto ffe
!
!
!
!
!
!
!
interface eth 0/1
no ip address
shutdown
!
!
interface eth 0/2
no ip address
shutdown
!
!
!
interface gigabit-eth 0/1
ip address 97.X.X.X 255.255.255.252
no shutdown
!
!
!
!
interface t1 0/1
tdm-group 1 timeslots 1-24 speed 64
no shutdown
!
interface t1 0/2
shutdown
!
interface t1 0/3
shutdown
!
interface t1 0/4
shutdown
!
!
interface pri 1
description pri 1
isdn name-delivery
connect t1 0/1 tdm-group 1
no shutdown
!
!
interface fxs 0/1
no shutdown
!
interface fxs 0/2
no shutdown
!
interface fxs 0/3
no shutdown
!
interface fxs 0/4
no shutdown
!
interface fxs 0/5
no shutdown
!
interface fxs 0/6
no shutdown
!
interface fxs 0/7
no shutdown
!
interface fxs 0/8
no shutdown
!
!
isdn-group 1
connect pri 1
!
!
!
!
!
!
!
!
!
!
!
ip route 0.0.0.0 0.0.0.0 97.X.X.X
!
no tftp server
no tftp server overwrite
http server
http secure-server
no snmp agent
no ip ftp server
no ip scp server
no ip sntp server
!
!
!
!
!
!
!
!
sip
sip udp 5060
no sip tcp
no sip tls
!
!
!
voice feature-mode network
voice forward-mode network
!
!
!
!
!
!
!
!
voice dial-plan 1 local NXX-NXX-XXXX
!
!
!
!
!
!
voice trunk T01 type sip
description ""
sip-server primary X.X.X.X
!
voice trunk T02 type isdn
description "PRI"
resource-selection circular descending
connect isdn-group 1
rtp delay-mode adaptive
!
!
voice grouped-trunk SIP
description ""
trunk T01
accept $ cost 0
!
!
voice grouped-trunk PRI
trunk T02
accept $ cost 0
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
!
ip rtp symmetric-filter
!
!
!

 

0 Kudos
2 Replies
ohiotel
New Contributor

Re: SIP to PRI no outbound or inbound calls

Looks like you are missing the media-gateway command on the gig interface.  here's a config that I use to connect to bandwidth.com to terminate calls from a tdm switch.

! ADTRAN, Inc. OS version R12.3.3.E
! Boot ROM version 14.05.00.SA
! Platform: Total Access 908e (2nd Gen), part number 4242908L1
! Serial number CFG0868021
!
!
hostname "LD-Outbound34"
!
clock timezone -5-Eastern-Time
!
statistics rate-interval 30
!
ip subnet-zero
ip classless
ip routing
ipv6 unicast-routing
!
!
!
!
!
interface eth 0/1
speed 100
ip address 198.101.50.34 255.255.255.240
no shutdown
media-gateway ip primary
!
interface t1 0/1
shutdown
!
interface t1 0/2
shutdown
!
interface t1 0/3
description PRI
tdm-group 1 timeslots 1-24 speed 64
no shutdown
!
interface t1 0/4
description PRI2
tdm-group 1 timeslots 1-24 speed 64
no shutdown
!
!
interface pri 1
description pri 1
role user
isdn name-delivery setup
connect t1 0/3 tdm-group 1
no shutdown
!
interface pri 2
description pri 2
role user
isdn name-delivery setup
connect t1 0/4 tdm-group 1
no shutdown
!
!
!
!
isdn-group 2
connect pri 2
connect pri 1
!
!
!
!
timing-source t1 0/3
!
!
no tftp server
no tftp server overwrite
http server
no http secure-server
no snmp agent
no ip ftp server
no ip scp server
no ip sntp server
!
http ip access-class admin-access in
!
!
!
!
!
!
!
sip
sip udp 5060
no sip tcp
!
!
!
voice feature-mode network
voice forward-mode network
!
!
!
!
!
!
!
!
voice dial-plan 1 local NXX-NXX-XXXX
voice dial-plan 2 local 1-NXX-NXX-XXXX
!
!
!
!
voice codec-list TRUNK
codec g711ulaw
!
voice codec-list PRI-Trunk
codec g711ulaw
!
!
!
voice trunk T03 type isdn
description "isdn trunk to pri"
resource-selection circular descending
modem-passthrough
rtp delay-mode adaptive
codec-list PRI-Trunk
!
voice trunk T05 type sip
description "Bandwidth.com Primary"
sip-server primary 67.231.1.112
registrar primary 67.231.1.112
codec-list TRUNK both
!
voice trunk T06 type sip
description "Bandwidth.com Primary"
sip-server primary 67.231.5.112
registrar primary 67.231.5.112
codec-list TRUNK both
!
voice trunk T99 type isdn
description "isdn trunk to pri"
resource-selection circular descending
connect isdn-group 2
modem-passthrough
rtp delay-mode adaptive
codec-list PRI-Trunk
!
!
voice grouped-trunk BANDWIDTH
trunk T05
trunk T06
accept 1NXXNXXXXXX cost 0
!
!

Posi
New Contributor

Re: SIP to PRI no outbound or inbound calls

I was checking out your config.  Can you tell me how the following features work for you?  

modem-passthrough
rtp delay-mode adaptive