Sip register » History » Version 13
Adrian Georgescu, 01/10/2009 11:24 AM
1 | 11 | Adrian Georgescu | == sip_register == |
---|---|---|---|
2 | 1 | Adrian Georgescu | |
3 | 4 | Adrian Georgescu | To use this script you must to have a valid [wiki:configuration_file configuration file]. |
4 | 2 | Adrian Georgescu | |
5 | 11 | Adrian Georgescu | === Description === |
6 | 6 | Adrian Georgescu | |
7 | 12 | Adrian Georgescu | SIP protocol offers a discovery capability. If a user wants to initiate a session |
8 | with another user, he must discover the current host(s) at which the |
||
9 | 8 | Adrian Georgescu | destination user is reachable. To do this, SIP network elements consult an |
10 | abstract service known as a location service, which provides address |
||
11 | bindings for a particular domain. Registration entails sending a REGISTER |
||
12 | request to a special type of UAS known as a registrar. A registrar acts as |
||
13 | the front end to the location service for a domain, reading and writing |
||
14 | mappings based on the contents of REGISTER requests. This location service |
||
15 | is then typically consulted by a proxy server that is responsible for |
||
16 | routing requests for that domain. |
||
17 | |||
18 | This script implements REGISTER method, which registers the contact (ip:port |
||
19 | address) for a given address of record (SIP address). |
||
20 | |||
21 | 6 | Adrian Georgescu | Source code: [source:scripts/sip_register.py scripts/sip_register.py] |
22 | 3 | Adrian Georgescu | |
23 | 1 | Adrian Georgescu | {{{ |
24 | adigeo@ag-imac3:~$sip_register.py -h |
||
25 | Usage: sip_register.py [options] |
||
26 | |||
27 | This script will register a SIP account to a SIP registrar and refresh it |
||
28 | while the program is running. When Ctrl+D is pressed it will unregister. |
||
29 | |||
30 | Options: |
||
31 | -h, --help show this help message and exit |
||
32 | -a ACCOUNT_NAME, --account-name=ACCOUNT_NAME |
||
33 | The account name from which to read account settings. |
||
34 | Corresponds to section Account_NAME in the |
||
35 | configuration file. |
||
36 | --sip-address=SIP_ADDRESS |
||
37 | SIP login account |
||
38 | -p PASSWORD, --password=PASSWORD |
||
39 | Password to use to authenticate the local account. |
||
40 | This overrides the setting from the config file. |
||
41 | -n DISPLAY_NAME, --display-name=DISPLAY_NAME |
||
42 | Display name to use for the local account. This |
||
43 | overrides the setting from the config file. |
||
44 | -e EXPIRES, --expires=EXPIRES |
||
45 | "Expires" value to set in REGISTER. Default is 300 |
||
46 | seconds. |
||
47 | -o IP[:PORT], --outbound-proxy=IP[:PORT] |
||
48 | Outbound SIP proxy to use. By default a lookup of the |
||
49 | domain is performed based on SRV and A records. This |
||
50 | overrides the setting from the config file. |
||
51 | -s, --trace-sip Dump the raw contents of incoming and outgoing SIP |
||
52 | messages (disabled by default). |
||
53 | -l, --log-pjsip Print PJSIP logging output (disabled by default). |
||
54 | 7 | Adrian Georgescu | -r MAX_REGISTERS, --max-registers=MAX_REGISTERS |
55 | Max number of REGISTERs sent (default 1). |
||
56 | 1 | Adrian Georgescu | }}} |
57 | |||
58 | 11 | Adrian Georgescu | === Example === |
59 | 1 | Adrian Georgescu | |
60 | {{{ |
||
61 | adigeo@ag-imac3:~$sip_register |
||
62 | Using default account: 31208005169@ag-projects.com |
||
63 | Resolved DNS SRV record "_sip._udp.ag-projects.com" --> proxy.sipthor.net:5060 |
||
64 | Resolved DNS A record "proxy.sipthor.net" --> 85.17.186.7, 81.23.228.150, 81.23.228.129 |
||
65 | Registering ""Adrian G." <sip:31208005169@ag-projects.com>" at 81.23.228.150:5060 |
||
66 | REGISTER was successful |
||
67 | Contact: <sip:163d949d32@192.168.1.6:49521> (expires in 300 seconds) |
||
68 | Other registered contacts: |
||
69 | <sip:31208005169@192.168.1.122:5062;line=634g6j67> (expires in 559 seconds) |
||
70 | <sip:31208005169@192.168.1.123:5060> (expires in 205 seconds) |
||
71 | <sip:4429c5c061@192.168.1.6:49515> (expires in 152 seconds) |
||
72 | <sip:5a9c042eb4@192.168.1.6:49511> (expires in 135 seconds) |
||
73 | <sip:31208005169@192.168.1.1;uniq=5B2860C44383A3D6705629A7E1FB8> (expires in 1014 seconds) |
||
74 | <sip:31208005169@80.101.96.20:61359> (expires in 981 seconds) |
||
75 | Press Ctrl+D to stop the program |
||
76 | }}} |