From db656cff82a23f7be319e484523924cf4eb9f369 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Wed, 24 May 2017 00:48:41 +0200 Subject: [PATCH] Update dhcp_server.markdown --- source/_addons/dhcp_server.markdown | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/_addons/dhcp_server.markdown b/source/_addons/dhcp_server.markdown index 2dbc8b4215f..7ce04f553ce 100644 --- a/source/_addons/dhcp_server.markdown +++ b/source/_addons/dhcp_server.markdown @@ -22,7 +22,8 @@ Create a simple DHCP server for your network and allow set fix ip for some devic "range_start": "192.168.1.100", "range_end": "192.168.1.200", "broadcast": "192.168.1.255", - "gateway": "192.168.1.1" + "gateway": "192.168.1.1", + "interface": "eth0" } ], "hosts": [ @@ -45,7 +46,8 @@ Configuration variables:  - **range_start** (*Required*): Start address for dhcp leases.  - **range_end** (*Required*): End address for dhcp leases.  - **broadcast** (*Required*): Network broadcast address. -  - **routers** (*Required*): A List of gateways. +  - **gateway** (*Required*): A List of gateways. + - **interface** (*Required*): Inteface on that will be listen. - **hosts** (*Optional*): A list of fixed IPs for devices. - **name** (*Required*): Name/hostname of your device.  - **mac** (*Required*): Mac address of your device.