[Risolto] Arduino UNO e Ethernet Shield W5100: non funziona

SI, puoi scrivere, per configurare completamente la scheda, così:

...
byte mac[] = {0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED};

IPAddress ip(192, 168, 1, 75);
IPAddress gateway(192, 168, 1, 1);
IPAddress subnet(255, 255, 255, 0);
...

Guglielmo