summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-10-07 15:46:08 +0000
committerMark Spencer <markster@digium.com>2004-10-07 15:46:08 +0000
commitfbbd30ca235788e7dee75532ad509777d0e139d0 (patch)
tree91f30db35bc3263ae789f766c7ec9de79e1269f3 /doc
parent209d413c6bfb5af91ca65e666f5ab52579251b84 (diff)
Add realtime support to SIP
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3927 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'doc')
-rwxr-xr-xdoc/README.extconfig20
1 files changed, 15 insertions, 5 deletions
diff --git a/doc/README.extconfig b/doc/README.extconfig
index 260263208..9e1a29dad 100755
--- a/doc/README.extconfig
+++ b/doc/README.extconfig
@@ -1,11 +1,11 @@
Asterisk external configuration
===============================
-The Asterisk external configuration engine is the result of work by
-Anthony Minessale II and Mark Spencer. It is designed to provide a
-flexible, seamless integration between Asterisk's internal
-configuration structure and external SQL other other databases
-(maybe even LDAP one day).
+The Asterisk external configuration engine is the result of work by
+Anthony Minessale II, Mark Spencer and Constantine (last name???).
+It is designed to provide a flexible, seamless integration between
+Asterisk's internal configuration structure and external SQL other other
+databases (maybe even LDAP one day).
External configuration is configured in /etc/asterisk/extconfig.conf
allowing you to map any configuration file (static mappings) to
@@ -36,3 +36,13 @@ Note that for use with IAX or SIP, the table will also need the "name",
"ipaddr", "port", "regseconds" columns. If you wanted to be able to
configure the callerid, you could just add a callerid column to the
table, for example.
+
+A SIP table would look more like this:
+
++------+--------+-------+----------+-----+------------+----------+
+| name | host | secret| ipaddr | port| regseconds | username |
++------+--------+-------+----------+-----+------------+----------+
+| foo | dynamic| bar | 127.0.0.1| 4569| 1096954152 | 1234 |
++------+--------+-------+----------+-----+------------+----------+
+
+in order to store appropriate parameters required for SIP.