DHCP-server netwerk binnen
zet een dhcp server in netwerkbinnen en geef een correct ip-adres
- clone een ubuntu22 server
- geef een naam (dhcp-x-y)
- zet hem in het netwerk "binnen" en geef via netplan een correct address bvb 172.16.10.67
- zet de firewalls aan zodat je internet hebt op de dhcp-server -- controlleer met een ping naar dns.google
- zet je linux-mint-binnen(2) aan en ga via een GUI terminal en SSH naar je DHCP-server
- op je dhcp server: doe een
sudo apt update
- op je dhcp server: doe een
sudo apt upgrade
- installeer
isc-dhcp-server
- configureer je dhcp-server
/etc/dhcp/dhcpd.conf
voorbeeld:# dhcpd.conf # # Sample configuration file for ISC dhcpd # # option definitions common to all supported networks... option domain-name "iptables-syntra.int"; option domain-name-servers 8.8.8.8, 8.8.4.4; default-lease-time 3600; max-lease-time 7200; # The ddns-updates-style parameter controls whether or not the server will # attempt to do a DNS update when a lease is confirmed. We default to the # behavior of the version 2 packages ('none', since DHCP v2 didn't # have support for DDNS.) ddns-update-style none; # If this DHCP server is the official DHCP server for the local # network, the authoritative directive should be uncommented. authoritative; # Use this to send dhcp log messages to a different log file (you also # have to hack syslog.conf to complete the redirection). log-facility local7; # This is the DHCP pool declaration: # subnet 172.16.10.0 netmask 255.255.255.0 { range 172.16.10.181 172.16.10.200; option routers 172.16.10.211; } #### Fixed IP addresses can also be specified for hosts. ## ## web-server met fixed ip host www-binnen { hardware ethernet 08:00:27:94:43:c6; fixed-address 172.16.10.80; }
enable
de dhcp-service insystemctl