Skip to content

Instantly share code, notes, and snippets.

View igorolhovskiy's full-sized avatar

Ihor Olkhovskyi igorolhovskiy

View GitHub Profile
@igorolhovskiy
igorolhovskiy / {$mac}.xml
Last active April 29, 2019 09:47
FusionPBX 4.x - Cisco SPA 3xx-5xx provision template
<?xml version="1.0" encoding="utf-8"?>
<flat-profile>
<!-- Used Variables list
admin_password - Admin Web Interface Password
spa_user_password - User Web Interface Password
cisco_spa_rport -
spa_resync_enable - "Yes"/Not Set - Enable/Disable periodic config check
http_auth_username - Username to provision server
http_auth_password - Password to provision server
@igorolhovskiy
igorolhovskiy / freeswitch-1.6-postgres-bdr.sql
Last active April 6, 2019 06:45
Freeswitch database structure for Postgres with BDR support.
DROP TABLE IF EXISTS agents CASCADE;
CREATE TABLE agents (
name character varying(255),
system character varying(255),
uuid character varying(255),
type character varying(255),
contact character varying(255),
status character varying(255),
state character varying(255),
max_no_answer integer DEFAULT 0 NOT NULL,