iperf3 traffic generator sends campus->DC, should be DC->campus (server pushes to client) #58
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
scripts/generate_traffic.shrunsiperf3 -c "$server_ip" ...from thecampus host with no
-R, so per iperf3 defaults the client sendsand the server receives -- traffic flows campus-host -> dc-server.
That's backwards for what these roles represent:
dc-serverNis theDC-hosted service,
campus-hostNis the consumer. A real DC-hostedservice delivers data to the consumer (download), it doesn't only
receive uploads from it.
Fix
Add
-R(reverse) to theiperf3 -cinvocation so the server(
dc-serverN) sends and the client (campus-hostN) receives, andupdate the script's direction labels (
server -> clientinstead ofclient -> server) to match.