如果有人通过ssh登录服务器进行
shell使用,可以快速使用last | w |来显示登录用户.如果有人通过sshfs从另一台没有显示连接的计算机上安装了同一服务器上的目录.是否有一个类似于last | w |的命令,它将在服务器上显示当前的sshfs挂载?
解决方法
制作sshfs挂载涉及跨越sftp连接.因此,您可以做的是寻找衍生的sftp进程.假设用户andreas已经安装了sshfs,或者使用常规sftp登录,您将看到以下内容:
root@halleck:~# ps aux | grep -i sftp | grep -v grep andreas 11029 0.0 0.0 2420 648 ? Ss 23:56 0:00 /usr/lib/openssh/sftp-server root@halleck:~#@H_502_7@中高音.
root@halleck:~# ps aux | grep -i sftp | grep -v grep andreas 11091 0.0 0.1 9564 1116 ? Ss 23:57 0:00 sshd: andreas@internal-sftp root@halleck:~#@H_502_7@您看到的内容取决于您配置的sftp子系统.
本答案中的详细信息假定为OpenSSH服务器端.