Arduino Ethernet Shield W5100 [HanRun HR911105A 15/10] Problem

Hi guys!

I have a mega 2560 and an ethernet shield W5100 (http://litbimg1.rightinthebox.com/images/384x384/201501/yzwwed1421740712630.jpg).

I have problem with ethernet shield. I'm using WebServer example. When I put ip address into the address bar, I can't get the web page from the first try. I have to refresh page several times to get results.
Also, when I restart Mega, LED13 on the ethernet shield sometimes turns on, and when I restart Mega again, the LED13 turns off.

Please help. Thanks!

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

// Enter a MAC address and IP address for your controller below.
// The IP address will be dependent on your local network:
byte mac[] = {
  0xDE, 0xA2, 0xBE, 0xEF, 0xFE, 0xED
};
IPAddress ip(192, 168, 1, 55);
byte gateway[] = { 192, 168, 1, 1 };
// the subnet:
byte subnet[] = { 255, 255, 255, 0 };
// Initialize the Ethernet server library
// with the IP address and port you want to use
// (port 80 is default for HTTP):
EthernetServer server(80);

void setup() {
  pinMode(4, OUTPUT);
  digitalWrite(4, HIGH);
  // Open serial communications and wait for port to open:
  Serial.begin(9600);
  while (!Serial) {
    ; // wait for serial port to connect. Needed for Leonardo only
  }


  // start the Ethernet connection and the server:
  Ethernet.begin(mac, ip, gateway, subnet);
  server.begin();
  Serial.print("server is at ");
  Serial.println(Ethernet.localIP());
}


void loop() {
  // listen for incoming clients
  EthernetClient client = server.available();
  if (client) {
    Serial.println("new client");
    // an http request ends with a blank line
    boolean currentLineIsBlank = true;
    while (client.connected()) {
      if (client.available()) {
        char c = client.read();
        Serial.write(c);
        // if you've gotten to the end of the line (received a newline
        // character) and the line is blank, the http request has ended,
        // so you can send a reply
        if (c == '\n' && currentLineIsBlank) {
          // send a standard http response header
          client.println("HTTP/1.1 200 OK");
          client.println("Content-Type: text/html");
          client.println("Connection: close");  // the connection will be closed after completion of the response
          client.println();
          client.println("<!DOCTYPE HTML>");
          client.println("<html>");
          client.println("<p>Hi!</p>");
          client.println("</html>");
          break;
        }
        if (c == '\n') {
          // you're starting a new line
          currentLineIsBlank = true;
        }
        else if (c != '\r') {
          // you've gotten a character on the current line
          currentLineIsBlank = false;
        }
      }
    }
    // give the web browser time to receive the data
    // close the connection:
    client.stop();
    Serial.println("client disconnected");
  }
}
PING 192.168.1.55 (192.168.1.55) 56(84) bytes of data.
64 bytes from 192.168.1.55: icmp_seq=1 ttl=128 time=0.093 ms
64 bytes from 192.168.1.55: icmp_seq=3 ttl=128 time=0.098 ms
64 bytes from 192.168.1.55: icmp_seq=4 ttl=128 time=0.097 ms
64 bytes from 192.168.1.55: icmp_seq=7 ttl=128 time=0.100 ms
64 bytes from 192.168.1.55: icmp_seq=8 ttl=128 time=0.095 ms
64 bytes from 192.168.1.55: icmp_seq=11 ttl=128 time=0.099 ms
64 bytes from 192.168.1.55: icmp_seq=13 ttl=128 time=0.101 ms
64 bytes from 192.168.1.55: icmp_seq=14 ttl=128 time=0.095 ms
64 bytes from 192.168.1.55: icmp_seq=15 ttl=128 time=0.094 ms
^C
--- 192.168.1.55 ping statistics ---
15 packets transmitted, 9 received, 40% packet loss, time 13999ms
rtt min/avg/max/mdev = 0.093/0.096/0.101/0.013 ms
1 Like

When I put ip address into the adress bar, I can't get the web page from the first try.

Do you enter the IP address like below with the http:// prefix?

http://192.168.1.55

Your Ethernet.begin call is not correct.

// replace this
  Ethernet.begin(mac, ip, gateway, subnet);

// with this
  Ethernet.begin(mac, ip, gateway, gateway, subnet);

You can try my server code on the playground. The first example may be more than you need, so look at the second example on this page.
http://playground.arduino.cc/Code/WebServerST

zoomkat:
Do you enter the IP address like below with the http:// prefix?

http://192.168.1.55

Yes. Nothing's changed.

SurferTim:
Your Ethernet.begin call is not correct.

// replace this

Ethernet.begin(mac, ip, gateway, subnet);

// with this
 Ethernet.begin(mac, ip, gateway, gateway, subnet);




You can try my server code on the playground. The first example may be more than you need, so look at the second example on this page.
http://playground.arduino.cc/Code/WebServerST

I tried your code. It works, but ... 43% packet loss

PING 192.168.1.55 (192.168.1.55) 56(84) bytes of data.
64 bytes from 192.168.1.55: icmp_seq=3 ttl=128 time=0.102 ms
64 bytes from 192.168.1.55: icmp_seq=4 ttl=128 time=0.102 ms
64 bytes from 192.168.1.55: icmp_seq=5 ttl=128 time=0.104 ms
64 bytes from 192.168.1.55: icmp_seq=6 ttl=128 time=0.099 ms
64 bytes from 192.168.1.55: icmp_seq=7 ttl=128 time=0.096 ms
64 bytes from 192.168.1.55: icmp_seq=8 ttl=128 time=0.102 ms
64 bytes from 192.168.1.55: icmp_seq=9 ttl=128 time=0.100 ms
64 bytes from 192.168.1.55: icmp_seq=10 ttl=128 time=0.097 ms
64 bytes from 192.168.1.55: icmp_seq=13 ttl=128 time=0.102 ms
64 bytes from 192.168.1.55: icmp_seq=14 ttl=128 time=0.100 ms
64 bytes from 192.168.1.55: icmp_seq=19 ttl=128 time=0.097 ms
64 bytes from 192.168.1.55: icmp_seq=22 ttl=128 time=0.102 ms
64 bytes from 192.168.1.55: icmp_seq=23 ttl=128 time=0.102 ms
^C
--- 192.168.1.55 ping statistics ---
23 packets transmitted, 13 received, 43% packet loss, time 22012ms
rtt min/avg/max/mdev = 0.096/0.100/0.104/0.009 ms

What are the network settings of the computer doing that ping?

SurferTim:
What are the network settings of the computer doing that ping?

PC and ethernet shield are connected to the TL-WR543G 54M router (Operation mode: AP Client Router: WISP Client Router)

Router info:
IP: 192.168.1.1
Subnet mask: 255.255.255.0

PC info:
Interface: Ethernet (eth0)
Speed: 100 Mb/s
IP: 192.168.1.3
Broadcast address: 192.168.1.255
Subnet mask: 255.255.255.0
Default route: 192.168.1.1

That is the correct settings for your network then.

If you have a 40% packet loss, something is wrong somewhere. Have you tried a different CAT5 cable yet?

I tried shorter cable and it works! :slight_smile:

Thanks!

--- 192.168.1.2 ping statistics ---
3063 packets transmitted, 3063 received, 0% packet loss, time 3061998ms
rtt min/avg/max/mdev = 0.097/0.103/0.125/0.012 ms

insense:
Hi guys!

I have a mega 2560 and an ethernet shield W5100 (http://litbimg1.rightinthebox.com/images/384x384/201501/yzwwed1421740712630.jpg).

I have problem with ethernet shield. I'm using WebServer example. When I put ip address into the address bar, I can't get the web page from the first try. I have to refresh page several times to get results.
Also, when I restart Mega, LED13 on the ethernet shield sometimes turns on, and when I restart Mega again, the LED13 turns off.

Please help. Thanks!

 #include <SPI.h>

#include <Ethernet.h>

// Enter a MAC address and IP address for your controller below.
// The IP address will be dependent on your local network:
byte mac[] = {
  0xDE, 0xA2, 0xBE, 0xEF, 0xFE, 0xED
};
IPAddress ip(192, 168, 1, 55);
byte gateway[] = { 192, 168, 1, 1 };
// the subnet:
byte subnet[] = { 255, 255, 255, 0 };
// Initialize the Ethernet server library
// with the IP address and port you want to use
// (port 80 is default for HTTP):
EthernetServer server(80);

void setup() {
  pinMode(4, OUTPUT);
  digitalWrite(4, HIGH);
  // Open serial communications and wait for port to open:
  Serial.begin(9600);
  while (!Serial) {
    ; // wait for serial port to connect. Needed for Leonardo only
  }

// start the Ethernet connection and the server:
  Ethernet.begin(mac, ip, gateway, subnet);
  server.begin();
  Serial.print("server is at ");
  Serial.println(Ethernet.localIP());
}

void loop() {
  // listen for incoming clients
  EthernetClient client = server.available();
  if (client) {
    Serial.println("new client");
    // an http request ends with a blank line
    boolean currentLineIsBlank = true;
    while (client.connected()) {
      if (client.available()) {
        char c = client.read();
        Serial.write(c);
        // if you've gotten to the end of the line (received a newline
        // character) and the line is blank, the http request has ended,
        // so you can send a reply
        if (c == '\n' && currentLineIsBlank) {
          // send a standard http response header
          client.println("HTTP/1.1 200 OK");
          client.println("Content-Type: text/html");
          client.println("Connection: close");  // the connection will be closed after completion of the response
          client.println();
          client.println("");
          client.println("");
          client.println("

Hi!

");
          client.println("");
          break;
        }
        if (c == '\n') {
          // you're starting a new line
          currentLineIsBlank = true;
        }
        else if (c != '\r') {
          // you've gotten a character on the current line
          currentLineIsBlank = false;
        }
      }
    }
    // give the web browser time to receive the data
    // close the connection:
    client.stop();
    Serial.println("client disconnected");
  }
}






PING 192.168.1.55 (192.168.1.55) 56(84) bytes of data.
64 bytes from 192.168.1.55: icmp_seq=1 ttl=128 time=0.093 ms
64 bytes from 192.168.1.55: icmp_seq=3 ttl=128 time=0.098 ms
64 bytes from 192.168.1.55: icmp_seq=4 ttl=128 time=0.097 ms
64 bytes from 192.168.1.55: icmp_seq=7 ttl=128 time=0.100 ms
64 bytes from 192.168.1.55: icmp_seq=8 ttl=128 time=0.095 ms
64 bytes from 192.168.1.55: icmp_seq=11 ttl=128 time=0.099 ms
64 bytes from 192.168.1.55: icmp_seq=13 ttl=128 time=0.101 ms
64 bytes from 192.168.1.55: icmp_seq=14 ttl=128 time=0.095 ms
64 bytes from 192.168.1.55: icmp_seq=15 ttl=128 time=0.094 ms
^C
--- 192.168.1.55 ping statistics ---
15 packets transmitted, 9 received, 40% packet loss, time 13999ms
rtt min/avg/max/mdev = 0.093/0.096/0.101/0.013 ms

hey can you tell me the connections how you have done please rishi3932@gmail.com is my email please iam unable to connect it to the webserver