Initial commit for creating core dns image

This commit is contained in:
2023-01-26 06:27:17 +00:00
parent 7db856db57
commit 061591808d
6 changed files with 116 additions and 0 deletions

18
dhcp.conf Normal file
View File

@@ -0,0 +1,18 @@
# file: dhcp.conf
# description: This file is for user configuration of the dhcp service on dnsmasq.
### ###
### DHCP Configuration ###
### ###
# Set up scopes
# dhcp-range=<range_name>,<start_address>,<end_address>,<subnet_mask>,<lease_time>
#dhcp-range=home_lan,192.168.1.100,192.168.1.200,255.255.255.0,12h
# Set Gateway Servers (the 3 tag means 'router')
#dhcp-option=home_lan,3,192.168.1.1
# Set DNS servers (the 6 tag means 'dns-server')
# dhcp-option=<range_name>,6,<dns_server_address>
# range_name is defined above when you defined your ranges.
#dhcp-option=home_lan,6,10.0.0.10