Sip register » History » Version 33
Adrian Georgescu, 01/24/2010 03:43 PM
1 | 1 | Adrian Georgescu | |
---|---|---|---|
2 | 33 | Adrian Georgescu | h2. sip-register |
3 | 1 | Adrian Georgescu | |
4 | |||
5 | |||
6 | 33 | Adrian Georgescu | |
7 | > This script is available in _sipclients_ package that must be installed separately from SIP SIMPLe client SDK package. |
||
8 | |||
9 | |||
10 | h3. Description |
||
11 | |||
12 | |||
13 | 12 | Adrian Georgescu | SIP protocol offers a discovery capability. If a user wants to initiate a session |
14 | with another user, he must discover the current host(s) at which the |
||
15 | 8 | Adrian Georgescu | destination user is reachable. To do this, SIP network elements consult an |
16 | abstract service known as a location service, which provides address |
||
17 | bindings for a particular domain. Registration entails sending a REGISTER |
||
18 | request to a special type of UAS known as a registrar. A registrar acts as |
||
19 | the front end to the location service for a domain, reading and writing |
||
20 | mappings based on the contents of REGISTER requests. This location service |
||
21 | 1 | Adrian Georgescu | is then typically consulted by a proxy server that is responsible for |
22 | 8 | Adrian Georgescu | routing requests for that domain. |
23 | 25 | Adrian Georgescu | |
24 | 30 | Adrian Georgescu | This script implements REGISTER method, which registers the contact (ip, port and transport) for a given address of record (SIP address). |
25 | 3 | Adrian Georgescu | |
26 | 33 | Adrian Georgescu | <pre> |
27 | 30 | Adrian Georgescu | adigeo@ag-imac3:~$sip-register -h |
28 | Usage: sip-register [options] |
||
29 | 1 | Adrian Georgescu | |
30 | This script will register a SIP account to a SIP registrar and refresh it |
||
31 | while the program is running. When Ctrl+D is pressed it will unregister. |
||
32 | |||
33 | Options: |
||
34 | -h, --help show this help message and exit |
||
35 | 29 | Adrian Georgescu | -a ACCOUNT_NAME, --account-name=ACCOUNT_NAME |
36 | The account name from which to read account settings. |
||
37 | 1 | Adrian Georgescu | Corresponds to section Account_NAME in the |
38 | 28 | Adrian Georgescu | configuration file. |
39 | 1 | Adrian Georgescu | -s, --trace-sip Dump the raw contents of incoming and outgoing SIP |
40 | messages (disabled by default). |
||
41 | -j, --trace-pjsip Print PJSIP logging output (disabled by default). |
||
42 | -r MAX_REGISTERS, --max-registers=MAX_REGISTERS |
||
43 | Max number of REGISTERs sent (default 1, set to 0 for |
||
44 | 28 | Adrian Georgescu | infinite). |
45 | 33 | Adrian Georgescu | </pre> |
46 | 1 | Adrian Georgescu | |
47 | |||
48 | 33 | Adrian Georgescu | h3. Example |
49 | |||
50 | |||
51 | <pre> |
||
52 | 1 | Adrian Georgescu | adigeo@ag-imac3:~$sip-register |
53 | 22 | Adrian Georgescu | Using account 31208005169@ag-projects.com |
54 | Registration succeeded at 85.17.186.7:5060;transport=udp. |
||
55 | Contact: sip:xqdwrctb@192.168.1.6:58481 (expires in 600 seconds). |
||
56 | 1 | Adrian Georgescu | Other registered contacts: |
57 | 22 | Adrian Georgescu | sip:31208005169@192.168.1.123:5060 (expires in 262 seconds) |
58 | sip:31208005169@192.168.1.122:5062;line=634g6j67 (expires in 360 seconds) |
||
59 | sip:31208005169@192.168.1.1;uniq=5B2860C44383A3D6705629A7E1FB8 (expires in 734 seconds) |
||
60 | Registration ended: 200 OK. |
||
61 | 33 | Adrian Georgescu | </pre> |