-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwolsocketproxy.conf.example
More file actions
41 lines (41 loc) · 1.24 KB
/
wolsocketproxy.conf.example
File metadata and controls
41 lines (41 loc) · 1.24 KB
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
{
"machines": {
"some-server": {
"mac_address": "11:22:33:44:55:66",
"wake_up_method": "ipmi",
"ipmi_config_name": "some-server-ipmi",
"online_check_method": "http",
"online_check_http_url": "http://192.168.1.124/health",
"online_check_timeout": 300,
"online_check_http_expected_code": 200,
"ipmi_force_reset_if_power_up_failed": true,
"ipmi_max_reset_try_count": 3,
"keep_alive_mode": true,
"keep_alive_mode_base_url": "http://192.168.1.124:8080",
"scheduled_power_up_times": [
{
"cron": "0 7 * * 1-5",
"keep_alive_time": 7200
}
]
}
},
"routes": [
{
"local_address": "0.0.0.0",
"local_port": 12345,
"target_machine_name": "some-server",
"target_address": "192.168.1.124",
"target_port": 12345,
"protocol": "tcp"
}
],
"ipmi_configs": [
{
"name": "some-server-ipmi",
"redfish_url": "https://192.168.1.123/",
"username": "admin",
"password": "123456"
}
]
}