OpenWRT L2TP客户端 部署记录
OpenWRT部署L2TP客户端的时候找到的网上教程都比较简单,新手入门容易犯迷糊所以记录一下 关键字: l2tp, openwrt
前期准备
- 安装了Breed
- 下载OpenWRT 这里得提前知道路由器的Core和CPU版本, 比如极路由 HC5962 就要选择 targets/ramips/mt7621
- 记录路由器的WAN口MAC 和 LAN口MAC 这一步很重要!!!
进入Breed
通常情况下断开路由器电源,并按住复位键插入电源,10 秒后松开 此时通过网线将计算机和路由器连接输入 192.168.1.1这时候你会进入 Breed 恢复控制台
更新固件
选中固件复选框选择你下载的 OpenWRT 固件
请正确选择闪存布局 如 极路由 HC5962/B70
注意先不要选择自动重启
刷写固件完成后返回 192.168.1.1 然后点击 MAC 地址修改,在 LAN MAC、WAN MAC 处分别填写你保存的 LAN MAC 和 WAN MAC,RF1 为 2.4GHz 网卡 MAC 地址,RF2 为 5GHz 网卡 MAC 地址,RF1 和 RF2 中的 MAC1、MAC2 保持默认即可
重启路由
就可以进入OpenWRT管理界面了,默认密码为空
更新software列表
搜索 l2tp
安装 xl2tp
然后再重启路由
添加接口
可以发现已经可以正常添加L2TP了
其他问题记录
1. 汉化操作
System -> Software
搜索 luci-i18n-base-zh-cn
并安装
2.修改lan的ip
# 进入ssh模式
uci set network.lan.ipaddr='192.168.5.1'
uci commit network
uci delete dhcp.lan.dhcp_option
uci add_list dhcp.lan.dhcp_option='6,192.168.5.1'
reboot
3.ip-up的变量
# $1 the interface name used by pppd (e.g. ppp3)
# $2 the tty device name
# $3 the tty device speed
# $4 the local IP address for the interface
# $5 the remote IP address
# $6 the parameter specified by the 'ipparam' option to pppd
4.断网自动重连 参考文章L2TP连接自动重连解决方案