mirror of
https://github.com/everett7623/nodeloc_vps_test.git
synced 2024-11-20 15:05:22 +00:00
Create iperf3_server.sh
This commit is contained in:
parent
9776b341e8
commit
5ccf30ad3c
13
iperf3_server.sh
Normal file
13
iperf3_server.sh
Normal file
@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
# 检查 iperf3 是否安装
|
||||
if ! command -v iperf3 &> /dev/null; then
|
||||
echo "iperf3 未安装. 正在尝试安装..."
|
||||
sudo apt-get update && sudo apt-get install -y iperf3 || sudo yum install -y iperf3
|
||||
fi
|
||||
|
||||
# 启动 iperf3 服务器
|
||||
echo "启动 iperf3 服务器..."
|
||||
iperf3 -s -D
|
||||
|
||||
echo "iperf3 服务器已在后台启动。使用 'sudo killall iperf3' 来停止服务器。"
|
Loading…
Reference in New Issue
Block a user