Support >
  About cybersecurity >
  SSHFS is a method to mount remote files at the second level
SSHFS is a method to mount remote files at the second level
Time : 2025-03-28 14:25:00
Edit : Jtti

In cross-server collaboration, data backup, or distributed development applications, transferring files using SCP or SFTP is prone to inefficient and version-prone problems. SSHFS is a file system mount tool based on the SSH protocol. It allows users to read and write remote files just like local directories, completely breaking the physical storage boundary. Here is how to configure the sharing SSHFS installation, mounting, and permission management.

SSHFS definition and feature analysis

SSHFS uses FUSE user-space file system kernel module to map remote server directories to local file systems. The main core value is reflected in transparent operation, no additional clients are required, and remote files are read and written directly through SSH encrypted channels. It can support all file operations such as creating, deleting, and editing.

SSHFS supports cross-platform compatibility with Linux, macOS, and Windows (with WinFsp), and can be used for various development environments. It also has low permission dependency: only SSH access is required, and there is no need to configure complex services such as NFS or Samba. Suitable for real-time code synchronization, the local IDE directly edits the remote server code, avoiding manual upload; Log analysis The log directory of the production environment is directly mounted and parsed by local tools in real time. Distributed storage integration, aggregation of storage space of multiple servers, unified view management.

2. SSH configuration and dependency installation

1. Ensure that SSH is not encrypted. SSHFS relies on SSH key pairs for password-less mounting. Locally generated key pairs need to be configured in advance (skip if any).

sshkeygen t ed25519

Upload the public key to the remote server

sshcopyid user@remote_host

Verify encrypted login

ssh user@remote_host

2. Install SSHFS and FUSE

Linux (Debian/Ubuntu) :
sudo apt update
sudo apt install sshfs fuse
Linux (CentOS/RHEL) :
sudo yum install epelrelease
sudo yum install sshfs fuse
macOS:
brew install macfuse sshfs

Windows:

1. Install WinFsp and SSHFSWin.

2. Mount the VM using the graphical tool or Powershell.

Permission configuration adds users to the fuse group to avoid sudo claims:

sudo usermod aG fuse $(whoami)

The re-login takes effect after the logout.

Third, the basic mount to achieve remote directory localization

1. Create a local mount point

mkdir ~/remote_data

2. Run the mount command

sshfs user@remote_host:/remote/path ~/remote_data o reconnect,ServerAliveInterval=15,allow_other

Parameter analysis:

o reconnect: indicates that the network automatically reconnects after a network interruption.

ServerAliveInterval=15: Checks the connection status every 15 seconds to prevent timeout disconnection.

allow_other: Allows other users to access the mount point (uncomment user_allow_other in /etc/fuse.conf).

3. Verify the mounting status

df h | grep remote_data

Example output:

user@remote_host:/remote/path  100G   50G   50G  50% /home/user/remote_data

The local ~/remote_data directory has been synchronized with the remote directory in real time.

Fourth, performance optimization and permission management

Improve speed and stability by adjusting parameters:

sshfs user@remote_host:/path ~/local_path o \
Ciphers=chacha20poly1305@openssh.com,Compression=no,\
cache=yes,\
kernel_cache,\
large_read,\
max_conns=10,\
uid=$(id u),gid=$(id g)

Encryption algorithm: Ciphers uses high-performance algorithms (such as chacha20) to reduce CPU overhead.

Cache policy: kernel_cache Enables the kernel cache to increase the read/write speed.

Number of connections: max_conns Adds parallel transmission channels to speed up large file operations.

To resolve permissions caused by inconsistent Uids/Gids between local and remote users:

sshfs user@remote_host:/path ~/local_path o uid=1000,gid=1000

To query a remote user UID:

ssh user@remote_host 'id u'

Automatic mounting at boot:

Edit /etc/fstab

user@remote_host:/remote/path /local/path fuse.sshfs  port=22,defaults,_netdev,uid=1000,gid=1000,IdentityFile=/home/user/.ssh/id_ed25519 0 0

Verify the configuration:

sudo mount a

5. Troubleshooting and security reinforcement

Common errors and fixes, such as mount failure:

Transport endpoint is not connected:

Force unmount and remount:

fusermount u ~/remote_data
sshfs ...

Lack of authority:

Permission denied:

Make sure the remote directory can be read and written, or add the allow_other option when mounting.

2. Security Best practices

To restrict SSH access to remote servers, configure sshd_config to limit the IP address range and command permissions:

Match Address 192.168.1.0/24
ForceCommand echo 'Allow mount operations only'

Use SSH proxy forwarding to avoid storing private keys locally:

sshadd ~/.ssh/id_ed25519
sshfs o IdentityAgent=~/.ssh/agent.sock user@host:/path ~/local_path

6. Alternatives and limitations of SSHFS

1. Performance comparison

rsync/scp: Suitable for single transfer, but cannot be synchronized in real time.

NFS/Samba: Higher performance but requires complex server configurations and firewall rules.

2. Limitations of SSHFS

Large file delay: When reading and writing large files frequently, the network delay may affect the experience.

Concurrency bottleneck: In high-concurrency scenarios, the performance is lower than that of dedicated file protocols.

With minimal configuration and seamless integration of the SSH ecosystem, SSHFS is a great tool for file management across systems. Whether it is developers debugging cloud code in real time, or operations and maintenance personnel unified management of distributed logs, it can be built through the above methods. SSHFS improves productivity and ensures data confidentiality and integrity. Mastering the use of SSHFS now can improve your productivity.

JTTI-COCO
JTTI-Ellis
JTTI-Selina
JTTI-Defl
JTTI-Eom