1

我正在尝试通过 Galileo 以太网端口将Intel Galileo 板连接到 Mac,该端口连接到 Mac 上的 Thunderbolt 以太网端口。我已经上传了一个 Arduino 草图来启动 LAN 连接:

#include <SPI.h>
#include <Ethernet.h>

// the media access control (ethernet hardware) address for the Galileo:
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };  
//the IP address for the Galileo:
byte ip[] = { 192, 168, 0, 2 };    

void setup()
{
    Serial.begin(9600);
    Serial.println("Attempting to start Ethernet");
    if (Ethernet.begin(mac) == 0) {
        Serial.println("Failed to configure Ethernet using DHCP");
        Serial.println("Attempting to configure Ethernet using Static IP");
        Ethernet.begin(mac, ip);
    }
    Serial.print("Your IP address: ");
    Serial.println(Ethernet.localIP());
}

void loop () {}

在我的网络设置中,我是否将我的迅雷以太网设置为 DHCP?还是手动输入IP地址?我的 galileo 的 ip 地址是什么,以便我可以通过 ssh 访问它?

4

0 回答 0