RustPBX is a high-performance, secure software-defined PBX (Private Branch Exchange) system implemented in Rust, designed to support AI-powered communication pipelines and modern voice applications.
- Full SIP Stack: Complete SIP proxy server with registration, authentication, and call routing
- Media Proxy: Advanced RTP/RTCP media proxying with NAT traversal support
- Multi-Transport: UDP, TCP, and WebSocket transport support
- Call Recording: Built-in call recording with multiple storage backends
- User Management: Flexible user authentication and registration system
- Speech-to-Text (ASR): Real-time speech recognition with multiple providers (Tencent Cloud, Aliyun, Deepgram)
- Text-to-Speech (TTS): High-quality speech synthesis with emotion and speaker control
- LLM Integration: OpenAI-compatible LLM proxy for intelligent conversation handling
- Voice Activity Detection: WebRTC and Silero VAD and Ten VAD support for optimal speech processing
- Noise Suppression: Real-time audio denoising(rnnoise) for crystal-clear conversations
- RESTful Endpoints: Complete REST API for call management and control
- WebSocket Commands: Real-time call control via WebSocket connections
- Call Management: List, monitor, and control active calls
- Rust 1.75 or later
- Cargo package manager
pkg-config,libasound2-dev,libopus-dev
Linux:
apt-get install -y libasound2-dev libopus-devmacOS:
brew install opusgit clone https://github.com/restsend/rustpbx
cd rustpbx
cargo build --releaseFor a minimal footprint you can disable heavy features:
cargo build -r --no-default-features --features vad_webrtc,console
- Create a lightweight UA configuration (
config.ua.toml) that exposes the WebRTC console and proxies LLM traffic:
cat > config.ua.toml <<'EOF'
http_addr = "0.0.0.0:8080"
log_level = "info"
[ua]
addr = "0.0.0.0"
udp_port = 13050
EOF- Start RustPBX in UA mode and serve the console assets:
cargo run --bin rustpbx -- --conf config.ua.toml- Open
http://localhost:8080โ WebRTC Interface. Under LLM select your model, toggle streaming if needed, and click Start Session. You can now hold a full duplex voice conversation with the LLM through your browser.
- Create a PBX configuration (
config.pbx.toml) pointing to SQLite and enabling call records:
cat > config.pbx.toml <<'EOF'
http_addr = "0.0.0.0:8080"
log_level = "debug"
#log_file = "/tmp/rustpbx.log"
recorder_path = "/tmp/recorders"
# recorder_format can be "wav" (default) or "ogg" (requires enabling the 'opus' feature)
recorder_format = "ogg"
media_cache_path = "/tmp/mediacache"
database_url = "sqlite://rustpbx.sqlite3"
# external IP address for SIP signaling and media
# if server is behind NAT, set your public IP here (without port)
# external_ip = "1.2.3.4"
[console]
#session_secret = "please_change_me_to_a_random_secret"
base_path = "/console"
# allow self-service administrator signup after the first account
allow_registration = false
[proxy]
modules = ["acl", "auth", "registrar", "call"]
addr = "0.0.0.0"
udp_port = 15060
registrar_expires = 60
ws_handler= "/ws"
media_proxy = "auto"
# Base directory for generated routing/trunk/ACL files
generated_dir = "./config"
routes_files = ["config/routes/*.toml"]
trunks_files = ["config/trunks/*.toml"]
[proxy.transcript]
command = "sensevoice-cli"
# ACL rules
acl_rules = [
"allow all",
"deny all"
]
acl_files = ["config/acl/*.toml"]
[[proxy.user_backends]]
type = "memory"
users = [
{ username = "bob", password = "123456" },
{ username = "alice", password = "123456" },
]
[[proxy.user_backends]]
type = "extension"
database_url = "sqlite://rustpbx.sqlite3"
[callrecord]
type = "local"
root = "/tmp/recorders"
[recording]
enabled = true
auto_start = true
EOF- Launch the PBX:
cargo run --bin rustpbx -- --conf config.pbx.toml- In a separate shell create your first super admin for the console:
cargo run --bin rustpbx -- --conf config.pbx.toml \
--super-user admin --super-password change-me-now- Sign in at
http://localhost:8080/console/, add extensions, and register your SIP endpoints againstudp://localhost:15060. - Verify call recordings and transcripts under Call Records once calls complete.
- Pull the Docker image:
docker pull ghcr.io/restsend/rustpbx:latest- Create config.toml:
copy from config.toml.example
- Run with Docker:
docker run -d \
--name rustpbx \
-p 8080:8080 \
-p 15060:15060/udp \
-p 13050:13050/udp \
-p 20000-30000:20000-30000/udp \
--env-file .env \
-v $(pwd)/db:/app/db \
-v $(pwd)/config.toml:/app/config.toml \
-v $(pwd)/config:/app/config \
-v $(pwd)/recorders:/tmp/recorders \
ghcr.io/restsend/rustpbx:latest \
--conf /app/config.toml- Create super user via cli(optional)
docker exec rustpbx /app/rustpbx --conf /app/config.toml --super-user=YOUR --super-password=PASS- Access the service:
- Web Interface: http://localhost:8080/console/
- Login via
YOUR+PASS
- Login via
- SIP Proxy: localhost:15060
- User Agent: localhost:13050
See https://github.com/restsend/rustpbxgo
The SIP workflow demonstrates how external applications can initiate calls through RustPBX, leveraging the full SIP protocol stack for reliable voice communications.
The WebRTC workflow shows how web applications can establish direct peer-to-peer connections via RustPBX, enabling modern browser-based voice applications.
For detailed API documentation, see API Documentation.
- Modular proxy architecture with pluggable modules
- User authentication and registration
- Call routing and forwarding
- CDR (Call Detail Records) generation
- Automatic NAT detection and media proxying
- Configurable RTP port ranges
- Support for multiple codecs
- Real-time media relay
- Multiple ASR/TTS provider support
- Configurable LLM endpoints
- Voice activity detection
- Audio preprocessing and enhancement
- API Reference - Complete REST API documentation
- Architecture Diagrams - System architecture and workflows
- VoiceAgent Integration with Telephony Networks
- VoiceAgent ไธ็ต่ฏ็ฝ็ปไบ้็ๆๆฏๅฎ็ฐ
This project is currently in active development. We welcome contributions and feedback from the community.
MIT License - see LICENSE file for details.
Work in Progress - Core functionality is implemented and being actively refined. The system is suitable for development and testing environments.








