Sip message » History » Version 15
Adrian Georgescu, 01/24/2010 03:43 PM
1 | 1 | Adrian Georgescu | |
---|---|---|---|
2 | 15 | Adrian Georgescu | h2. sip-message |
3 | 1 | Adrian Georgescu | |
4 | |||
5 | |||
6 | 15 | Adrian Georgescu | |
7 | |||
8 | h3. Description |
||
9 | |||
10 | |||
11 | > This script is available in _sipclients_ package that must be installed separately from SIP SIMPLe client SDK package. |
||
12 | |||
13 | <pre> |
||
14 | 12 | Adrian Georgescu | Usage: sip-message [options] [user@domain] |
15 | 1 | Adrian Georgescu | |
16 | This will either sit idle waiting for an incoming MESSAGE request, or send a |
||
17 | MESSAGE request to the specified SIP target. In outgoing mode the program will |
||
18 | read the contents of the messages to be sent from standard input, Ctrl+D |
||
19 | signalling EOF as usual. In listen mode the program will quit when Ctrl+D is |
||
20 | pressed. |
||
21 | |||
22 | Options: |
||
23 | -h, --help show this help message and exit |
||
24 | 9 | Adrian Georgescu | -a NAME, --account=NAME |
25 | The account name to use for any outgoing traffic. If |
||
26 | not supplied, the default account will be used. |
||
27 | 11 | Adrian Georgescu | -c FILE, --config-file=FILE |
28 | 9 | Adrian Georgescu | The path to a configuration file to use. This |
29 | 1 | Adrian Georgescu | overrides the default location of the configuration |
30 | file. |
||
31 | 11 | Adrian Georgescu | -s, --trace-sip Dump the raw contents of incoming and outgoing SIP |
32 | messages. |
||
33 | -j, --trace-pjsip Print PJSIP logging output. |
||
34 | -n, --trace-notifications |
||
35 | Print all notifications (disabled by default). |
||
36 | -b, --batch Run the program in batch mode: reading control input |
||
37 | from the console is disabled. This is particularly |
||
38 | 9 | Adrian Georgescu | useful when running this script in a non-interactive |
39 | 1 | Adrian Georgescu | environment. |
40 | -m MESSAGE, --message=MESSAGE |
||
41 | 11 | Adrian Georgescu | Contents of the message to send. This disables reading |
42 | 1 | Adrian Georgescu | the message from standard input. |
43 | |||
44 | |||
45 | 15 | Adrian Georgescu | </pre> |
46 | 9 | Adrian Georgescu | |
47 | 1 | Adrian Georgescu | |
48 | |||
49 | 15 | Adrian Georgescu | h3. Example for receiving a message |
50 | 5 | Adrian Georgescu | |
51 | 15 | Adrian Georgescu | |
52 | |||
53 | <pre> |
||
54 | 12 | Adrian Georgescu | adigeo@ag-imac3:~$sip-message |
55 | 1 | Adrian Georgescu | Accounts available: 'alice', 'ew', 'mrg', 'pbx', 'tf', 'umts', 'unet', default |
56 | Using default account: 31208005169@ag-projects.com |
||
57 | Registering ""Adrian G." <sip:31208005169@ag-projects.com>" at 81.23.228.150:5060 |
||
58 | REGISTER was successful |
||
59 | Contact: <sip:4f855cb09b@192.168.1.6:51408> (expires in 300 seconds) |
||
60 | Other registered contacts: |
||
61 | <sip:31208005169@192.168.1.122:5062;line=634g6j67> (expires in 480 seconds) |
||
62 | <sip:5dac4295e9@192.168.1.6:51375> (expires in 95 seconds) |
||
63 | <sip:31208005169@192.168.1.123:5060> (expires in 77 seconds) |
||
64 | <sip:31208005169@192.168.1.1;uniq=5B2860C44383A3D6705629A7E1FB8> (expires in 1563 seconds) |
||
65 | <sip:31208005169@80.101.96.20:61578> (expires in 3069 seconds) |
||
66 | Press Ctrl+D to stop the program. |
||
67 | Received MESSAGE from ""Adi UMTS" <sip:adi@umts.ro>", Content-Type: text/plain |
||
68 | dsgsgddsgs |
||
69 | Received MESSAGE from ""Adi UMTS" <sip:adi@umts.ro>", Content-Type: text/plain |
||
70 | Testing short text messages in page mode! |
||
71 | 15 | Adrian Georgescu | </pre> |
72 | 1 | Adrian Georgescu | |
73 | |||
74 | 15 | Adrian Georgescu | h3. Example for sending a message |
75 | |||
76 | |||
77 | <pre> |
||
78 | 1 | Adrian Georgescu | adigeo@ag-imac3:~$sip-message -a umts ag@ag-projects.com |
79 | Accounts available: 'alice', 'ew', 'mrg', 'pbx', 'tf', 'umts', 'unet', default |
||
80 | Using account 'umts': adi@umts.ro |
||
81 | Press Ctrl+D on an empty line to end input and send the MESSAGE request. |
||
82 | dsgsgddsgs |
||
83 | Sending MESSAGE from ""Adi UMTS" <sip:adi@umts.ro>" to "<sip:ag@ag-projects.com>" using proxy 81.23.228.150:5060 |
||
84 | MESSAGE was accepted by remote party. |
||
85 | adigeo@ag-imac3:~$sip_message -a umts ag@ag-projects.com |
||
86 | Accounts available: 'alice', 'ew', 'mrg', 'pbx', 'tf', 'umts', 'unet', default |
||
87 | Using account 'umts': adi@umts.ro |
||
88 | Press Ctrl+D on an empty line to end input and send the MESSAGE request. |
||
89 | Testing short text messages in page mode! |
||
90 | Sending MESSAGE from ""Adi UMTS" <sip:adi@umts.ro>" to "<sip:ag@ag-projects.com>" using proxy 81.23.228.150:5060 |
||
91 | MESSAGE was accepted by remote party. |
||
92 | 15 | Adrian Georgescu | </pre> |