Displaying 2 results from an estimated 2 matches for "parkinglot_b".
Did you mean:
parkinglot_a
2010 Nov 08
1
Asterisk 1.8 Multiple Parking Lots
...e any major changes in asterisk 1.8 related to park call and multiple parking lots. Bellow is my config from asterisk 1.6 which worked, I`ve tried this in 1.8 and it?s not working.
features.conf
[parkinglot_A]
parkpos => 2011-2020
findslot => next
parkingtime => 60
context => parked
[parkinglot_B]
parkpos => 2021-2030
findslot => next
parkingtime => 60
context => parked
[general]
parkext => 2000
parkpos => 2001-2110
parkingtime => 60
adsipark = yes
findslot => next
sip.conf
[user_A]
...
parkinglot=parkinglot_...
2013 Oct 23
1
multiple parking lot best practice
We are planning to have about 100+ parking lots defined in features.conf , each with about 4 unique park positions. Asterisk will be handling all the parking and unparking (we don't exclusively use Park/ParkedCall in the dialplan):
[parkinglot_a]
parkpos => 1-4
context=parked
[parkinglot_b]
parkpos => 5-8
context=parked
As far as I can tell, Asterisk adds/removes extensions to the parking context(s) dynamically as the calls are parked/unparked.
I'm curious which one is preferred (as far as performance and/or stability) - to use one context for all parking lots or to use a s...