MT#57826 add new application server to dispatcher set

We have to add a newly introduced application server (:5085)
to the `kamailio.dispatcher` table in a role of PBX server.

Change-Id: I9a0e52489b298f4362813fa9257211420dd6c164
mr12.0
Donat Zenichev 2 years ago
parent e02f5122d1
commit cb0786a3da

@ -0,0 +1,6 @@
USE kamailio;
SET autocommit=0;
DELETE FROM `dispatcher` WHERE destination = 'sip:127.0.0.1:5085';
COMMIT;

@ -0,0 +1,12 @@
USE kamailio;
SET autocommit=0;
INSERT INTO `dispatcher` SET
setid = '5',
destination = 'sip:127.0.0.1:5085',
flags = '0',
priority = '0',
attrs = '',
description = 'Cloud PBX servers';
COMMIT;
Loading…
Cancel
Save