Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
16 views1 page

DHCP Script

The document outlines a DHCP configuration for the subnet 192.168.1.0 with a netmask of 255.255.255.0. It specifies an assignable range of IP addresses from 192.168.1.10 to 192.168.1.200, denies unknown clients, and includes a static client definition for a device with a specific MAC address. Additionally, it excludes the IP address range from 192.168.1.201 to 192.168.1.254.

Uploaded by

rashmi m
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views1 page

DHCP Script

The document outlines a DHCP configuration for the subnet 192.168.1.0 with a netmask of 255.255.255.0. It specifies an assignable range of IP addresses from 192.168.1.10 to 192.168.1.200, denies unknown clients, and includes a static client definition for a device with a specific MAC address. Additionally, it excludes the IP address range from 192.168.1.201 to 192.168.1.254.

Uploaded by

rashmi m
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

subnet 192.168.1.0 netmask 255.255.255.

0 {
range 192.168.1.10 192.168.1.200; # Assignable range
deny unknown-clients; # Deny clients not listed
host my_static_client { # Example static client definition
hardware ethernet 00:11:22:33:44:55;
fixed-address 192.168.1.2;
}
# Excluded addresses
range 192.168.1.201 192.168.1.254; # Exclude this range
}

You might also like