Sip message

Version 12 (Adrian Georgescu, 01/24/2010 03:34 pm)

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