2

I'm trying to perform a test using IPerf but in a special case. Usually iperf client send data to iperf server, what I need in this case is the server send data back to the client in the same connection.

I don't want a bidirectional test, as it does open a new tcp connection back to the client, and that isn't what I'm looking for.

EEAA
  • 110,608
CarlosH
  • 21

1 Answers1

1

I think you're asking the same question as at:

iperf-like bidirectional bandwidth measurement through NAT

I responded there, but the tl;dr is that I found a patch for iperf that enables NAT'd clients to initiate reverse TCP iperf tests. The full, patched iperf code is here:

https://github.com/tierney/iperf

tierney
  • 56