Shell 检测代理是否运行正常¶ 命令行中输入以下命令,查看代理是否正常运行¶ curl -so /dev/null -w "%{http_code}" google.com -x socks5://127.0.0.1:10080 - socks5表示使用的代理协议,可以换成http等其他协议 - 10080是代理的端口号,对应代理服务的Input端口 命令返回值为301,200说明代理服务工作正常,返回值为000说明代理长时间无响应,无法工作。 Was this page helpful? Thanks for your feedback! Thanks for your feedback! Help us improve this page by using our feedback form.