You must use the local ip of the server. It should be 192.168.1.x
thks for your help friends XD, both
what is X ? 8)
if I use " 192.168.1.1" I have got access to the router page, I see.
byte mac[] = { 0x90, 0xA2, 0xDA, 0x0D, 0x69, 0xDB }; //mac arduino
IPAddress ip(192, 168, 1, 34);
IPAddress server(192, 168, 1, 1 );
if i use this config : - FAIL
byte mac[] = { 0x90, 0xA2, 0xDA, 0x0D, 0x69, 0xDB }; //mac arduino
IPAddress ip(192, 168, 1, 34);
IPAddress server(127, 0, 0, 1 );
if i use this config : - FAIL
byte mac[] = { 0x90, 0xA2, 0xDA, 0x0D, 0x69, 0xDB }; //mac arduino
IPAddress ip(127, 0, 0, 1);
IPAddress server(192, 168, 1, 34 );
.... also if I add 10 to last number -FAIL.
IPAddress ip(192, 168, 1, 44);