站点图标 Linux-技术共享

VPS回程路由一键测试脚本

路由去程测试:

使用工具来测试。关于服务器的路由追踪测试,我们可以使用besttrace测试工具,能简单直观的看到经过的每个节点,并且还有直观的地图展现出来。
124

回程测试方式A:

安装测试软件

# CentOS系统:
yum update && yum install traceroute -y
# Debian/Ubuntu系统:
apt-get update && apt-get install traceroute -y
执行脚本
traceroute -q 1 www.baidu.com

回程测试方式B:

GitHub地址:https://github.com/nanqinlang-script/testrace

使用方法:

连入SSH终端

先输入下面命令下载下来脚本

wget https://raw.githubusercontent.com/nanqinlang-script/testrace/master/testrace.sh && bash testrace.sh

其他说明:

脚本默认安装目录:/home/testrace

脚本测试结果存储目录:/home/testrace/testrace.log

回程测试方式C:

使用工具测试。关于回程路由追踪我们可以使用ipip.net网站提供的Best Trace for Linux来进行测试

#创建一个目录 
mkdir besttrace && cd besttrace
#下载Best Trace for Linux并解压 
wget https://cdn.ipip.net/17mon/besttrace4linux.zip && unzip besttrace4linux.zip  
#添加执行权限 
chmod +x besttrace 
#路由跟踪  
./besttrace -q 1  123.249.20.130
退出移动版