diff options
author | John Crispin <john@openwrt.org> | 2012-02-14 15:05:52 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2012-02-14 15:05:52 +0000 |
commit | d82c9a1b15242d107838db706aa0e6ab1b51e0fc (patch) | |
tree | baf38a30474000f15fd91dde0e7dc4184f579322 /package/owsip/files/telephony.conf | |
parent | 976d3eb85418257a2748f054d811eb0c2e70f820 (diff) | |
download | upstream-d82c9a1b15242d107838db706aa0e6ab1b51e0fc.tar.gz upstream-d82c9a1b15242d107838db706aa0e6ab1b51e0fc.tar.bz2 upstream-d82c9a1b15242d107838db706aa0e6ab1b51e0fc.zip |
add a simple sip client
SVN-Revision: 30519
Diffstat (limited to 'package/owsip/files/telephony.conf')
-rw-r--r-- | package/owsip/files/telephony.conf | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/package/owsip/files/telephony.conf b/package/owsip/files/telephony.conf new file mode 100644 index 0000000000..7cc1e9f0f2 --- /dev/null +++ b/package/owsip/files/telephony.conf @@ -0,0 +1,32 @@ +config general general + option name owsip + option backend ltq_tapi + option ossdev 0 + option log_level 3 + option interface nas0 + option local_port 5060 + option rtp_port 4000 + option locale germany + +config stun stun + option host stun.myrealm.com + option port 3478 + +config account example1 + option realm myrealm1.com + option username myuser1 + option password mypass1 + option disabled 1 + +config account example2 + option realm myrealm2.com + option username myuser2 + option password mypass2 + option disabled 1 + +config contact + option desc "example contact description" + option code "example" + option dial "0123456789" + option type realm + |