Update README.md

This commit is contained in:
juewuy 2020-07-09 12:33:48 +08:00 committed by GitHub
parent 7f96489c5f
commit d969a43e70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ PS
*·如有必要也可以自行前往下载更新clash核心文件 https://github.com/Dreamacro/clash/releases/tag/premium 小米AX系列都是armv7架构其他路由器请自查<br>*
•将clash文件夹以及内部4个文件通过winSCP上传到路由器/etc文件夹下最终应该是/etc/clash/"4个文件"<br>
•登陆SSH并在SSH中用root用户执行下方的相应命令即可理论上非root用户也可以运行请参考官方文档自行研究<br>
•启用后可以通过 http://clash.razord.top 管理clash内置规则通常无需额外设置即可正常使用<br>
•启用后可以通过 http://clash.razord.top 管理clash内置规则通常无需额外设置即可正常使用,且设备重启后会保持自动运行<br>
*•也可以自行配置http代理端口7890或者sock5代理端口7891速度比tun模式更快但是相对延迟可能略高<br>*
```Shell
#首次启用clash
@ -37,13 +37,6 @@ service clash start #启动clash服务
sed -i "8iport=5335" /etc/dnsmasq.conf #修改dnsmasq监听端口为5335
service dnsmasq restart #重启dnsmasq服务报错“cp: can't stat '/etc/dnsmasq.d/*'……”可无视)
```
```Shell
#启用clash透明网关
service clash enable #启用clash开机启动
service clash start #启动clash服务
sed -i "8iport=5335" /etc/dnsmasq.conf #修改dnsmasq监听端口为5335
service dnsmasq restart #重启dnsmasq服务报错“cp: can't stat '/etc/dnsmasq.d/*'……”可无视)
```
```Shell
#停止clash透明网关
service clash disable #禁用clash开机启动
@ -51,8 +44,15 @@ service clash stop #停止clash服务
sed -i '/port=5335/d' /etc/dnsmasq.conf #重置dnsmasq监听端口为默认值port:53)
service dnsmasq restart #重启dnsmasq服务报错“cp: can't stat '/etc/dnsmasq.d/*'……”可无视,不放心可重启系统)
```
```Shell
#停止后再次启用clash透明网关
service clash enable #启用clash开机启动
service clash start #启动clash服务
sed -i "8iport=5335" /etc/dnsmasq.conf #修改dnsmasq监听端口为5335
service dnsmasq restart #重启dnsmasq服务报错“cp: can't stat '/etc/dnsmasq.d/*'……”可无视)
```
```Shell
#卸载clash相关文件卸载前请先配合“停止clash透明网关”使用
#卸载clash相关文件执行前必须先输入“停止clash透明网关”相关命令否则可能导致上不了网
rm -rf /etc/clash #删除clash文件夹及文件
rm /etc/init.d/clash #删除clash开机启动文件
```