I'm attempting to set up a Pi as a DHCP server for a private network of ~10 machines. The pi will be connected to a network switch.
So far I've been following this well written guide:
https://www.raspberrypi.org/learning/networking-lessons/lesson-3/plan/
However, it starts talking about dnsmasq, which doesn't appear in my Raspbian version.
Reading around some other questions, I get the feeling that there was a change in configuration method with the Jessie release.
I have the following in /etc/network/interfaces
#iface eth0 inet dhcp
auto eth0
iface eth0 inet static
address 192.168.0.1
netmask 255.255.255.0
What do I need to do, if anything, with dhcpcd.conf
?
What is best practice for setting up a DHCP server on a Pi v3B with Raspbian Jessie?
EDIT - in writing this question I realised that I had scrolled past some vital the install dnsmasq
pre-requisite. It worked well. I've decided to post anyway to see if there are other viewpoints on this.
dhcpcd
? The tutorial tells you to installdnsmasq
. – Milliways Feb 24 '17 at 23:03