Thx for the quick response!
BTW is that the proper way of initializing the Client and Server?
CLIENT:
byte mac[] = {0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED};
IPAddress server(192, 168, 0, 50); // IP address of the server
IPAddress gateway(192,168,0,1); // gateway of your network
IPAddress subnet(255,255,255,0); // subnet mask of your network
IPAddress dns(192,168,1,26);
EthernetClient client;
....
void Setup()
{
...
Ethernet.begin(mac, server, dns, gateway, subnet);
}
SERVER:
byte mac[] = {0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED};
IPAddress server(192, 168, 0, 50); // IP address of the server
IPAddress gateway(192,168,0,1); // gateway of your network
IPAddress subnet(255,255,255,0); // subnet mask of your network
IPAddress dns(192,168,1,26);
EthernetServer server(80);
....
void Setup()
{
...
Ethernet.begin(mac, server, dns, gateway, subnet);
}