Openwrt 刷机 u盘扩容 加载goagent

根据之前的文章整理出来的,首先找到适合自己路由器的固件,然后升级。


openwrt-ar71xx-generic-tl-wdr4900-v2-squashfs-factory.bin  

直接在路由器界面选择系统升级,选择这个bin文件,重启即可。

用户名root,密码空

opkg update  

opkg install block-mount kmod-fs-ext4 kmod-usb-ohci kmod-usb-storage e2fsprogs  



格式化文件系统的时候最好选择ext2,无日志,速度快


mkfs.ext4 /dev/sda1    
mount /dev/sda1 /mnt  
mkdir /tmp/cproot  
mount --bind / /tmp/cproot  
tar -C /tmp/cproot -cvf - . | tar -C /mnt -xvf -  
sync   
umount /tmp/cproot  



config 'global'
     option     anon_swap     '0'
     option     anon_mount     '0'
     option     auto_swap     '1'
     option     auto_mount     '1'
     option     delay_root     '5'
     option     check_fs     '0'

config 'mount'
     option     target     '/'
     option     uuid     '75cd9cd4-0790-4a51-9432-dda04b93059d'
     option     enabled     '1'

config 'swap'
     option     uuid     'f5d840e6-401b-4b95-a2b5-3ee548d1d99f'
     option     enabled     '1'

http://www.openwrt.org.cn/bbs/forum.php?mod=viewthread&tid=14193

安装goagent

opkg update
opkg install libopenssl_1.0.1c-1_brcm63xx.ipk
opkg install python
opkg install pyopenssl python-openssl

将ip改成0.0.0.0

[listen]
ip = 0.0.0.0

将appid改成你的appid,多个appid用“|”分隔

然后将goagent上穿到路由器,启动proxy.py

就可以使用了。


你可能感兴趣的:(openwrt,goagent,U盘扩容)