Project

General

Profile

Sip register » History » Version 5

Adrian Georgescu, 10/26/2008 11:13 AM

1 1 Adrian Georgescu
== sip_register ==
2
3 4 Adrian Georgescu
To use this script you must to have a valid [wiki:configuration_file configuration file].
4 2 Adrian Georgescu
5 5 Adrian Georgescu
Source code: [source:scripts/sip_register.py scripts/sip_register.py]
6
7 3 Adrian Georgescu
=== Description ===
8
9 1 Adrian Georgescu
{{{
10
adigeo@ag-imac3:~$sip_register.py -h
11
Usage: sip_register.py [options]
12
13
This script will register a SIP account to a SIP registrar and refresh it
14
while the program is running. When Ctrl+D is pressed it will unregister.
15
16
Options:
17
  -h, --help            show this help message and exit
18
  -a ACCOUNT_NAME, --account-name=ACCOUNT_NAME
19
                        The account name from which to read account settings.
20
                        Corresponds to section Account_NAME in the
21
                        configuration file.
22
  --sip-address=SIP_ADDRESS
23
                        SIP login account
24
  -p PASSWORD, --password=PASSWORD
25
                        Password to use to authenticate the local account.
26
                        This overrides the setting from the config file.
27
  -n DISPLAY_NAME, --display-name=DISPLAY_NAME
28
                        Display name to use for the local account. This
29
                        overrides the setting from the config file.
30
  -e EXPIRES, --expires=EXPIRES
31
                        "Expires" value to set in REGISTER. Default is 300
32
                        seconds.
33
  -o IP[:PORT], --outbound-proxy=IP[:PORT]
34
                        Outbound SIP proxy to use. By default a lookup of the
35
                        domain is performed based on SRV and A records. This
36
                        overrides the setting from the config file.
37
  -s, --trace-sip       Dump the raw contents of incoming and outgoing SIP
38
                        messages (disabled by default).
39
  -l, --log-pjsip       Print PJSIP logging output (disabled by default).
40
}}}
41
42 3 Adrian Georgescu
=== Example ===
43 1 Adrian Georgescu
44
{{{
45
adigeo@ag-imac3:~$sip_register 
46
Using default account: 31208005169@ag-projects.com
47
Resolved DNS SRV record "_sip._udp.ag-projects.com" --> proxy.sipthor.net:5060
48
Resolved DNS A record "proxy.sipthor.net" --> 85.17.186.7, 81.23.228.150, 81.23.228.129
49
Registering ""Adrian G." <sip:31208005169@ag-projects.com>" at 81.23.228.150:5060
50
REGISTER was successful
51
Contact: <sip:163d949d32@192.168.1.6:49521> (expires in 300 seconds)
52
Other registered contacts:
53
<sip:31208005169@192.168.1.122:5062;line=634g6j67> (expires in 559 seconds)
54
<sip:31208005169@192.168.1.123:5060> (expires in 205 seconds)
55
<sip:4429c5c061@192.168.1.6:49515> (expires in 152 seconds)
56
<sip:5a9c042eb4@192.168.1.6:49511> (expires in 135 seconds)
57
<sip:31208005169@192.168.1.1;uniq=5B2860C44383A3D6705629A7E1FB8> (expires in 1014 seconds)
58
<sip:31208005169@80.101.96.20:61359> (expires in 981 seconds)
59
Press Ctrl+D to stop the program
60
}}}