Project

General

Profile

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