CAMEL (Customized Applications for Mobile Enhanced Logic)¶
Overview¶
CAMEL is an intelligent network protocol that enables operators to provide advanced services across network boundaries. It's crucial for roaming services and real-time charging applications.
Protocol Phases¶
Phase | Features | Applications |
---|---|---|
Phase 1 | Basic call control, charging | Prepaid roaming |
Phase 2 | SMS control, GPRS support | Mobile VPN |
Phase 3 | Enhanced call control | Location services |
Phase 4 | IMS integration | Multimedia services |
Key Features¶
- Real-time charging control
- Dynamic routing
- Service triggering
- Prepaid service support
- Virtual Private Networks (VPN)
- Customized ring-back tones
Common Operations¶
Initial Detection Point (IDP)¶
# Send IDP for call setup
response = client.camel.send_initial_dp(
service_key=1,
called_party_number="441234567890",
calling_party_number="441234567891",
imsi="123456789012345",
location_number="441234567892"
)
Apply Charging¶
# Apply charging operation
response = client.camel.apply_charging(
time_unit_seconds=60,
max_call_period_duration=3600,
warning_period=30
)
Vendor Integration¶
Nokia Siemens gsmSCF¶
- Product Line: Nokia NetAct Service Control
- Deployment Options:
- Traditional rack-mounted
- Virtualized (VMware/KVM)
- Cloud-native containers
- Key Features:
- Full CAMEL Phase 1-4 support
- High-performance transaction engine
- Advanced service creation environment
- Real-time charging and control
- Configuration Example:
Ericsson IN Platform¶
- Product Line: Ericsson Charging System
- Platform Features:
- Service Creation Environment (SCE)
- Visual service design
- Integrated testing framework
- Performance analytics
- Integration Methods:
- Direct SS7/SIGTRAN
- Diameter for online charging
- REST APIs for management
- Configuration Example:
Huawei SCP (Service Control Point)¶
- Product Line: Huawei IN Suite
- Architecture Components:
- Service Logic Execution Environment
- Session Control Function
- Charging Gateway Function
- Management System
- Advanced Features:
- Multi-protocol support (CAMEL/INAP/WIN)
- Geographic redundancy
- Load sharing
- Real-time statistics
- Configuration Example:
Oracle IN Platform¶
- Product Line: Oracle Communications Service Controller
- Cloud Capabilities:
- Kubernetes deployment
- Auto-scaling
- Service mesh integration
- Cloud-native monitoring
- Integration Features:
- Multi-vendor interoperability
- Protocol adaptation layer
- Custom service templates
- Analytics dashboard
- Configuration Example:
Integration Best Practices¶
Nokia Integration¶
-
Service Creation
-
Charging Control
Ericsson Integration¶
-
Service Deployment
-
Performance Monitoring
Huawei Integration¶
-
SLEE Configuration
-
Geographic Redundancy
Oracle Integration¶
-
Kubernetes Deployment
-
Service Template
Service Examples¶
Prepaid Roaming¶
```