当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Arduino WiFi - WiFi.setDNS()用法及代码示例


说明

WiFi.setDNS() 允许您配置 DNS(域名系统)服务器。

用法

WiFi.setDNS(dns_server1)
WiFi.setDNS(dns_server1, dns_server2)

参数

dns_server1:主DNS服务器的IP地址

dns_server2:从DNS服务器的IP地址

返回

示例

This example shows how to set the Google DNS (8.8.8.8). You can set it as an object IPAddress.

#include <SPI.h>
#include <WiFi.h>

// the IP address for the shield:
IPAddress dns(8, 8, 8, 8);  //Google dns  

char ssid[] = "yourNetwork";    // your network SSID (name)
char pass[] = "secretPassword"; // your network password (use for WPA, or use as key for WEP)

int status = WL_IDLE_STATUS;

void setup()
{  
  // Initialize serial and wait for port to open:
  Serial.begin(9600);
  while (!Serial) {
    ; // wait for serial port to connect. Needed for Leonardo only
  }

  // check for the presence of the shield:
  if (WiFi.status() == WL_NO_SHIELD) {
    Serial.println("WiFi shield not present");
    while(true);  // don't continue
  }

  // attempt to connect to Wifi network:
  while ( status != WL_CONNECTED) {
    Serial.print("Attempting to connect to SSID: ");
    Serial.println(ssid);
    // Connect to WPA/WPA2 network. Change this line if using open or WEP network:    
    status = WiFi.begin(ssid, pass);

    // wait 10 seconds for connection:
    delay(10000);
  }

  // print your WiFi shield's IP address:
  WiFi.setDNS(dns);
  Serial.print("Dns configured.");
}

void loop () {
}
 

相关用法


注:本文由纯净天空筛选整理自arduino.cc大神的英文原创作品 WiFi - WiFi.setDNS()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。