-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathdefault-settings.json
86 lines (77 loc) · 1.93 KB
/
default-settings.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"services": [
"of-server",
"of-server-cli",
"of-server-rest",
"controller",
"switch-manager",
"switch-manager-cli",
"switch-manager-rest",
"switch-ordering",
"link-discovery",
"link-discovery-cli",
"link-discovery-rest",
"recovery-manager",
"recovery-manager-rest",
"flow-entries-verifier",
"ofmsg-sender",
"stats-rules-manager",
"stats-rules-manager-rest",
"topology",
"topology-rest",
"stats-bucket-rest",
"dpid-checker",
"database-connector",
"flow-table-rest",
"group-table-rest",
"meter-table-rest",
"aux-devices-rest"
],
"flow-entries-verifier": {
"active": false,
"poll-interval": 30000
},
"dpid-checker": {
"dpid-format": "dec",
"AR": ["1", "2", "3"],
"DR": ["4", "5", "6"]
},
"recovery-manager": {
"id": 1,
"status": "backup",
"hb-mode": "unicast",
"hb-address-primary": "127.0.0.1",
"hb-port-primary": 1234,
"hb-address-backup": "127.0.0.1",
"hb-port-backup": 1237,
"hb-port-broadcast": 50000,
"hb-address-multicast": "239.255.43.21",
"hb-port-multicast": 50000,
"hb-interval": 200,
"hb-primaryDeadInterval": 800,
"hb-backupDeadInterval": 1000,
"hb-primaryWaitingInterval": 600
},
"database-connector": {
"db-type": "redis",
"db-address": "127.0.0.1",
"db-port": 6379,
"db-pswd": ""
},
"link-discovery": {
"queue": 1,
"poll-interval": 5
},
"of-server": {
"address": "0.0.0.0",
"port" : 6653,
"nthreads": 4,
"echo-interval": 5,
"echo-attempts": 3,
"secure": false
},
"rest-listener": {
"address": "0.0.0.0",
"port": "8000"
}
}