hi,
I connected the shield to a different ethernet port and it worked - I have an old router providing some extra ports and it probably does a bit more than a simple switch. The laptop were everything worked was on wireless.
A lot of time wasted on this one - it was mostly mine so that's ok - anyway thanks for reading/helping!
Jhh
- - - - -
hi,
I've tried the Webclient example with the ethernet library and it retrieves the google homepage (though the ip address in the sketch is outdated). When I try a server on the local network on port 80 that works as well but when I try to access a server on my local network on port 81 it does not work.
When I try this one:
#include <Ethernet.h>
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
byte ip[] = { 10, 0, 0, 177 };
byte server[] = { 64, 233, 187, 99 }; // Google
Client client(server, 80);
it is complaining that I need to use: EthernetClient client; so not too many versions I can try.
Am I a missing a new/updated library? Code snippets for http clients working on other ports than 80 are most welcome...
Thanks!
Jhh