diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-06-03 12:07:56 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-06-03 12:07:56 +0200 |
commit | 2f1d13d56aecc622366f717932929db5f0b8b35b (patch) | |
tree | 04b8ee32bba5096f238513df17849206161406e9 | |
parent | 0d15d5bccabff2a46b5da360b07c1ae1909b37b8 (diff) | |
download | busybox-w32-2f1d13d56aecc622366f717932929db5f0b8b35b.tar.gz busybox-w32-2f1d13d56aecc622366f717932929db5f0b8b35b.tar.bz2 busybox-w32-2f1d13d56aecc622366f717932929db5f0b8b35b.zip |
examples/udhcp/udhcpd.conf: update
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | examples/udhcp/udhcpd.conf | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/examples/udhcp/udhcpd.conf b/examples/udhcp/udhcpd.conf index df1258aaf..6eb10852e 100644 --- a/examples/udhcp/udhcpd.conf +++ b/examples/udhcp/udhcpd.conf | |||
@@ -79,7 +79,7 @@ option staticroutes 10.0.0.0/8 10.127.0.1, 10.11.12.0/24 10.11.12.1 | |||
79 | option 0x08 01020304 # option 8: "cookie server IP addr: 1.2.3.4" | 79 | option 0x08 01020304 # option 8: "cookie server IP addr: 1.2.3.4" |
80 | option 14 "dumpfile" | 80 | option 14 "dumpfile" |
81 | 81 | ||
82 | # Currently supported options [hex option value] (for more info, see options.c): | 82 | # Currently supported options [hex option value] (for more info, see common.c): |
83 | #opt lease NUM # [0x33] | 83 | #opt lease NUM # [0x33] |
84 | #opt subnet IP # [0x01] | 84 | #opt subnet IP # [0x01] |
85 | #opt broadcast IP # [0x1c] | 85 | #opt broadcast IP # [0x1c] |
@@ -91,17 +91,20 @@ option 14 "dumpfile" | |||
91 | #opt search STRING_LIST # [0x77] search domains | 91 | #opt search STRING_LIST # [0x77] search domains |
92 | #opt nisdomain STRING # [0x28] | 92 | #opt nisdomain STRING # [0x28] |
93 | #opt timezone NUM # [0x02] (localtime - UTC_time) in seconds. signed | 93 | #opt timezone NUM # [0x02] (localtime - UTC_time) in seconds. signed |
94 | #opt tzstr STRING # [0x64] RFC 4833. IEEE 1003.1 TZ string | ||
95 | #opt tzdbstr STRING # [0x65] RFC 4833. Reference to the TZ database string | ||
94 | #opt tftp STRING # [0x42] tftp server name | 96 | #opt tftp STRING # [0x42] tftp server name |
95 | #opt bootfile STRING # [0x43] tftp file to download (e.g. kernel image) | 97 | #opt bootfile STRING # [0x43] tftp file to download (e.g. kernel image) |
96 | #opt bootsize NUM # [0x0d] size of that file | 98 | #opt bootsize NUM # [0x0d] size of that file |
97 | #opt rootpath STRING # [0x11] (NFS) path to mount as root fs | 99 | #opt rootpath STRING # [0x11] (NFS) path to mount as root fs |
98 | #opt wpad STRING # [0xfc] Web Proxy Auto Discovery Protocol | 100 | #opt wpad STRING # [0xfc] Web Proxy Auto Discovery Protocol |
99 | #opt serverid IP # [0x36] default: server's IP | 101 | #opt serverid IP # [0x36] default: server's IP |
100 | #opt message STRING # [0x38] error message (udhcpd sends it on success too) | 102 | #opt message STRING # [0x38] error message (if set, udhcpd would send it on success too) |
101 | #opt vlanid NUM # [0x84] 802.1P VLAN ID | 103 | #opt vlanid NUM # [0x84] 802.1P VLAN ID |
102 | #opt vlanpriority NUM # [0x85] 802.1Q VLAN priority | 104 | #opt vlanpriority NUM # [0x85] 802.1Q VLAN priority |
105 | #opt vendor STRING # [0x3c] client's vendor string, not intended to be sent by DHCP servers | ||
103 | # RFC 5071: PXELINUX Options | 106 | # RFC 5071: PXELINUX Options |
104 | #opt 0xd0 F100747E # [0xd0] magic | 107 | #opt 0xd0 F100747E # [0xd0] magic needed for other options to be recognized by clients |
105 | #opt pxeconffile STRING # [0xd1] | 108 | #opt pxeconffile STRING # [0xd1] |
106 | #opt pxepathprefix STRING # [0xd2] | 109 | #opt pxepathprefix STRING # [0xd2] |
107 | #opt reboottime NUM # [0xd3] bootstrap timeout | 110 | #opt reboottime NUM # [0xd3] bootstrap timeout |