]> git.datanom.net - pve-dhcp-server.git/blame - dhcpd.leases
Added lease maintainance monitor
[pve-dhcp-server.git] / dhcpd.leases
CommitLineData
2fadf44a
MR
1# lease ::= "lease" IP "{" options "}" NEWLINE
2# IP ::= ipv4_addr | ipv6_addr
3# options ::= option ";" | options
4# option ::= token " " value
5# token ::= "binding state" | "starts" | "ends" | "hardware ethernet" | "client-hostname"
6# value ::= us-ascii
7
8lease 172.16.0.28 {
9 binding state active;
10 starts 2014/07/21 09:15:34;
11 hardware ethernet 8cfabab21168;
12 ends 2014/07/21 11:15:34;
13 client-hostname "iPad";
14}
15lease 192.168.2.84 {
16 client-hostname "router";
17 ends 2014/07/21 11:12:48;
18 starts 2014/07/21 09:12:48;
19 hardware ethernet 06d364fca6a5;
20 binding state active;
21}
22lease 172.16.0.20 {
23 client-hostname "Wii";
24 ends 2014/07/21 10:11:32;
25 starts 2014/07/21 09:11:32;
26 hardware ethernet d86bf789796b;
27 binding state active;
28}
29
This page took 0.029557 seconds and 5 git commands to generate.