Issabel PBX

Issabel PBX হলো Asterisk ভিত্তিক একটি সম্পূর্ণ IP PBX সিস্টেম, যেটা FreePBX এর মতো Web GUI সহ আসে। কল ম্যানেজমেন্ট, VoIP trunks, IVR, voicemail ইত্যাদি configure করা যায়।

Prerequisites

  • VM / Dedicated Server (2 vCPU, 4-8 GB RAM, 80 GB+ Disk)
  • Static IP এবং DNS properly configure করা
  • Firewall এ SIP/RTP port খুলতে হবে

1 VM তৈরি ও ISO Mount

Proxmox / VMware / VirtualBox এ VM তৈরি করুন এবং Issabel ISO attach করুন। (2 CPU, 4GB RAM, Bridged NIC)

2 Installation

Boot দিয়ে Installation process ফলো করুন। Disk নির্বাচন করুন, root password দিন, timezone এবং static IP set করুন।

3 Web GUI Access

http://your_issabel_ip/
https://your_issabel_ip/

4 Firewall Ports

sudo firewall-cmd --permanent --add-service=http
sudo firewall-cmd --permanent --add-service=https
sudo firewall-cmd --permanent --add-port=5060/udp
sudo firewall-cmd --permanent --add-port=5061/tcp
sudo firewall-cmd --permanent --add-port=4569/udp
sudo firewall-cmd --permanent --add-port=10000-20000/udp
sudo firewall-cmd --reload

5 Asterisk CLI

sudo -i
asterisk -rvvvvv
pjsip show endpoints
core reload

6 Next Steps

  • Extension তৈরি (SIP/PJSIP)
  • Inbound / Outbound Route configure
  • SIP Trunk add করা
  • IVR, Voicemail, Queue configure
  • TLS/SRTP enable করে secure call করা
Command copied to clipboard!