openwrt增加sftp

给openwrt增加sftp,方便传输文件 并编译进固件

方法一.openwrt上操作直接安装文件,通过

root@OpenWrt:~# opkg update

root@OpenWrt:~# opkg install vsftpd openssh-sftp-server

root@OpenWrt:~# /etc/init.d/vsftpd enable

root@OpenWrt:~# /etc/init.d/vsftpd start

方法二. 编译代码的时候就把这些功能做进去,以后直接给每个产品烧写固件就可以了,然后发下如下的操作

./scripts/feeds update -a     更新软件包
./scripts/feeds install -a    安装软件包

例如我想安装vsftpd就如下操作

./scripts/feeds install vsftpd openssh-sftp-server 

显示成功后

make menuconfig

然后

Network->File Transfer->vsftpd


只截取了最后一张图

image

最后 ,编译出固件,就有了sftp的功能

make -j4 V=99

你可能感兴趣的:(openwrt增加sftp)