Difference between revisions of "OpenSIPS: Demo Dial Plan"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 33: | Line 33: | ||
==Pranala Menarik== | ==Pranala Menarik== | ||
+ | * [[OpenSIPS]] | ||
* [[OpenSIPS Softswitch]] | * [[OpenSIPS Softswitch]] | ||
* [[Compile OpenSIPS]] | * [[Compile OpenSIPS]] | ||
Line 41: | Line 42: | ||
* [[Konfigurasi minimal OpenSIPS]] | * [[Konfigurasi minimal OpenSIPS]] | ||
* [[OpenSIPS: Demo User]] | * [[OpenSIPS: Demo User]] | ||
+ | * [[Relay ke PSTN Menggunakan OpenSIPS]] | ||
+ | * [[Relay ke Selular Menggunakan OpenSIPS]] | ||
+ | * [[ENUM Query di OpenSIPS]] |
Latest revision as of 06:04, 31 December 2013
Edit
vi /usr/local/etc/opensips/opensips.cfg
Isi
loadmodule "enum.so"
modparam("enum", "domain_suffix", "e164.id.") modparam("enum", "i_enum_suffix", "e164.id.")
# attempt handoff to PSTN if (uri=~"^sip:021[0-9]*@*") { rewritehostport( "192.168.0.200:5061"); ## 192.168.0.200:5061 adalah Analog Telepon Adapter (ATA) route(1); }; # attempt handoff to Selular if (uri=~"^sip:08[0-9]*@*") { rewritehostport( "192.168.0.200:5061"); ## 192.168.0.200:5061 adalah Analog Telepon Adapter (ATA) route(1); }; if (uri=~"^sip:00[1-9][0-9]*@*") { strip(2); prefix("+"); }; if (uri=~"sip:\+[0-9]+@*") enum_query("e164.id.");