Skip to content

Commit

Permalink
Fix wrong netmask format in dhcp_config.
Browse files Browse the repository at this point in the history
  • Loading branch information
haesbaert committed Mar 13, 2016
1 parent 584c996 commit c32c3f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dhcp/dhcp_config.ml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let hostname = "Charrua DHCP Server"
let default_lease_time = 60 * 60 * 1 (* 1 hour *)
let max_lease_time = 60 * 60 * 24 (* A day *)
let ip_address = ip "192.168.1.5"
let network = net "192.168.1.5/255.255.255.0"
let network = net "192.168.1.5/24"
let range = (ip "192.168.1.70", ip "192.168.1.100")
(* List of dhcp options to be *)
let options = [
Expand Down

0 comments on commit c32c3f6

Please sign in to comment.