网件WNDR 4300 刷openwrt 安装openclash记录

刷机

1、按住reset和开机键,从黄灯直到绿色闪烁

2、网线连接电脑和路由器的lan口,电脑配置ip 192.168.1.X ,子网掩码255.255.255.0,路由器192.168.1.1

3、用tftp命令连接路由器 tftp 192.168.1.1 ; verbose; binary ; put firmware.img 等待固件传输完毕,路由器会自己安装系统,直到ping命令再次ping通。然后重启路由器,如果找不到5G信道再次重启路由器!

4、root登陆openwrt(第一次无密码),设置管理后台登陆密码及无线的SSID 名字及密码,然后应用配置。刷机完成后,先不要进行任何设置,先进行一次恢复到出厂设置

安装openclash

1、下载openclash。通过ssh登陆到路由器,scp上传openclash到tmp目录。

2、安装过程中会发现dnsmap冲突? opkg remove后,安装opkg install dnsmap full依赖包。除了这个依赖外,还需要安装luci-compat; capsh(2.4.3版本); capsh-bin(版本)

3、安装成功后,配置openclash,更新内核;采用fake-ip模式;最后启动clash服务

常见问题

中文问题

opkg update;opkg install luci-i18n-base-zh-cn

依赖

依赖安装要对;capsh要2.4.3版本

dnsmasq依赖冲突;opkg remove dnsmasq; opkg install dnsmasq-full –force-overwrite ;

速度很慢

禁用ipv6解析。 DHCP/DNS->高级设置:禁止解析IPV6 DNS记录

参考链接

https://ainopara.github.io/openwrt-wndr4300.html

https://blog.theseele.site/2019/08/08/wndr4300路由器刷第三方固件和刷回原厂固件/

https://openwrt.org/toh/netgear/wndr4300

https://www.dazhuanlan.com/2020/01/20/5e251bff06f04/

https://github.com/yindeqiang/blog/issues/18

https://blog.csdn.net/u014795817/article/details/74504791

https://post.smzdm.com/p/98238/

https://zhuanlan.zhihu.com/p/126881215

https://blog.csdn.net/hailangnet/article/details/104304968

https://github.com/vernesong/OpenClash

https://www.solarck.com/leanlede-to-openwrt.html

https://www.cnblogs.com/zlAurora/p/12984220.html (集成固件)

https://www.cnblogs.com/zlAurora

https://github.com/vernesong/OpenClash/issues/866 (capsh依赖问题)

https://github.com/kuoruan/luci-app-v2ray/issues/42 (更新openwrt luci后应用设置界面错误)

知识点

tftp; ssh; scp; opkg update; opkg install XXXX.ipk;架构mips soft (mips_24kc)

远程登录默认22端口,不指定就不用加-p

ssh -p [email protected]

从本地拷贝文件到远程服务器secure copy

scp local_file remote_user@remote_ip:remote_foler

scp [email protected]:tmp/

从远程拷贝到本地

scp remote_user@remote_ip:remote_foler local_file

你可能感兴趣的:(网件WNDR 4300 刷openwrt 安装openclash记录)