挂载sshfs

sshfs -o reconnect,ServerAliveInterval=15,ServerAliveCountMax=3,identityfile=/home/app/.ssh/id_rsa app@1.2.3.4:/mnt /mnt
  • -o reconnect:自动重新连接(如果连接中断)。
  • ServerAliveInterval=15:每15秒向服务器发送一个保活包,保持连接。
  • ServerAliveCountMax=3:如果3次保活包都没有收到响应,则认为连接已断开。
  • identityfile=/path/to/private_key:显式指定私钥路径(如果使用非默认密钥)。
  • allow_other 选项允许其他用户(包括root)访问你挂载的文件系统。这是一个特权操作,必须在FUSE的全局配置中显式启用。

评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注