Shared Lines behave differently between CUCM and CME so much so that I find UC Administrators are getting a little muddled between whats normal and abnormal with Shared Lines configured in CME. Below is a quick note of the configuration and expected behaviour of CME Shared Lines for SCCP Phones.
General requirement of a shared line.
1. When a call comes in, I’d like it to ring both phones
2. If one phone is active, I’d like to have Call Waiting so I can see who is trying to call.
3. We should be able to receive more than two calls at a time
4. I also want the ability to hold, conference or transfer the call to another phone.
Sounds pretty standard right and out of the box CUCM does this by assigning a single DN to multiple phones, with a couple of DN tweaks like Busy Trigger etc. However CME on the other hand, if you were just to configure the a single ephone-dn and assign the ephone-dn to two phones like in the sample configuration below, you would see different results.
ephone-dn 1 dual-line
number 4000 no-reg primary
label Reception
name Reception
call-forward busy 4999
call-forward noan 4999 timeout 60
!
ephone 1
mac-address 00E1.2D14.EEEE
ephone-template 1
max-calls-per-button 4
busy-trigger-per-button 3
button 1c1
!
ephone 8
mac-address 1C1D.8A24.EEEA
ephone-template 1
max-calls-per-button 5
busy-trigger-per-button 3
button 1c1
The above sample represents what seems to be a standard shared line setup, single DN, with the DN being assigned to two phones. The behaviour is as follows. Calls comes in, Both phones will ring, Phone 1 will answer the call. Next call comes in, seeing that Phone 1 has seized the line (currently on an active call) the inbound call will only ring on Phone 1, so Phone 1 will see a call waiting signal because we have configure the button with a ‘c’ however Phone 2 doesn’t ring at all. This is because by default there are two commands placed on each ephone-dn; huntstop and no huntstop channel. These two commands effectively tell the Router to stop hunting if ephone has an available line, which in this case it does, remember dual-line has been configured for the ephone-dn, so ephone-1 can still receive a second call on the second line, hence the call waiting signal being flashed to ephone-1. We need the second call to hunt to another ephone. Below is how we do it.
ephone-dn 1 dual-line
number 4000 no-reg primary
label Reception
name Reception
call-forward busy 4999
call-forward noan 4999 timeout 60
no huntstop
huntstop channel
preference 0
!
ephone-dn 2 dual-line
number 4000 no-reg primary
label Reception
name Reception
call-forward busy 4999
call-forward noan 4999 timeout 60
preference 1
!
ephone 1
mac-address 00E1.2D14.EEEE
ephone-template 1
max-calls-per-button 4
busy-trigger-per-button 3
button 1c1,2
!
ephone 8
mac-address 1C1D.8A24.EEEA
ephone-template 1
max-calls-per-button 5
busy-trigger-per-button 3
button 1c1,2
In the sample above we have added the no huntstop and huntstop channel commands to the ephone-dn 1 and also added a second ephone-dn with the same number. Then we have overlayed the second ephone-dn onto the first button. This allows for a second call on the DN 4000 to be routed to the second ephone-dn if a phone is active on a call. Plus this also allows for supplementary features like hold, transfer, conference etc, which requires a second line to complete the transaction.
Only one more problem to solve, one of the requirements was to have each phone be able to handle more that two calls simultaneously. All we have to do is add more ephone-dns to the configuration. The below sample configuration allows for four calls to the 4000 DN.
ephone-dn 1 dual-line
number 4000 no-reg primary
label Reception
name Reception
call-forward busy 4999
call-forward noan 4999 timeout 60
no huntstop
huntstop channel
preference 0
!
ephone-dn 2 dual-line
number 4000 no-reg primary
label Reception
name Reception
call-forward busy 4999
call-forward noan 4999 timeout 60
no huntstop
huntstop channel
preference 1
!
ephone-dn 3 dual-line
number 4000 no-reg primary
label Reception
name Reception
call-forward busy 4999
call-forward noan 4999 timeout 60
no huntstop
huntstop channel
preference2
!
ephone-dn 4 dual-line
number 4000 no-reg primary
label Reception
name Reception
call-forward busy 4999
call-forward noan 4999 timeout 60
preference 3
!
ephone 1
mac-address 00E1.2D14.EEEE
ephone-template 1
max-calls-per-button 4
busy-trigger-per-button 3
button 1c1,2,3,4
!
ephone 8
mac-address 1C1D.8A24.EEEA
ephone-template 1
max-calls-per-button 5
busy-trigger-per-button 3
button 1c1,2,3,4
Now we have all the requirements satisfied. So after reading the above its now worth noting the differences in shared line behaviour between CUCM and CME.