-
Notifications
You must be signed in to change notification settings - Fork 2
/
options.json
62 lines (62 loc) · 1.7 KB
/
options.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
{
"apiEnabled": true,
"configurePxeLinux": true,
"tftpOptions": {
"host": "192.168.5.1",
"port": 69,
"root": "G:\\tftpRoot",
"denyPUT": true
},
"dhcpOptions": {
"range": [
"192.168.5.2",
"192.168.5.254"
],
"randomIP": true,
"netmask": "255.255.255.0",
"router": [
"192.168.5.1"
],
"dns": [
"8.8.8.8",
"8.8.4.4"
],
"broadcast": "192.168.5.255",
"server": "192.168.5.1",
"bootFile": "tftpboot/pxelinux.0",
"tftpServer": "192.168.5.1"
},
"apiOptions": {
"host": "0.0.0.0",
"port": 3030
},
"pxeLinuxOptions": {
"location": "G:\\tftpRoot\\tftpboot\\pxelinux.cfg",
"configs": {
"default": {
"header": {
"DEFAULT": "menu.c32",
"PROMPT": 0,
"MENU TITLE": "PXE Boot Menu",
"TIMEOUT": 150,
"TOTALTIMEOUT": 900
},
"bootOptions": [
{
"label": "Localboot",
"menu label": "",
"action": "localboot -1",
"file": ""
},
{
"label": "WindowsPE",
"menu label": "Windows PE",
"action": "kernel pxeboot.0 keeppxe",
"file": "pxeboot.0"
}
]
}
}
},
"bindHost": "192.168.5.1"
}