Skip to content

Daktela PBX Diagram and Overview

The diagram below describes the relationship between individual components in the Daktela PBX.

Tip

The inbound and outbound routings are examples only – there are countless ways to configure them depending on your specific requirements.

flowchart TB
    subgraph EXT["External"]
        direction LR
        GSTN(["GSM/PSTN"])
        GSMGW["GSM GW"]
        PROXY["Daktela Proxy"]
        TELCO["Telco Provider"]
    end

    SIP["SIP Trunk(s)"]

    subgraph PBX["Daktela PBX GUI"]
        IR["Inbound Routings"]
        IQ["Inbound Queues"]
        USERS["Users"]
        DEV["Devices"]
        OR["Outbound Routings"]
        OQ["Outbound Queues"]
    end

    subgraph NET["Internet"]
        direction LR
        HWSW(["HW/SW SIP Phone"])
        GUI(["Daktela GUI"])
    end

    GSTN --> GSMGW --> PROXY
    GSTN --> TELCO
    TELCO <--> PROXY
    TELCO --> SIP
    PROXY --> SIP

    SIP --> IR
    IR --> IQ
    IQ -->|"incoming – 1st channel"| USERS

    USERS --> DEV
    USERS --> OR
    OR --> OQ
    OQ -->|"outgoing – 2nd channel"| SIP

    DEV <-->|"incoming – 2nd ch. / outgoing – 1st ch."| HWSW
    HWSW --- GUI

    classDef inbound fill:#c0392b,stroke:#e74c3c,color:#fff
    classDef outbound fill:#2471a3,stroke:#3498db,color:#fff
    classDef users fill:#1e8449,stroke:#27ae60,color:#fff
    classDef devices fill:#d35400,stroke:#e67e22,color:#fff
    classDef neutral fill:#5d6d7e,stroke:#85929e,color:#fff
    classDef sip fill:#6c3483,stroke:#9b59b6,color:#fff

    class IR,IQ inbound
    class OR,OQ outbound
    class USERS users
    class DEV devices
    class GSTN,GSMGW,PROXY,TELCO,HWSW,GUI neutral
    class SIP sip