We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I want to simulate the incast 255:1 scene. Can you provide the corresponding flow file, or how should I set my flow?
The text was updated successfully, but these errors were encountered:
Hi,
Please refer to the format in flow-burstExp.txt, each line is as follows:
srcNode DstNode pg port flowsize startTime and the first line in the file corresponds to the number of flows.
srcNode DstNode pg port flowsize startTime
To simulate 255:1, you could specify 255 at the top of the file and generate 255 flows towards the same receiver:
255
#!/bin/bash N=255 RECEIVER=16 echo $N for SENDER in $(seq 1 $N);do if [ $SENDER -eq $RECEIVER ]; then continue fi echo "$SENDER $RECEIVER 3 $(( 10000+$SENDER )) 1000000000000 0.15" done
Sorry, something went wrong.
No branches or pull requests
Hello, I want to simulate the incast 255:1 scene. Can you provide the corresponding flow file, or how should I set my flow?
The text was updated successfully, but these errors were encountered: