We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 650796e commit 5ff730eCopy full SHA for 5ff730e
testConnectionLimit.sh
@@ -0,0 +1,11 @@
1
+#!/bin/bash
2
+# Syntax: scriptname hostname port
3
+
4
+ip=$1
5
+port=$2
6
7
+for i in {1..100}
8
+do
9
+ # do nothing just connect and exit
10
+ echo "exit" | nc ${ip} ${port};
11
+done
0 commit comments