Komut
setDnsServerIP()
Açıklama
DNS sunucusunun IP adresini ayarlayın. DHCP ile kullanım için değildir.
Sözdizimi
Ethernet.setDnsServerIP (dns_server)
Parametreler
dns_server : DNS sunucusunun IP adresi ( IPAdresi )
İadeler
Hiçbir şey değil
Misal
#include <SPI.h>
#include <Ethernet.h>
byte mac[] = {0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED};
IPAddress ip(10, 0, 0, 177);
IPAddress myDns(192, 168, 1, 1);
void setup() {
Ethernet.begin(mac, ip, myDns);
IPAddress newDns(192, 168, 1, 1);
Ethernet.setDnsServerIP(newDns); // change the DNS server IP address
}
void loop () {}
#include <Ethernet.h>
byte mac[] = {0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED};
IPAddress ip(10, 0, 0, 177);
IPAddress myDns(192, 168, 1, 1);
void setup() {
Ethernet.begin(mac, ip, myDns);
IPAddress newDns(192, 168, 1, 1);
Ethernet.setDnsServerIP(newDns); // change the DNS server IP address
}
void loop () {}
Ayrıca bakınız
- Ethernet.setMACAddress()
- Ethernet.setLocalIP()
- Ethernet.setGatewayIP()
- Ethernet.setSubnetMask()
- Ethernet.begin()