tutorials:auth:auth_db
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tutorials:auth:auth_db [2014/12/09 21:42] – [Installation of the Kamailio Auth, Auth_DB, usrloc] eschmidbauer | tutorials:auth:auth_db [2014/12/09 21:55] (current) – eschmidbauer | ||
---|---|---|---|
Line 1: | Line 1: | ||
**Note: This document is work in progress and yet unfinished!** | **Note: This document is work in progress and yet unfinished!** | ||
+ | |||
+ | written by Emmanuel Schmidbauer (eschmidbauer@gmail.com) | ||
This guide is designed to illustrate how to setup auth_db and usrloc to do digest authentication using a database backend. I will be using a postgresql database in this example. | This guide is designed to illustrate how to setup auth_db and usrloc to do digest authentication using a database backend. I will be using a postgresql database in this example. | ||
+ | |||
+ | The following modules are required: usrloc, registrar, auth, auth_db | ||
Line 8: | Line 12: | ||
You'll probably want to setup your database and add a few users. I will briefly go over how to setup the tables using the schema provided with kamailio. | You'll probably want to setup your database and add a few users. I will briefly go over how to setup the tables using the schema provided with kamailio. | ||
- | ====== | + | ====== Modules: auth, auth_db, usrloc, registrar |
+ | |||
+ | < | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | loadmodule " | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | modparam(" | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | # ------------------------- | ||
+ | # main routing logic | ||
+ | |||
+ | route { | ||
+ | # per request initial checks | ||
+ | route(SANITY_CHECK); | ||
+ | |||
+ | # CANCEL processing | ||
+ | if (is_method(" | ||
+ | if (t_check_trans()) { | ||
+ | t_relay(); | ||
+ | } | ||
+ | exit; | ||
+ | } | ||
+ | |||
+ | route(CHECK_SOURCE_IP); | ||
+ | |||
+ | ################################## | ||
+ | ### HANDLE SEQUENTIAL REQUESTS ### | ||
+ | route(WITHINDLG); | ||
+ | |||
+ | ############################### | ||
+ | ### HANDLE INITIAL REQUESTS ### | ||
+ | t_check_trans(); | ||
+ | |||
+ | route(REGISTER); | ||
+ | |||
+ | route(INVITE); | ||
+ | |||
+ | route(RELAY); | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | route[REGISTER] | ||
+ | { | ||
+ | if (is_method(" | ||
+ | # auth user/pass | ||
+ | if(!www_authenticate(" | ||
+ | www_challenge(" | ||
+ | } | ||
+ | |||
+ | if (!save(" | ||
+ | sl_reply_error(); | ||
+ | } | ||
+ | exit; | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | < | ||
+ | # Handle INVITE + REFER | ||
+ | route[INVITE] | ||
+ | { | ||
+ | # record routing for dialog forming requests (in case they are routed) | ||
+ | # remove preloaded route headers | ||
+ | remove_hf(" | ||
+ | if (is_method(" | ||
+ | record_route(); | ||
+ | # auth user/pass | ||
+ | if (!proxy_authenticate(" | ||
+ | proxy_challenge(" | ||
+ | exit; | ||
+ | } | ||
+ | } | ||
+ | } | ||
+ | </ |
tutorials/auth/auth_db.1418161341.txt.gz · Last modified: 2014/12/09 21:42 by eschmidbauer