cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
2440
Views
0
Helpful
2
Replies

How to change port number and protocol for SIP trunk?

IdontNeedNick
Level 1
Level 1

Hi,

I have to connect a UC500 with two asterisk IPT systems.

First asterisk system use standard SIP port 5060 , but UDP instead of TCP.

Second one use port number 5070 and UDP protocol.

How to setup these two trunks with different parameters ?

Thanks,

O

1 Accepted Solution

Accepted Solutions

ADAM CRISP
Level 4
Level 4

Hello.

You can specify the transport using the "session transport" keyword; the default is UDP.

The port number can be set following by using a colon

eg

dial-peer voice 9000 voip

description "route calls starting 9xxx to by asterisk endpoint"

destination-pattern ^9...

session protocol sipv2

session transport UDP

session target ipv4:192.168.69.1:5070

dtmf-relay rtp-nte

Adam

View solution in original post

2 Replies 2

ADAM CRISP
Level 4
Level 4

Hello.

You can specify the transport using the "session transport" keyword; the default is UDP.

The port number can be set following by using a colon

eg

dial-peer voice 9000 voip

description "route calls starting 9xxx to by asterisk endpoint"

destination-pattern ^9...

session protocol sipv2

session transport UDP

session target ipv4:192.168.69.1:5070

dtmf-relay rtp-nte

Adam

Hi Adam,

thank you for replay,

I will try your solution...

BR,

O