-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json.example
52 lines (52 loc) · 1.29 KB
/
config.json.example
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
45
46
47
48
49
50
51
52
{
"scenarios": [
{
"name": "normal",
"callflow": "default",
"call": {
"from": "phoneEndpoint1",
"via": "sbc1",
"to": "phoneEndpoint2",
"duration": [65, 123],
"amount": 10,
"mos": [4.0, 4.5],
"jitter": [0, 250],
"packetloss": [0, 1]
}
},
{
"name": "bad",
"callflow": "default",
"call": {
"from": "phoneEndpoint1",
"via": "sbc2",
"to": "phoneEndpoint2",
"duration": [35, 123],
"amount": 5,
"mos": [2.8, 3.2],
"jitter": [250, 400],
"packetloss": [150, 250]
}
}
],
"virtualInfrastructure": {
"phoneEndpoint1": {
"type": "phone",
"ip": "127.0.0.25"
},
"sbc1": {
"type": "sbc",
"ip": "127.0.0.33",
"captureId": 1111
},
"sbc2": {
"type": "sbc",
"ip": "127.0.0.65",
"captureId": 2222
},
"phoneEndpoint2": {
"type": "phone",
"ip": "127.0.0.23"
}
}
}