Additionally, this year I tried to have my clients all DHCP, but SME is falling short in the fact that sometimes the server is unavailable. I am not deeming SME as the culprit right away, but last year when everything was static, I did not have this problem. I did recently uncover some switches with errant settings as well. I hope this fixes the unavailability issue I had been having.
So...is there a way to add additional DNS entries into SME?
I prefer to have the firewall doing DHCP, but suit yourself.
Have a look at /etc/resolve.conf and the templates that define it: /etc/e-smith/templates/etc/resolve.conf
You should be a able to list multiple DNS entries here like this:
nameserver IP
nameserver IP
nameserver IP
You'll likely need to create a custom template as the current template will allow only one IP. An easy way to do this would be:
-mkdir -p /etc/e-smith/template-custom/etc/resolve.conf
-vi /etc/e-smith/templates-custom/resolve.conf/25nameserver
delete the current contents and add your name servers as I've shown above, one per line
- save the file
- /sbin/e-smith/expand-template /etc/resolve.conf
- service -t /service/tinydns
- service -t /service/dnscache
- service -t /service/dnscache.forwarder
Give that a shot.
Greg