ITC-2300 VoIP Lab Sample sccp.conf File: Difference between revisions

From ITCwiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
The following shows an example of the things you may need to change in your sccp.conf file.
The following shows an example of the things you may need to change in your sccp.conf file.
=Example sccp.conf File Changes=
=Example Minimal sccp.conf File Changes=
<pre>
<pre>
[general]
[general]
Line 43: Line 43:
cid_name = John Smith ; Change to correct Caller ID Name
cid_name = John Smith ; Change to correct Caller ID Name
</pre>
</pre>
=Voicemail sccp.conf File Changes=
You can add the ability to enable the Message Waiting Indicator (MWI) lamp on SCCP phones when there is a message in a mailbox. To do this you need to add the mailbox = xxxx option to each of the lines you wish to monitor in sccp.conf
For example:
<pre>
[sally-line1]
type=line
label = 2901
context = default
mailbox = 2901
</pre>
You can also set the voicemail button on the phone (newer Cisco phones have a picture of an envelope on this button) to be a speed dial button which calls the extension to check messages. To do this you need to add the vmnum = xxxx option to each of the lines you wish to monitor in sccp.conf
For example:
<pre>
[sally-line1]
type=line
label = 2901
context = default
vmnum = 2999
</pre>
For more information about these options see the comments in the [https://raw.githubusercontent.com/chan-sccp/chan-sccp/develop/conf/sccp.conf.annotated sample sccp.conf file on GitHub].

Revision as of 21:52, 5 November 2019

The following shows an example of the things you may need to change in your sccp.conf file.

Example Minimal sccp.conf File Changes

[general]
dateformat = M/D/YA

[SEP001819B93171] ; Change to your Phone MAC Address
description = Sally Student Phone ; Change to Your/Partner Name
devicetype = 7961
button = line,sally-line1,default ; Change the line name as appropriate
button = empty
button = empty
button = empty
button = empty
button = empty
type = device

[SEP000D28D75841] ; Change to your other Phone MAC Address
description = John Smith Phone ; Change to Your/Partner Name
devicetype = 7940
button = line,john-line1,default ; Change the line name as appropriate
button = empty
type = device

[sally-line1] ; Change the line name as appropriate
type=line
id = 1
pin = 1234
label = 2901 ; Change to a correct Extension Number for your Pod
description = Sally's Line 1 ; Change as appropriate
context = default
cid_num = 2901 ; Change to a correct Extension Number for your Pod
cid_name = Sally Student ; Change to correct Caller ID Name

[john-line1] ; Change the line name as appropriate
type=line
id = 1
pin = 1234
label = 2902 ; Change to a correct Extension Number for your Pod
description = John's Line 1 ; Change as appropriate
context = default
cid_num = 2902 ; Change to a correct Extension Number for your Pod
cid_name = John Smith ; Change to correct Caller ID Name

Voicemail sccp.conf File Changes

You can add the ability to enable the Message Waiting Indicator (MWI) lamp on SCCP phones when there is a message in a mailbox. To do this you need to add the mailbox = xxxx option to each of the lines you wish to monitor in sccp.conf

For example:

[sally-line1]
type=line
label = 2901
context = default
mailbox = 2901

You can also set the voicemail button on the phone (newer Cisco phones have a picture of an envelope on this button) to be a speed dial button which calls the extension to check messages. To do this you need to add the vmnum = xxxx option to each of the lines you wish to monitor in sccp.conf

For example:

[sally-line1]
type=line
label = 2901
context = default
vmnum = 2999

For more information about these options see the comments in the sample sccp.conf file on GitHub.