Skip to content

Commit

Permalink
updated mountssh to use aes128-ctr for SSH encryption
Browse files Browse the repository at this point in the history
  • Loading branch information
VectorCell committed Oct 1, 2021
1 parent 1dc6378 commit dde5ea3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/mountssh
Expand Up @@ -19,6 +19,6 @@ else
else
echo "mounting $mountdir ($server:$serverdir) ..."
#sudo sshfs ${user}@${server}:$serverdir $mountdir -o uid=$(id -u $user),gid=$(id -g $user),reconnect,allow_other,IdentityFile=/home/$user/.ssh/id_rsa
sudo sshfs ${user}@${server}:$serverdir $mountdir -o uid=$(id -u $user),gid=$(id -g $user),allow_other,IdentityFile=/home/$user/.ssh/id_rsa
sudo sshfs ${user}@${server}:$serverdir $mountdir -o uid=$(id -u $user),gid=$(id -g $user),allow_other,IdentityFile=/home/$user/.ssh/id_rsa,Ciphers=aes128-ctr,Compression=no
fi
fi
2 changes: 1 addition & 1 deletion scripts/mountssh-readonly
Expand Up @@ -18,6 +18,6 @@ else
echo "$mountdir already mounted, owned by $user"
else
echo "mounting $mountdir ($server:$serverdir) ..."
sudo sshfs ${user}@${server}:$serverdir $mountdir -o ro,uid=$(id -u $user),gid=$(id -g $user),allow_other,IdentityFile=/home/$user/.ssh/id_rsa
sudo sshfs ${user}@${server}:$serverdir $mountdir -o ro,uid=$(id -u $user),gid=$(id -g $user),allow_other,IdentityFile=/home/$user/.ssh/id_rsa,Ciphers=aes128-ctr,Compression=no
fi
fi

0 comments on commit dde5ea3

Please sign in to comment.