Project

General

Profile

Sip message » History » Version 2

Adrian Georgescu, 10/26/2008 10:35 AM

1 1 Adrian Georgescu
== sip_message ==
2
3 2 Adrian Georgescu
To use this script you must to have a valid [wiki:configuration_file configuration file].
4
5 1 Adrian Georgescu
=== Description ===
6
{{{
7
Usage: sip_message [options] [target-user@target-domain.com]
8
9
This will either sit idle waiting for an incoming MESSAGE request, or send a
10
MESSAGE request to the specified SIP target. In outgoing mode the program will
11
read the contents of the messages to be sent from standard input, Ctrl+D
12
signalling EOF as usual. In listen mode the program will quit when Ctrl+D is
13
pressed.
14
15
Options:
16
  -h, --help            show this help message and exit
17
  -a ACCOUNT_NAME, --account-name=ACCOUNT_NAME
18
                        The account name from which to read account settings.
19
                        Corresponds to section Account_NAME in the
20
                        configuration file.
21
  --sip-address=SIP_ADDRESS
22
                        SIP login account
23
  -p PASSWORD, --password=PASSWORD
24
                        Password to use to authenticate the local account.
25
                        This overrides the setting from the config file.
26
  -n DISPLAY_NAME, --display-name=DISPLAY_NAME
27
                        Display name to use for the local account. This
28
                        overrides the setting from the config file.
29
  -o IP[:PORT], --outbound-proxy=IP[:PORT]
30
                        Outbound SIP proxy to use. By default a lookup is
31
                        performed based on SRV and A records. This overrides
32
                        the setting from the config file.
33
  -s, --trace-sip       Dump the raw contents of incoming and outgoing SIP
34
                        messages (disabled by default).
35
  -m MESSAGE, --message=MESSAGE
36
                        Contents of the message to send. This disables reading
37
                        the message from standard input.
38
  -l, --log-pjsip       Print PJSIP logging output (disabled by default).
39
}}}
40
41
42
=== Example for receiving a message ===
43
44
45
{{{
46
adigeo@ag-imac3:~$sip_message 
47
Accounts available: 'alice', 'ew', 'mrg', 'pbx', 'tf', 'umts', 'unet', default
48
Using default account: 31208005169@ag-projects.com
49
Registering ""Adrian G." <sip:31208005169@ag-projects.com>" at 81.23.228.150:5060
50
REGISTER was successful
51
Contact: <sip:4f855cb09b@192.168.1.6:51408> (expires in 300 seconds)
52
Other registered contacts:
53
<sip:31208005169@192.168.1.122:5062;line=634g6j67> (expires in 480 seconds)
54
<sip:5dac4295e9@192.168.1.6:51375> (expires in 95 seconds)
55
<sip:31208005169@192.168.1.123:5060> (expires in 77 seconds)
56
<sip:31208005169@192.168.1.1;uniq=5B2860C44383A3D6705629A7E1FB8> (expires in 1563 seconds)
57
<sip:31208005169@80.101.96.20:61578> (expires in 3069 seconds)
58
Press Ctrl+D to stop the program.
59
Received MESSAGE from ""Adi UMTS" <sip:adi@umts.ro>", Content-Type: text/plain
60
dsgsgddsgs
61
Received MESSAGE from ""Adi UMTS" <sip:adi@umts.ro>", Content-Type: text/plain
62
Testing short text messages in page mode!
63
}}}
64
65
=== Example for sending a message ===
66
67
{{{
68
adigeo@ag-imac3:~$sip_message  -a umts ag@ag-projects.com
69
Accounts available: 'alice', 'ew', 'mrg', 'pbx', 'tf', 'umts', 'unet', default
70
Using account 'umts': adi@umts.ro
71
Press Ctrl+D on an empty line to end input and send the MESSAGE request.
72
dsgsgddsgs
73
Sending MESSAGE from ""Adi UMTS" <sip:adi@umts.ro>" to "<sip:ag@ag-projects.com>" using proxy 81.23.228.150:5060
74
MESSAGE was accepted by remote party.
75
adigeo@ag-imac3:~$sip_message  -a umts ag@ag-projects.com
76
Accounts available: 'alice', 'ew', 'mrg', 'pbx', 'tf', 'umts', 'unet', default
77
Using account 'umts': adi@umts.ro
78
Press Ctrl+D on an empty line to end input and send the MESSAGE request.
79
Testing short text messages in page mode!
80
Sending MESSAGE from ""Adi UMTS" <sip:adi@umts.ro>" to "<sip:ag@ag-projects.com>" using proxy 81.23.228.150:5060
81
MESSAGE was accepted by remote party.
82
}}}