DHCP AND DNS with Ethernet Shield Library
Referring to the Repeating Web Client sketch example provided with the Arduino IDE 1.0.1
I've made this work using a static IP address and DNS Server, as in the example sketch.
Is it possible to use DHCP to get a DYNAMIC IP address, while still using a DNS server to resolve a web address ?
The synatax is Ethernet.begin(mac, ip, myDns) for static IP with DNS funtionality.
Just plain Ethernet.begin(mac) for dynamic IP with NO DNS functionality.
I tried Ethernet.begin(mac, , myDNS), but that didn't work.
What I'm trying to do is to get a DYNAMIC IP address yet retain DNS funtionality.
Thank you for helping me.
Bob W