-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseet_example.json
44 lines (44 loc) · 990 Bytes
/
seet_example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[
{
"name": "Simple SIP Message",
"description": "UAC sends a simple MESSAGE to UAS and waits for an OK response",
"target": "192.168.1.3",
"transportMode": "u1",
"domain": "sip.local",
"userAgents": [
{
"mode": "uas",
"scenarioFile": "scenarios/ims_uas.xml",
"authentication": {
"username": "1001",
"secret": "1234"
},
"sendRegister": true,
"expires": 30
},
{
"mode": "uac",
"scenarioFile": "scenarios/ims_uac.xml",
"authentication": {
"username": "1002",
"secret": "1234"
},
"variables": [
{
"name": "requestURI",
"value": "[email protected]"
},
{
"name": "from",
"value": "[email protected]"
},
{
"name": "to",
"value": "[email protected]"
}
]
}
],
"enabled": true
}
]