「Iperf」:修訂間差異
跳至導覽
跳至搜尋
建立内容为“{{Lowercase}} '''iperf''' is a network performance measurement software.”的新页面 |
|||
(未顯示同一使用者於中間所作的 4 次修訂) | |||
第1行: | 第1行: | ||
{{Lowercase}} | {{Lowercase}} | ||
'''iperf''' | '''iperf'''是一套網路效能的測試軟體。 | ||
== 範例 == | |||
這邊使用iperf(2.x的版本): | |||
=== Server === | |||
<syntaxhighlight lang="bash"> | |||
iperf -s -p 12345 | |||
</syntaxhighlight> | |||
=== Client === | |||
<syntaxhighlight lang="bash"> | |||
iperf -u -c -c 10.1.2.3 -p 12345 -i 1 -t 3600 -b 10485760 | |||
</syntaxhighlight> |
於 2022年2月25日 (五) 09:50 的最新修訂
iperf是一套網路效能的測試軟體。
範例
這邊使用iperf(2.x的版本):
Server
iperf -s -p 12345
Client
iperf -u -c -c 10.1.2.3 -p 12345 -i 1 -t 3600 -b 10485760