ok, i hate to sound repetitive, but i have been having an issue, as have many here. i have tried several solutions, to no avail.
here is the dhcp error i am receiving.
Code:
Generating /tmp/dhcpd.conf
Starting DHCP server...
Internet Systems Consortium DHCP Server V3.1.3
Copyright 2004-2009 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
/tmp/dhcpd.conf line 10: semicolon expected.
}
^
/tmp/dhcpd.conf line 10: unexpected end of file
}
^
Configuration file errors encountered -- exiting
cat /tmp/dhcpd.conf
Code:
default-lease-time 300;
max-lease-time 360;
ddns-update-style none;
authoritative;
log-facility local7;
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.100 192.168.0.200;
option routers 192.168.0.1;
option domain-name-servers ;
}
I am assuming my problem is right there at the last line where there is no ip.
do i need to hard code this into the script? is this a bug? what am i missing?
cat /etc/resolv.conf
Code:
# Generated by dhcpcd for interface wlan1
search <myisp.com>
nameserver <isp IP's>
nameserver <isp IP's>
thanks.