Difference between revisions of "OpenSIPS: Demo Dial Plan"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
(One intermediate revision by the same user not shown) | |||
Line 45: | Line 45: | ||
* [[Relay ke Selular Menggunakan OpenSIPS]] | * [[Relay ke Selular Menggunakan OpenSIPS]] | ||
* [[ENUM Query di 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.");