HewlettPackard / netperf

Netperf is a benchmark that can be used to measure the performance of many different types of networking. It provides tests for both unidirectional throughput, and end-to-end latency.
MIT License
873 stars 187 forks source link

Returning netperf: remote error 11 #7

Open sourabhjains opened 6 years ago

sourabhjains commented 6 years ago

https://github.com/HewlettPackard/netperf/blob/d566775bf2e0f87b3d81bd799cccd40fda2de133/src/nettest_omni.c#L4847

What could be the possible reason?

Any suggestion would be great.

jonesrick commented 6 years ago

There should be some perror() output:

Set_errno(netperf_response.content.serv_errno);
fprintf(where,
    "netperf: remote error %d",
    netperf_response.content.serv_errno);
perror("");
fflush(where);

which will be converting the remote system's errno value (in this case '11') to an error string. In any event, you can lookup what errno 11 means and that should give you an idea what may have happened.