Difference between revisions of "YATE: Konfigurasi User"

From OnnoWiki
Jump to navigation Jump to search
(New page: Regfile is a registration module. It can be used for autentication, registration, and routing of users from a file. Is provided as a demo module for people who want to develop their own au...)
 
Line 38: Line 38:
  
 
==Pranala Menarik==
 
==Pranala Menarik==
 +
 +
* [[YATE]]
 +
* [[YATE Softswitch]]
 +
* [[Instal YATE]]
 +
* [[YATE: Compile]]
 +
* [[YATE: Menjalankan]]
 +
* [[YATE: Konfigurasi Dial Plan]]
 +
* [[YATE: Konfigurasi User]]

Revision as of 13:33, 19 July 2012

Regfile is a registration module. It can be used for autentication, registration, and routing of users from a file. Is provided as a demo module for people who want to develop their own autentication, registration, or routing module. The config file is regfile.conf


; you have to put username as a category and password into key password
[username]
;password=something


i.e. to register my Grandstream Budgetone SIP phone, with username bt101, I have:

[bt101]
password=mysecretpass

There is however the special [general] section

[general]
; auth setups the user.auth handler priority
auth=100
; register setups the user.register and user.unregister 
; handlers priority
register=100
; route setups the call.route handler priority
route=100


NOTE!!! If you want to limit the access to make calls only to autenticated users you have to setup in regexroute.conf in section [default] this line.


${username}^$=-;error=noauth



Referensi

Pranala Menarik