vsftp 修改登陆密码

vsftp 修改登陆密码,第1张

首先在client上建立public Key和private key,需要使用ssh-keygen命令

[root@localhost .ssh]# ssh-keygen –t rsa

Generating public/private rsa key pair.

Enter file in which to save the key (/root/.ssh/id_rsa):

Enter passphrase (empty for no passphrase): 按enter

Enter same passphrase again: 按enter

Your identification has been saved in /root/.ssh/id_rsa.

Your public key has been saved in /root/.ssh/id_rsa.pub.

The key fingerprint is:

e8:8a:5e:ae:c7:13:45:d0:81:cd:3f:e6:1e:f8:88:5a

root@localhost.localdomain

2.然后将Private Key 放在client上的宿主目录,一般放在/root/.ssh/目录中

并修改权限为user可读

3 最后,将Public Key 放在任何一个您想登陆主机server中的某user的宿主目录

下的.ssh/子目录人证文档中即可。

4现在192.168.0.6是client 想连接到192.168.0.8上用ssh-keygen –t rsa产生key

(-t参数是使用和种密码)这时在我的/root/.ssh/里边产生了三个文档分别是公钥

(id_rsa.pub)和私钥(id_rsa)另外要注意的就是id_rsa文档权限他必须是-rw------否则回不安全,id_rsa.pub就是公钥,把这个放到server目录上去用命令

[wds@localhost .ssh]# sftp id_rsa.pub

root@192.168.0.8

[wds@localhost .ssh]# passwd

[wds@localhost .ssh]# put id_rsa.pub

[root@localhost .ssh]# uploading id_rsa.pub to /root/.ssh/

[root@localhost .ssh]# exit

然后到服务器上去192.168.0.8

[root@localhost .ssh]# ssh –l root 192.168.0.8

[root@localhost .ssh]# cd /root/.ssh/

[root@localhost .ssh]#more id_rsa.pub >>authorized_keys 这样就能够了

[root@localhost .ssh]#

返回client上192.168.0.6

[root@localhost .ssh]# exit

[root@localhost .ssh]# ssh 192.168.0.8

1.登录服务器

cd /etc/vsftpd

cat ftpusers

找到对应的ftp用户名 (如果用户名也忘记了 那么 cd /etc 然后cat passwd 查看用户和对应的管理目录)

passwd ftp用户名(回车)

service vsftpd restart

Linux添加FTP用户并设置权限

在linux中添加ftp用户,并设置相应的权限, *** 作步骤如下:

1、环境:ftp为vsftp。被限制用户名为test。被限制路径为/home/test

2、建用户,命令行状态下,在root用户下:

运行命令:“useradd -d /home/test test”//增加用户test,并制定test用户的主目录为/home/test

运行命令:“passwd test”//为test设置密码,运行后输入两次相同密码

3、更改用户相应的权限设置:

运行命令:“usermod -s /sbin/nologin test”//限定用户test不能telnet,只能ftp

运行命令:“usermod -s /sbin/bash test”//用户test恢复正常

运行命令:“usermod -d /test test”//更改用户test的主目录为/test

4、限制用户只能访问/home/test,不能访问其他路径

修改/etc/vsftpd/vsftpd.conf如下:

chroot_list_enable=YES

# (default follows)

chroot_list_file=/etc/vsftpd/vsftpd.chroot_list

编辑上面的内容

第一行:chroot_list_enable=YES//限制访问自身目录

第三行:编辑vsftpd.chroot_list。根据第三行说指定的目录,找到chroot_list文件。(因主机不同,文件名也许略

有不同)

编辑vsftpd.chroot_list,将受限制的用户添加进去,每个用户名一行

5、重启服务器

改完配置文件,不要忘记重启vsFTPd服务器

运行命令:/etc/init.d/vsftpd restart

6、如果需要允许用户修改密码,但是又没有telnet登录系统的权限:

运行命令:“usermod -s /usr/bin/passwd test”//用户telnet后将直接进入改密界面


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11203813.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-14
下一篇 2023-05-14

发表评论

登录后才能评论

评论列表(0条)

保存