From 4ca1017979fe9cf60d7cfe2ef9dbe7e9469db2c1 Mon Sep 17 00:00:00 2001 From: "anas.bouzbakh" Date: Thu, 3 Mar 2022 10:21:42 +0100 Subject: [PATCH] Ajouter 'dhcpd.conf' --- dhcpd.conf | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 dhcpd.conf diff --git a/dhcpd.conf b/dhcpd.conf new file mode 100644 index 0000000..5444af4 --- /dev/null +++ b/dhcpd.conf @@ -0,0 +1,23 @@ +# dhcpd.conf +# +# Sample configuration file for ISC dhcpd +# + +# option definitions common to all supported networks... +# option domain-name "example.org"; +option domain-name-servers 192.168.0.1; + +default-lease-time 604800; +max-lease-time 604800; + +subnet 192.168.2.0 netmask 255.255.255.0 { + option subnet-mask 255.255.255.0; + option broadcast-address 192.168.2.255; + option routers 192.168.2.1; + range 192.168.2.10 192.168.2.20; +} + +host xp-master { + hardware ethernet 08:00:27:7f:46:fc; + fixed-address 192.168.2.100; +} \ No newline at end of file