B Establishment of the VoIP link » History » Version 1

piat, charles ugo, 03/17/2015 12:18 PM

1 1 piat, charles ugo
h1. B Establishment of the VoIP link
2 1 piat, charles ugo
3 1 piat, charles ugo
h3. Installation of Asterisk FPBX
4 1 piat, charles ugo
5 1 piat, charles ugo
h3. Configuration of the internal call
6 1 piat, charles ugo
7 1 piat, charles ugo
The configuration of the asterisk for the 3 handsets is implemented in the files sip.conf and extensions.conf. We register the 3 handsets in the file sip.conf and we build the channels in the extensions.conf. We had the choice to configure asterisk through the web interface or directly in the configuration files. We had chosen the second options because the first one generates errors in the handset registering. 
8 1 piat, charles ugo
9 1 piat, charles ugo
_sip.conf_
10 1 piat, charles ugo
11 1 piat, charles ugo
<pre>
12 1 piat, charles ugo
[general]
13 1 piat, charles ugo
context=unauthenticated
14 1 piat, charles ugo
allowguest=no
15 1 piat, charles ugo
srvlookup=no
16 1 piat, charles ugo
udpbindaddr=0.0.0.0
17 1 piat, charles ugo
tcpenable=no
18 1 piat, charles ugo
</pre>
19 1 piat, charles ugo
20 1 piat, charles ugo
We have set the default context to "unauthenticated" to ensure that unauthenticated guest calls will enter the dialplan. It will be useful for external call since we don't always know the caller. We have set allowguest to "no" to exclusively allow phone call from registered device in our local network. We put the udpbindaddr field equal to 0.0.0.0 to be sure that the VoIP server listen to all interfaces (nevertheless we could have udpbindaddr=192.168.35.0/24). We wanted to cancel the more restrictions as possible. 
21 1 piat, charles ugo
22 1 piat, charles ugo
In the same file we have created the template for our devices.
23 1 piat, charles ugo
24 1 piat, charles ugo
<pre>
25 1 piat, charles ugo
[office-phone](!)
26 1 piat, charles ugo
type=friend
27 1 piat, charles ugo
context=LocalSets
28 1 piat, charles ugo
host=dynamic
29 1 piat, charles ugo
nat=force_rport,comedia
30 1 piat, charles ugo
dtmfmode=auto
31 1 piat, charles ugo
disallow=all
32 1 piat, charles ugo
allow=g722 
33 1 piat, charles ugo
allow=ulaw 
34 1 piat, charles ugo
allow=alaw
35 1 piat, charles ugo
</pre>
36 1 piat, charles ugo
37 1 piat, charles ugo
We have set the type to friend so that the channel driver will match on the username and the IP. Next we have register the context as "LocalSets", this is where, calls from the device will enter the dialplan (it is not a default value, it is chosen by the user. It will correspond to the name of the template in the extensions.conf). The host parameter defines the IP address of the far end for this channel; we define the value as dynamic so we let Asterisk know that the phones will tell him where they are on the network. The NAT filed meaning network address translation; it is needed when the remote device is behind a firewall. The rport parameter signal to the far end that it should respond to the source IP and port the request originated from and respectively the comedia parameter is used to instruct Asterisk to send media (RTP) to the address and port that the far-end media came from.
38 1 piat, charles ugo
39 1 piat, charles ugo
<pre>
40 1 piat, charles ugo
[1001](office-phone)
41 1 piat, charles ugo
secret=1001 
42 1 piat, charles ugo
[1003](office-phone)
43 1 piat, charles ugo
secret=1002 
44 1 piat, charles ugo
[1003](office-phone)
45 1 piat, charles ugo
secret=1003
46 1 piat, charles ugo
</pre>
47 1 piat, charles ugo
48 1 piat, charles ugo
Here we have defined the device name and its secret's code for the 3 handsets.
49 1 piat, charles ugo
50 1 piat, charles ugo
51 1 piat, charles ugo
_extensions.conf_
52 1 piat, charles ugo
53 1 piat, charles ugo
<pre>
54 1 piat, charles ugo
[LocalSets] 
55 1 piat, charles ugo
exten => 1001,1,Dial(SIP/1001) 
56 1 piat, charles ugo
exten => 1002,1,Dial(SIP/1002) 
57 1 piat, charles ugo
exten => 1003,1,Dial(SIP/1003)
58 1 piat, charles ugo
</pre> 
59 1 piat, charles ugo
60 1 piat, charles ugo
In the file extensions.conf we create a template call "LocalSets" corresponding to the value of the context field in the sip.conf. The field “exten” means when the number 1001 (for instance in the second code line)  is dial, asterisk will call the SIP/1001. The number 1 between commas corresponds to the priority. 
61 1 piat, charles ugo
62 1 piat, charles ugo
h3. Configuration of the External call
63 1 piat, charles ugo
64 1 piat, charles ugo
In our configuration we differentiate the InComing call from the OutGoing call. Likewise the internal call, we implement the configuration in the sip.conf to register our line from our provider and the extensions.conf to manage the calls. 
65 1 piat, charles ugo
66 1 piat, charles ugo
*InComing Call*
67 1 piat, charles ugo
68 1 piat, charles ugo
_sip.conf_
69 1 piat, charles ugo
70 1 piat, charles ugo
<pre>
71 1 piat, charles ugo
[general]
72 1 piat, charles ugo
register => 0033XXXXXXXXX:password@sip.ovh.fr
73 1 piat, charles ugo
</pre> 
74 1 piat, charles ugo
75 1 piat, charles ugo
We register our phone line with our phone number, our password and the domain provided from ovh. 
76 1 piat, charles ugo
77 1 piat, charles ugo
78 1 piat, charles ugo
<pre>
79 1 piat, charles ugo
[forfait-ovh]
80 1 piat, charles ugo
type=peer
81 1 piat, charles ugo
host=sip.ovh.fr
82 1 piat, charles ugo
context=ovh-sip
83 1 piat, charles ugo
defaultuser=0033XXXXXXXXX
84 1 piat, charles ugo
fromuser=0033XXXXXXXXX
85 1 piat, charles ugo
secret=password
86 1 piat, charles ugo
directmedia=no
87 1 piat, charles ugo
nat=force_rport,comedia
88 1 piat, charles ugo
canreinvite=no
89 1 piat, charles ugo
qualify=yes
90 1 piat, charles ugo
dtmfmode=auto
91 1 piat, charles ugo
</pre> 
92 1 piat, charles ugo
93 1 piat, charles ugo
Here we have save information corresponding to our line. The context field refers to the template in the dialplan. We retrieve almost the same filed than those presented in the internal call.
94 1 piat, charles ugo
95 1 piat, charles ugo
_extensions.conf_
96 1 piat, charles ugo
97 1 piat, charles ugo
<pre>
98 1 piat, charles ugo
[ovh-sip] ; nom du plan
99 1 piat, charles ugo
exten => s,1,Ringing(1)
100 1 piat, charles ugo
exten => s,2,Answer
101 1 piat, charles ugo
exten => s,3,Dial(SIP/1001,30,tm) 
102 1 piat, charles ugo
exten => s,4,Hangup(16) 
103 1 piat, charles ugo
</pre> 
104 1 piat, charles ugo
105 1 piat, charles ugo
In the file extensions.conf we create a template call "ovh-sip" corresponding to the value of the context field in the sip.conf. In The field “exten” we replace the number dialed by "s" which means asterisk will answer to all incoming call and the device SIP/1001 will received all the external calls. Here we can see in more details the priority rules, first Ringing, Answering, Dial and Hang-up.
106 1 piat, charles ugo
107 1 piat, charles ugo
108 1 piat, charles ugo
*OutGoing Call*
109 1 piat, charles ugo
110 1 piat, charles ugo
In this part, we will just  modified the file extensions.conf. 
111 1 piat, charles ugo
112 1 piat, charles ugo
_extensions.conf_
113 1 piat, charles ugo
114 1 piat, charles ugo
<pre>
115 1 piat, charles ugo
[external]
116 1 piat, charles ugo
exten => _0.,1,Dial(SIP/${EXTEN}@forfait-ovh) 
117 1 piat, charles ugo
[LocalSets]
118 1 piat, charles ugo
include => external
119 1 piat, charles ugo
</pre>
120 1 piat, charles ugo
121 1 piat, charles ugo
In the LocalSets we have included the template external to authorize external call to the handsets. The template “external” calls on the section [forfait-ovh] to provide the outgoing call. Only calls begining by zero (the aim is to block the international call but can be remove depending of the situation) are allowed by our configuration.