SlideShare ist ein Scribd-Unternehmen logo
1 von 34
Downloaden Sie, um offline zu lesen
kam ailio 
sip servers everywhere 
Daniel-Constantin Mierla 
@miconda 
www.asipto.com 
www.kamailio.org 
AstriCon 2014 - Las Vegas, USA
WHOIS KAMAILIO 
2 
Let's Speak SIP = E Kama'ilio SIP 
Sep 2001 2002 Jun 2005 Jul 2008 Aug 2008 Nov 2008 
Sep 2011 
SIP Express Router (SER) 
OpenSER Kamailio 
Other Forks... 
Oct 2009 Jan 2010 
Same application: 
Kamailio - SER 
v3.0.0 
Integration 
Completed 
v1.5.0 
First 
Line 
Of 
Code 
Open 
Source ! 
GPL 
FhG 
Fokus 
Institute 
rename 
Awarded 
Best Open 
Source 
Networking 
Software 
2009 
By InfoWorld 
Oct 2014 
………. v4.2.0 
10 
Years 
Jun 2012 
ITSPA 
UK 
Award 
v3.3.0 
Mar 2013 
v4.0.0 
Dec 2013 
Kamailio 
v4.1.0
credits to @voicegal - theivrvoice.com 
3
! 
SIP signalling routing 
• fast 
• reliable 
• flexible 
4 
GROUND ZERO 
In other words 
• not initiating calls 
• not answering calls 
• no audio-video processing
DON’T PANIC 
! 
5 
Real Time Communications 
multimedia notifications 
telephony 
video conferences 
file transfer 
desktop sharing 
gaming 
instant messaging 
presence 
alerts 
monitoring 
mobility
INTER-NET-WORKING 
! 
6 
Real Time Communications 
multimedia notifications 
telephony 
video conferences 
file transfer 
desktop sharing 
gaming 
instant messaging 
presence 
alerts 
monitoring 
mobility 
Internet of Humans Internet of (Every)Things
THE INVISIBLE SIGNALLING 
! 
7 
Real Time Communications 
you get on the net 
telephony 
video conferences 
file transfer 
desktop sharing 
gaming 
• Registrations 
• Authentication challenges 
• NAT keepalives 
• Servers monitoring 
• Gateway hunting 
• Re-routing 
• Session updates
! 
8 
THE IMPACT OF SIGNALLING 
typical day for a person 
morning 
at 
home 
work 
not at 
home 
evening 
at 
home 
going out with friends is work duty
! 
9 
THE IMPACT OF SIGNALLING 
typical home phone activity 
morning 
3-5 
calls 
work 
0-2 
calls 
evening 
3-5 
calls 
no football game last evening
10 
SIP CALL SIGNALLING 
INVITE 
100 
180 
183 
INVITE 
INVITE 
ACK 
BYE 
200 OK 
200 OK 
200 OK 
200 OK 
INVITE 
407
11 
SIP REGISTRATION SIGNALLING 
REGISTER 
REGISTER 
OPTIONS 
401 
200 OK 
200 OK 
OPTIONS 
200 OK 
REGISTER 
NAT 
keepalive 
! 
every 20 sec 
every 3600 sec
THE IMPACT OF SIGNALLING 
! 
12 
a day on the wire 
user actions device actions 
12 msg x 10 (calls) 4 msg x 24 (regs) 
6 msg x 60 x 24 (ka) 
120 8736 
8856
13 
SIP SIGNALLING 
taking over facebook subscriber base 
msgs/day 
1 000 x 9 000 = 9 000 000 
… 
1 000 000 x 9 000 = 9 000 000 000
14 
SIP SIGNALLING 
taking over facebook subscriber base 
estimated bandwidth / day 
1000 phones: 9 000 000 x 1kB = ~ 9GB 
… 
1000000 phones: 9 000 000 000 x 1kB = ~9TB
FORGETTING ANYONE? 
15
16 
SIP SIGNALLING 
your friendly scanners 
extra traffic 
100 requests/seconds => 200 messages/second 
200 x 60 x 60 x 24 = 17 280 000 msgs/day 
17GB/day
17 
SIGNALLING REMARKS 
can be a significant source of processing 
(both network and application layer) 
! 
can be a lot even with small subscriber base 
(your online friends don’t let you rest) 
! 
numbers estimated for very basic usage model 
(imagine instant messaging, presence, mwi, blf, …)
SIP SERVERS EVERYWHERE 
18
TWO BASIC ARCHITECTURES 
! 
19 
main signalling server edge signalling server
! 
dispatcher module 
• list of balancing nodes from file or database 
• monitoring of nodes (activate/inactivate 
automatically) 
• re-route in case of failure 
• various algorithms: hashing, weight distribution, round 
robin, call load distribution, priority routing 
• reload list of nodes without restart 
20 
LOAD BALANCER 
# Dispatch requests 
route[DISPATCH] { 
# round robin dispatching on gateways group '1' 
if(!ds_select_dst("1", “4")) { 
send_reply("404", "No destination"); 
exit; 
} 
xdbg("--- SCRIPT: going to <$ru> via <$du>n"); 
t_on_failure("RTF_DISPATCH"); 
route(RELAY); 
exit; 
} 
# Re-route in case of failure 
failure_route[RTF_DISPATCH] { 
if (t_is_canceled()) { 
exit; 
} 
# next node - only for 500 or local timeout 
if (t_check_status(“500") || (t_branch_timeout() && !t_branch_replied())) { 
if(ds_next_dst()) { 
t_on_failure("RTF_DISPATCH"); 
route(RELAY); 
exit; 
} 
} 
}
! 
LEAST COST OR DID ROUTING 
plenty of options 
• lcr module 
• carrierroute module 
• prefix_route module 
• drouting module 
• combinations: mtree + dispatcher 
21 
route[LCR] { 
if (!load_gws("1")) { 
send_reply("503", "Error loading gateways"); 
exit; 
} 
if (!next_gw()) { 
send_reply("503", "No available gateways"); 
exit; 
} 
t_on_failure(“RTF_LCR"); 
route(RELAY); 
exit; 
} 
# Re-route in case of failure 
failure_route[RTF_LCR] { 
if (t_is_canceled()) { 
exit; 
} 
# next node - only for 500 or local timeout 
if (t_check_status(“500") || (t_branch_timeout() && !t_branch_replied())) { 
if(next_gw()) { 
t_on_failure("RTF_LCR"); 
route(RELAY); 
exit; 
} 
} 
} 
pstn 
provider 
pstn 
provider 
pstn 
provider 
lcr DID 
routing
! 
block DOS or dictionary attacks 
part of default kamailio.cfg 
• htable module 
• pike module 
• detect high volume of traffic from same source and 
block it for a specific interval of itme 
22 
SIP FIREWALL 
# ip ban htable with autoexpire after 5 minutes 
modparam("htable", "htable", “ipban=>size=8;autoexpire=300;") 
… 
route[SAFEGUARD] { 
# flood detection from same IP and traffic ban for a specific interval 
# be sure you exclude checking trusted peers, such as pstn gateways 
# - local host excluded (e.g., loop to self) 
if(src_ip!=myself) { 
if($sht(ipban=>$si)!=$null) { 
# ip is already blocked 
xdbg("request from blocked IP - $rm from $fu (IP:$si:$sp)n"); 
exit; 
} 
if (!pike_check_req()) { 
xlog("ALERT: pike blocking $rm from $fu (IP:$si:$sp)n"); 
$sht(ipban=>$si) = 1; 
exit; 
} 
} 
if($ua =~ "friendly-scanner") { 
sl_send_reply("200", "OK"); 
exit; 
} 
}
core and tm module 
• set transport in R-URI or outbound proxy address 
• force transport via dedicated function 
! 
23 
TRANSPORT LAYER GATEWAY 
# Force UDP 
route[TOUDP] { 
# round robin dispatching on gateways group '1' 
record_route(); 
$du = “sip:nexthop.com:5060;transport=udp”; 
force_send_socket(“udp:10.1.1.10:5080”); 
route(RELAY); 
exit; 
} 
tls 
web socket 
udp 
udp udp 
IPv6 
bridging networks 
• public to private networks and back 
• IPv4 to IPv6 and back 
• any transport layer to another one and back
! 
edge proxy 
• authentication 
• nat traversal 
• parallel forking 
• serial forking 
• call forwarding 
• call blocking 
• white/black listing 
• DNS handling 
24 
OFFLOAD SIGNALLING PROCESSING
25 
DESIGNED FOR SCALABILITY 
forking 
replication
TICTACTOE 
TURNRIGHT PUBLISH 
! 
plenty at signalling layer 
• instant messaging 
• presence 
• gaming 
• notifications 
26 
EXTRA FEATURES 
additional functions 
• embedded XCAP server 
• embedded MSRP relay 
• IMS 
extensibility 
• define your new request types 
• flexibility in handling unknown requests, headers, etc. 
INVITE 
NOTIFY 
MESSAGE
TO CONCLUDE 
27
SUITABLE FOR 
28 
lot of subscribers 
! 
lot of traffic (good or bad) 
! 
innovation 
! 
personal usage
29 
FEATURES 
IPv4 
IPv6 (since 2002!) 
UDP/TCP/TLS/SCTP 
SCTP 
multi-homing 
multi-streaming, statistics 
UDP Raw Sockets 
DNS NAPTR & SRV 
Plug-in Module Interface 
(about 200) 
! 
Scripting Config Language 
! 
Embedded Interpreters 
Lua, Perl 
Mono (C# and the rest) 
Python, Java 
Load Balancing 
Least Cost Routing 
DID - Prefix 
Routing 
Aliases 
Ring Groups 
Speed Dial 
ENUM Routing 
Presence Services 
Instant Messaging 
Embedded XCAP Sever 
Embedded HTTP Client & Server 
Embedded MSRP Relay 
Asynchronous Processing 
TCP - TLS 
SIP Request Processing 
Config Route Block Execution 
Suspend-Resume Transactions 
NoSQL Backends 
Memcached 
Redis 
Cassandra 
MongoDB 
SQL Backends 
MySQL 
PostgreSQL 
SQLite 
UNIXODBC 
ORACLE 
Text Files 
WebSocket 
(WebRTC) 
! 
IMS 
OMA 
Control API 
! 
XMLRPC 
JSONRPC 
Event API 
Focus 
! 
Stability 
High Performances 
Strong Security 
Innovation
30 
2014 HIGHLIGHTS 
db_mongodb evapi 
ndb_mongodb nosip 
core 
tm 
dispatcher 
uac 
rtpengine 
dialog 
enhancements 
tsilo 
kazoo 
jsonrpc-s 
debugger 
(per module debug) 
(log pv assignment) 
usrloc - dmq - ims 
uuid 
V4.2.0 released on Oct 16, 2014 
http://www.kamailio.org/wiki/features/new-in-4.2.x
SIREMIS WEB INTERFACE 
31
OUT OF THE BOX 
• sip:provider CE 
• Elastix 3.0 
• Kazoo 
• Plivo 
32 
open source options
www.kamailioworld.com 
33
Thank You! 
! 
Questions? 
Daniel-Constantin Mierla 
@miconda 
www.asipto.com 
www.kamailio.org 
34

Weitere ähnliche Inhalte

Was ist angesagt?

FOSDEM 2017 - RTC Services With Lua and Kamailio
FOSDEM 2017 - RTC Services With Lua and KamailioFOSDEM 2017 - RTC Services With Lua and Kamailio
FOSDEM 2017 - RTC Services With Lua and KamailioDaniel-Constantin Mierla
 
Using Asterisk and Kamailio for Reliable, Scalable and Secure Communication S...
Using Asterisk and Kamailio for Reliable, Scalable and Secure Communication S...Using Asterisk and Kamailio for Reliable, Scalable and Secure Communication S...
Using Asterisk and Kamailio for Reliable, Scalable and Secure Communication S...Fred Posner
 
Kamailio - Unifying SIP and Web Worlds with Lua
Kamailio - Unifying SIP and Web Worlds with LuaKamailio - Unifying SIP and Web Worlds with Lua
Kamailio - Unifying SIP and Web Worlds with LuaDaniel-Constantin Mierla
 
Kamailio with Docker and Kubernetes
Kamailio with Docker and KubernetesKamailio with Docker and Kubernetes
Kamailio with Docker and KubernetesPaolo Visintin
 
Astricon 2010: Scaling Asterisk installations
Astricon 2010: Scaling Asterisk installationsAstricon 2010: Scaling Asterisk installations
Astricon 2010: Scaling Asterisk installationsOlle E Johansson
 
Getting started with SIP Express Media Server SIP app server and SBC - workshop
Getting started with SIP Express Media Server SIP app server and SBC - workshopGetting started with SIP Express Media Server SIP app server and SBC - workshop
Getting started with SIP Express Media Server SIP app server and SBC - workshopstefansayer
 
Build HA Asterisk on Microsoft Azure using DRBD/Heartbeat
Build HA Asterisk on Microsoft Azure using DRBD/HeartbeatBuild HA Asterisk on Microsoft Azure using DRBD/Heartbeat
Build HA Asterisk on Microsoft Azure using DRBD/HeartbeatSanjay Willie
 
Kamailio World 2018: Having fun with new stuff
Kamailio World 2018: Having fun with new stuffKamailio World 2018: Having fun with new stuff
Kamailio World 2018: Having fun with new stuffOlle E Johansson
 
SIP and DNS - federation, failover, load balancing and more
SIP and DNS - federation, failover, load balancing and moreSIP and DNS - federation, failover, load balancing and more
SIP and DNS - federation, failover, load balancing and moreOlle E Johansson
 
Cisco asa dhcp services
Cisco asa dhcp servicesCisco asa dhcp services
Cisco asa dhcp servicesIT Tech
 
SIPCORE - presentation of SIP and DANE (IETF #89)
SIPCORE - presentation of SIP and DANE (IETF #89)SIPCORE - presentation of SIP and DANE (IETF #89)
SIPCORE - presentation of SIP and DANE (IETF #89)Olle E Johansson
 

Was ist angesagt? (20)

FOSDEM 2017 - RTC Services With Lua and Kamailio
FOSDEM 2017 - RTC Services With Lua and KamailioFOSDEM 2017 - RTC Services With Lua and Kamailio
FOSDEM 2017 - RTC Services With Lua and Kamailio
 
Using Asterisk and Kamailio for Reliable, Scalable and Secure Communication S...
Using Asterisk and Kamailio for Reliable, Scalable and Secure Communication S...Using Asterisk and Kamailio for Reliable, Scalable and Secure Communication S...
Using Asterisk and Kamailio for Reliable, Scalable and Secure Communication S...
 
Kamailio - Unifying SIP and Web Worlds with Lua
Kamailio - Unifying SIP and Web Worlds with LuaKamailio - Unifying SIP and Web Worlds with Lua
Kamailio - Unifying SIP and Web Worlds with Lua
 
Kamailio - SIP Routing in Lua
Kamailio - SIP Routing in LuaKamailio - SIP Routing in Lua
Kamailio - SIP Routing in Lua
 
Kamailio with Docker and Kubernetes
Kamailio with Docker and KubernetesKamailio with Docker and Kubernetes
Kamailio with Docker and Kubernetes
 
SIP Tutorial/Workshop 3
SIP Tutorial/Workshop 3SIP Tutorial/Workshop 3
SIP Tutorial/Workshop 3
 
Snappy Kamailio
Snappy KamailioSnappy Kamailio
Snappy Kamailio
 
Astricon 10 (October 2013) - SIP over WebSocket on Kamailio
Astricon 10 (October 2013) - SIP over WebSocket on KamailioAstricon 10 (October 2013) - SIP over WebSocket on Kamailio
Astricon 10 (October 2013) - SIP over WebSocket on Kamailio
 
Astricon 2010: Scaling Asterisk installations
Astricon 2010: Scaling Asterisk installationsAstricon 2010: Scaling Asterisk installations
Astricon 2010: Scaling Asterisk installations
 
Kamailio on Docker
Kamailio on DockerKamailio on Docker
Kamailio on Docker
 
Getting started with SIP Express Media Server SIP app server and SBC - workshop
Getting started with SIP Express Media Server SIP app server and SBC - workshopGetting started with SIP Express Media Server SIP app server and SBC - workshop
Getting started with SIP Express Media Server SIP app server and SBC - workshop
 
Build HA Asterisk on Microsoft Azure using DRBD/Heartbeat
Build HA Asterisk on Microsoft Azure using DRBD/HeartbeatBuild HA Asterisk on Microsoft Azure using DRBD/Heartbeat
Build HA Asterisk on Microsoft Azure using DRBD/Heartbeat
 
Kamailio World 2018: Having fun with new stuff
Kamailio World 2018: Having fun with new stuffKamailio World 2018: Having fun with new stuff
Kamailio World 2018: Having fun with new stuff
 
Asterisk sip channel performance
Asterisk sip channel performanceAsterisk sip channel performance
Asterisk sip channel performance
 
SIP and DNS - federation, failover, load balancing and more
SIP and DNS - federation, failover, load balancing and moreSIP and DNS - federation, failover, load balancing and more
SIP and DNS - federation, failover, load balancing and more
 
Asterisk Complete Training
Asterisk Complete TrainingAsterisk Complete Training
Asterisk Complete Training
 
Cisco asa dhcp services
Cisco asa dhcp servicesCisco asa dhcp services
Cisco asa dhcp services
 
Asterisk Voip
Asterisk VoipAsterisk Voip
Asterisk Voip
 
Nat
NatNat
Nat
 
SIPCORE - presentation of SIP and DANE (IETF #89)
SIPCORE - presentation of SIP and DANE (IETF #89)SIPCORE - presentation of SIP and DANE (IETF #89)
SIPCORE - presentation of SIP and DANE (IETF #89)
 

Andere mochten auch

Toll Fraud detection with automatic mitigation using CGRateS
Toll Fraud detection with automatic mitigation using CGRateSToll Fraud detection with automatic mitigation using CGRateS
Toll Fraud detection with automatic mitigation using CGRateSDan Christian Bogos
 
Kamailio - SIP Firewall for Carrier Grade Traffic
Kamailio - SIP Firewall for Carrier Grade TrafficKamailio - SIP Firewall for Carrier Grade Traffic
Kamailio - SIP Firewall for Carrier Grade TrafficDaniel-Constantin Mierla
 
Asterisk, HTML5 and NodeJS; a world of endless possibilities
Asterisk, HTML5 and NodeJS; a world of endless possibilitiesAsterisk, HTML5 and NodeJS; a world of endless possibilities
Asterisk, HTML5 and NodeJS; a world of endless possibilitiesDan Jenkins
 
Voice over Internet Protocol (VoIP) using Asterisk
Voice over Internet Protocol (VoIP) using AsteriskVoice over Internet Protocol (VoIP) using Asterisk
Voice over Internet Protocol (VoIP) using AsteriskSameer Verma
 
Kamailio :: A Quick Introduction
Kamailio :: A Quick IntroductionKamailio :: A Quick Introduction
Kamailio :: A Quick IntroductionOlle E Johansson
 
Kamailio World 2016: Update your SIP!
Kamailio World 2016: Update your SIP!Kamailio World 2016: Update your SIP!
Kamailio World 2016: Update your SIP!Olle E Johansson
 

Andere mochten auch (7)

Toll Fraud detection with automatic mitigation using CGRateS
Toll Fraud detection with automatic mitigation using CGRateSToll Fraud detection with automatic mitigation using CGRateS
Toll Fraud detection with automatic mitigation using CGRateS
 
Kamailio - SIP Firewall for Carrier Grade Traffic
Kamailio - SIP Firewall for Carrier Grade TrafficKamailio - SIP Firewall for Carrier Grade Traffic
Kamailio - SIP Firewall for Carrier Grade Traffic
 
Asterisk, HTML5 and NodeJS; a world of endless possibilities
Asterisk, HTML5 and NodeJS; a world of endless possibilitiesAsterisk, HTML5 and NodeJS; a world of endless possibilities
Asterisk, HTML5 and NodeJS; a world of endless possibilities
 
Voice over Internet Protocol (VoIP) using Asterisk
Voice over Internet Protocol (VoIP) using AsteriskVoice over Internet Protocol (VoIP) using Asterisk
Voice over Internet Protocol (VoIP) using Asterisk
 
Kamailio :: A Quick Introduction
Kamailio :: A Quick IntroductionKamailio :: A Quick Introduction
Kamailio :: A Quick Introduction
 
Participate in SIPit
Participate in SIPitParticipate in SIPit
Participate in SIPit
 
Kamailio World 2016: Update your SIP!
Kamailio World 2016: Update your SIP!Kamailio World 2016: Update your SIP!
Kamailio World 2016: Update your SIP!
 

Ähnlich wie Kamailio - SIP Servers Everywhere

Kamailio and VoIP Wild World
Kamailio and VoIP Wild WorldKamailio and VoIP Wild World
Kamailio and VoIP Wild World2600Hz
 
Designing High Performance RTC Signaling Servers
Designing High Performance RTC Signaling ServersDesigning High Performance RTC Signaling Servers
Designing High Performance RTC Signaling ServersDaniel-Constantin Mierla
 
Kamailio - Surfing Big Waves Of SIP With Style
Kamailio - Surfing Big Waves Of SIP With StyleKamailio - Surfing Big Waves Of SIP With Style
Kamailio - Surfing Big Waves Of SIP With StyleDaniel-Constantin Mierla
 
Skydive, real-time network analyzer, container integration
Skydive, real-time network analyzer, container integrationSkydive, real-time network analyzer, container integration
Skydive, real-time network analyzer, container integrationSylvain Afchain
 
IPv6 Fundamentals & Securities
IPv6 Fundamentals & SecuritiesIPv6 Fundamentals & Securities
IPv6 Fundamentals & SecuritiesDon Anto
 
Detecting Spoofing at IXPs
Detecting Spoofing at IXPsDetecting Spoofing at IXPs
Detecting Spoofing at IXPsAPNIC
 
Detecting spoofing at IxP's
Detecting spoofing at IxP'sDetecting spoofing at IxP's
Detecting spoofing at IxP'sTom Paseka
 
Multi-Layer DDoS Mitigation Strategies
Multi-Layer DDoS Mitigation StrategiesMulti-Layer DDoS Mitigation Strategies
Multi-Layer DDoS Mitigation StrategiesSagi Brody
 
Attacking SAP Mobile
Attacking SAP MobileAttacking SAP Mobile
Attacking SAP MobileERPScan
 
Using Kamailio for Scalability and Security
Using Kamailio for Scalability and SecurityUsing Kamailio for Scalability and Security
Using Kamailio for Scalability and SecurityFred Posner
 
NetFlow Monitoring for Cyber Threat Defense
NetFlow Monitoring for Cyber Threat DefenseNetFlow Monitoring for Cyber Threat Defense
NetFlow Monitoring for Cyber Threat DefenseCisco Canada
 
DSLing your System For Scalability Testing Using Gatling - Dublin Scala User ...
DSLing your System For Scalability Testing Using Gatling - Dublin Scala User ...DSLing your System For Scalability Testing Using Gatling - Dublin Scala User ...
DSLing your System For Scalability Testing Using Gatling - Dublin Scala User ...Aman Kohli
 
Being HAPI! Reverse Proxying on Purpose
Being HAPI! Reverse Proxying on PurposeBeing HAPI! Reverse Proxying on Purpose
Being HAPI! Reverse Proxying on PurposeAman Kohli
 
KazooCon 2014 - Playing Kazoo Dudka Style
KazooCon 2014 - Playing Kazoo Dudka StyleKazooCon 2014 - Playing Kazoo Dudka Style
KazooCon 2014 - Playing Kazoo Dudka Style2600Hz
 
A deep dive about VIP,HAIP, and SCAN
A deep dive about VIP,HAIP, and SCAN A deep dive about VIP,HAIP, and SCAN
A deep dive about VIP,HAIP, and SCAN Riyaj Shamsudeen
 
OpenNebulaConf 2016 - Networking, NFVs and SDNs Hands-on Workshop by Rubén S....
OpenNebulaConf 2016 - Networking, NFVs and SDNs Hands-on Workshop by Rubén S....OpenNebulaConf 2016 - Networking, NFVs and SDNs Hands-on Workshop by Rubén S....
OpenNebulaConf 2016 - Networking, NFVs and SDNs Hands-on Workshop by Rubén S....OpenNebula Project
 
ZFConf 2011: Что такое Sphinx, зачем он вообще нужен и как его использовать с...
ZFConf 2011: Что такое Sphinx, зачем он вообще нужен и как его использовать с...ZFConf 2011: Что такое Sphinx, зачем он вообще нужен и как его использовать с...
ZFConf 2011: Что такое Sphinx, зачем он вообще нужен и как его использовать с...ZFConf Conference
 
Session Initiation Protocol
Session Initiation ProtocolSession Initiation Protocol
Session Initiation ProtocolMatt Bynum
 

Ähnlich wie Kamailio - SIP Servers Everywhere (20)

Kamailio and VoIP Wild World
Kamailio and VoIP Wild WorldKamailio and VoIP Wild World
Kamailio and VoIP Wild World
 
Designing High Performance RTC Signaling Servers
Designing High Performance RTC Signaling ServersDesigning High Performance RTC Signaling Servers
Designing High Performance RTC Signaling Servers
 
Kamailio - Surfing Big Waves Of SIP With Style
Kamailio - Surfing Big Waves Of SIP With StyleKamailio - Surfing Big Waves Of SIP With Style
Kamailio - Surfing Big Waves Of SIP With Style
 
Skydive, real-time network analyzer, container integration
Skydive, real-time network analyzer, container integrationSkydive, real-time network analyzer, container integration
Skydive, real-time network analyzer, container integration
 
IPv6 Fundamentals & Securities
IPv6 Fundamentals & SecuritiesIPv6 Fundamentals & Securities
IPv6 Fundamentals & Securities
 
Detecting Spoofing at IXPs
Detecting Spoofing at IXPsDetecting Spoofing at IXPs
Detecting Spoofing at IXPs
 
Detecting spoofing at IxP's
Detecting spoofing at IxP'sDetecting spoofing at IxP's
Detecting spoofing at IxP's
 
Multi-Layer DDoS Mitigation Strategies
Multi-Layer DDoS Mitigation StrategiesMulti-Layer DDoS Mitigation Strategies
Multi-Layer DDoS Mitigation Strategies
 
Attacking SAP Mobile
Attacking SAP MobileAttacking SAP Mobile
Attacking SAP Mobile
 
Using Kamailio for Scalability and Security
Using Kamailio for Scalability and SecurityUsing Kamailio for Scalability and Security
Using Kamailio for Scalability and Security
 
NetFlow Monitoring for Cyber Threat Defense
NetFlow Monitoring for Cyber Threat DefenseNetFlow Monitoring for Cyber Threat Defense
NetFlow Monitoring for Cyber Threat Defense
 
DSLing your System For Scalability Testing Using Gatling - Dublin Scala User ...
DSLing your System For Scalability Testing Using Gatling - Dublin Scala User ...DSLing your System For Scalability Testing Using Gatling - Dublin Scala User ...
DSLing your System For Scalability Testing Using Gatling - Dublin Scala User ...
 
Being HAPI! Reverse Proxying on Purpose
Being HAPI! Reverse Proxying on PurposeBeing HAPI! Reverse Proxying on Purpose
Being HAPI! Reverse Proxying on Purpose
 
Skydive 5/07/2016
Skydive 5/07/2016Skydive 5/07/2016
Skydive 5/07/2016
 
KazooCon 2014 - Playing Kazoo Dudka Style
KazooCon 2014 - Playing Kazoo Dudka StyleKazooCon 2014 - Playing Kazoo Dudka Style
KazooCon 2014 - Playing Kazoo Dudka Style
 
A deep dive about VIP,HAIP, and SCAN
A deep dive about VIP,HAIP, and SCAN A deep dive about VIP,HAIP, and SCAN
A deep dive about VIP,HAIP, and SCAN
 
OpenNebulaConf 2016 - Networking, NFVs and SDNs Hands-on Workshop by Rubén S....
OpenNebulaConf 2016 - Networking, NFVs and SDNs Hands-on Workshop by Rubén S....OpenNebulaConf 2016 - Networking, NFVs and SDNs Hands-on Workshop by Rubén S....
OpenNebulaConf 2016 - Networking, NFVs and SDNs Hands-on Workshop by Rubén S....
 
Tech f42
Tech f42Tech f42
Tech f42
 
ZFConf 2011: Что такое Sphinx, зачем он вообще нужен и как его использовать с...
ZFConf 2011: Что такое Sphinx, зачем он вообще нужен и как его использовать с...ZFConf 2011: Что такое Sphinx, зачем он вообще нужен и как его использовать с...
ZFConf 2011: Что такое Sphinx, зачем он вообще нужен и как его использовать с...
 
Session Initiation Protocol
Session Initiation ProtocolSession Initiation Protocol
Session Initiation Protocol
 

Mehr von Daniel-Constantin Mierla

Mehr von Daniel-Constantin Mierla (9)

TAD Summit 2016 - The Mobile World Up Side Down
TAD Summit 2016 - The Mobile World Up Side DownTAD Summit 2016 - The Mobile World Up Side Down
TAD Summit 2016 - The Mobile World Up Side Down
 
10 Years SER - Awards
10 Years SER - Awards10 Years SER - Awards
10 Years SER - Awards
 
Sculpturing SIP World
Sculpturing SIP WorldSculpturing SIP World
Sculpturing SIP World
 
CPDL - Charging Plan Definition Language
CPDL - Charging Plan Definition LanguageCPDL - Charging Plan Definition Language
CPDL - Charging Plan Definition Language
 
SER - SIP Express Router
SER - SIP Express RouterSER - SIP Express Router
SER - SIP Express Router
 
SIP Router Project
SIP Router ProjectSIP Router Project
SIP Router Project
 
Kamailio - Large Unified Communication Platforms
Kamailio - Large Unified Communication PlatformsKamailio - Large Unified Communication Platforms
Kamailio - Large Unified Communication Platforms
 
Kamailio - The Story for Asterisk
Kamailio - The Story for AsteriskKamailio - The Story for Asterisk
Kamailio - The Story for Asterisk
 
Kamailio - Load Balancing Load Balancers
Kamailio - Load Balancing Load BalancersKamailio - Load Balancing Load Balancers
Kamailio - Load Balancing Load Balancers
 

Kürzlich hochgeladen

Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 

Kürzlich hochgeladen (20)

Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 

Kamailio - SIP Servers Everywhere

  • 1. kam ailio sip servers everywhere Daniel-Constantin Mierla @miconda www.asipto.com www.kamailio.org AstriCon 2014 - Las Vegas, USA
  • 2. WHOIS KAMAILIO 2 Let's Speak SIP = E Kama'ilio SIP Sep 2001 2002 Jun 2005 Jul 2008 Aug 2008 Nov 2008 Sep 2011 SIP Express Router (SER) OpenSER Kamailio Other Forks... Oct 2009 Jan 2010 Same application: Kamailio - SER v3.0.0 Integration Completed v1.5.0 First Line Of Code Open Source ! GPL FhG Fokus Institute rename Awarded Best Open Source Networking Software 2009 By InfoWorld Oct 2014 ………. v4.2.0 10 Years Jun 2012 ITSPA UK Award v3.3.0 Mar 2013 v4.0.0 Dec 2013 Kamailio v4.1.0
  • 3. credits to @voicegal - theivrvoice.com 3
  • 4. ! SIP signalling routing • fast • reliable • flexible 4 GROUND ZERO In other words • not initiating calls • not answering calls • no audio-video processing
  • 5. DON’T PANIC ! 5 Real Time Communications multimedia notifications telephony video conferences file transfer desktop sharing gaming instant messaging presence alerts monitoring mobility
  • 6. INTER-NET-WORKING ! 6 Real Time Communications multimedia notifications telephony video conferences file transfer desktop sharing gaming instant messaging presence alerts monitoring mobility Internet of Humans Internet of (Every)Things
  • 7. THE INVISIBLE SIGNALLING ! 7 Real Time Communications you get on the net telephony video conferences file transfer desktop sharing gaming • Registrations • Authentication challenges • NAT keepalives • Servers monitoring • Gateway hunting • Re-routing • Session updates
  • 8. ! 8 THE IMPACT OF SIGNALLING typical day for a person morning at home work not at home evening at home going out with friends is work duty
  • 9. ! 9 THE IMPACT OF SIGNALLING typical home phone activity morning 3-5 calls work 0-2 calls evening 3-5 calls no football game last evening
  • 10. 10 SIP CALL SIGNALLING INVITE 100 180 183 INVITE INVITE ACK BYE 200 OK 200 OK 200 OK 200 OK INVITE 407
  • 11. 11 SIP REGISTRATION SIGNALLING REGISTER REGISTER OPTIONS 401 200 OK 200 OK OPTIONS 200 OK REGISTER NAT keepalive ! every 20 sec every 3600 sec
  • 12. THE IMPACT OF SIGNALLING ! 12 a day on the wire user actions device actions 12 msg x 10 (calls) 4 msg x 24 (regs) 6 msg x 60 x 24 (ka) 120 8736 8856
  • 13. 13 SIP SIGNALLING taking over facebook subscriber base msgs/day 1 000 x 9 000 = 9 000 000 … 1 000 000 x 9 000 = 9 000 000 000
  • 14. 14 SIP SIGNALLING taking over facebook subscriber base estimated bandwidth / day 1000 phones: 9 000 000 x 1kB = ~ 9GB … 1000000 phones: 9 000 000 000 x 1kB = ~9TB
  • 16. 16 SIP SIGNALLING your friendly scanners extra traffic 100 requests/seconds => 200 messages/second 200 x 60 x 60 x 24 = 17 280 000 msgs/day 17GB/day
  • 17. 17 SIGNALLING REMARKS can be a significant source of processing (both network and application layer) ! can be a lot even with small subscriber base (your online friends don’t let you rest) ! numbers estimated for very basic usage model (imagine instant messaging, presence, mwi, blf, …)
  • 19. TWO BASIC ARCHITECTURES ! 19 main signalling server edge signalling server
  • 20. ! dispatcher module • list of balancing nodes from file or database • monitoring of nodes (activate/inactivate automatically) • re-route in case of failure • various algorithms: hashing, weight distribution, round robin, call load distribution, priority routing • reload list of nodes without restart 20 LOAD BALANCER # Dispatch requests route[DISPATCH] { # round robin dispatching on gateways group '1' if(!ds_select_dst("1", “4")) { send_reply("404", "No destination"); exit; } xdbg("--- SCRIPT: going to <$ru> via <$du>n"); t_on_failure("RTF_DISPATCH"); route(RELAY); exit; } # Re-route in case of failure failure_route[RTF_DISPATCH] { if (t_is_canceled()) { exit; } # next node - only for 500 or local timeout if (t_check_status(“500") || (t_branch_timeout() && !t_branch_replied())) { if(ds_next_dst()) { t_on_failure("RTF_DISPATCH"); route(RELAY); exit; } } }
  • 21. ! LEAST COST OR DID ROUTING plenty of options • lcr module • carrierroute module • prefix_route module • drouting module • combinations: mtree + dispatcher 21 route[LCR] { if (!load_gws("1")) { send_reply("503", "Error loading gateways"); exit; } if (!next_gw()) { send_reply("503", "No available gateways"); exit; } t_on_failure(“RTF_LCR"); route(RELAY); exit; } # Re-route in case of failure failure_route[RTF_LCR] { if (t_is_canceled()) { exit; } # next node - only for 500 or local timeout if (t_check_status(“500") || (t_branch_timeout() && !t_branch_replied())) { if(next_gw()) { t_on_failure("RTF_LCR"); route(RELAY); exit; } } } pstn provider pstn provider pstn provider lcr DID routing
  • 22. ! block DOS or dictionary attacks part of default kamailio.cfg • htable module • pike module • detect high volume of traffic from same source and block it for a specific interval of itme 22 SIP FIREWALL # ip ban htable with autoexpire after 5 minutes modparam("htable", "htable", “ipban=>size=8;autoexpire=300;") … route[SAFEGUARD] { # flood detection from same IP and traffic ban for a specific interval # be sure you exclude checking trusted peers, such as pstn gateways # - local host excluded (e.g., loop to self) if(src_ip!=myself) { if($sht(ipban=>$si)!=$null) { # ip is already blocked xdbg("request from blocked IP - $rm from $fu (IP:$si:$sp)n"); exit; } if (!pike_check_req()) { xlog("ALERT: pike blocking $rm from $fu (IP:$si:$sp)n"); $sht(ipban=>$si) = 1; exit; } } if($ua =~ "friendly-scanner") { sl_send_reply("200", "OK"); exit; } }
  • 23. core and tm module • set transport in R-URI or outbound proxy address • force transport via dedicated function ! 23 TRANSPORT LAYER GATEWAY # Force UDP route[TOUDP] { # round robin dispatching on gateways group '1' record_route(); $du = “sip:nexthop.com:5060;transport=udp”; force_send_socket(“udp:10.1.1.10:5080”); route(RELAY); exit; } tls web socket udp udp udp IPv6 bridging networks • public to private networks and back • IPv4 to IPv6 and back • any transport layer to another one and back
  • 24. ! edge proxy • authentication • nat traversal • parallel forking • serial forking • call forwarding • call blocking • white/black listing • DNS handling 24 OFFLOAD SIGNALLING PROCESSING
  • 25. 25 DESIGNED FOR SCALABILITY forking replication
  • 26. TICTACTOE TURNRIGHT PUBLISH ! plenty at signalling layer • instant messaging • presence • gaming • notifications 26 EXTRA FEATURES additional functions • embedded XCAP server • embedded MSRP relay • IMS extensibility • define your new request types • flexibility in handling unknown requests, headers, etc. INVITE NOTIFY MESSAGE
  • 28. SUITABLE FOR 28 lot of subscribers ! lot of traffic (good or bad) ! innovation ! personal usage
  • 29. 29 FEATURES IPv4 IPv6 (since 2002!) UDP/TCP/TLS/SCTP SCTP multi-homing multi-streaming, statistics UDP Raw Sockets DNS NAPTR & SRV Plug-in Module Interface (about 200) ! Scripting Config Language ! Embedded Interpreters Lua, Perl Mono (C# and the rest) Python, Java Load Balancing Least Cost Routing DID - Prefix Routing Aliases Ring Groups Speed Dial ENUM Routing Presence Services Instant Messaging Embedded XCAP Sever Embedded HTTP Client & Server Embedded MSRP Relay Asynchronous Processing TCP - TLS SIP Request Processing Config Route Block Execution Suspend-Resume Transactions NoSQL Backends Memcached Redis Cassandra MongoDB SQL Backends MySQL PostgreSQL SQLite UNIXODBC ORACLE Text Files WebSocket (WebRTC) ! IMS OMA Control API ! XMLRPC JSONRPC Event API Focus ! Stability High Performances Strong Security Innovation
  • 30. 30 2014 HIGHLIGHTS db_mongodb evapi ndb_mongodb nosip core tm dispatcher uac rtpengine dialog enhancements tsilo kazoo jsonrpc-s debugger (per module debug) (log pv assignment) usrloc - dmq - ims uuid V4.2.0 released on Oct 16, 2014 http://www.kamailio.org/wiki/features/new-in-4.2.x
  • 32. OUT OF THE BOX • sip:provider CE • Elastix 3.0 • Kazoo • Plivo 32 open source options
  • 34. Thank You! ! Questions? Daniel-Constantin Mierla @miconda www.asipto.com www.kamailio.org 34