I know that since SMB is not secure, opening port 445 on firewall makes your computer vulnerable. To secure my connection, I want to run a SMB mobile app via SSH. Would I still need to open port 445 on my router to enable SMB? Would my host computer be protected by running SMB over SSH?
Asked
Active
Viewed 1.2k times
1 Answers
4
Here is a simpler solution which is suitable if local filesystem sharing is not necessary:
- https://superuser.com/a/1001889/507477
- configure SSH access over internet to a server/router which has network access to the necessary SMB server.
- When connecting to the SSH server, define port forwarding from local port 445 to the SMB server IP, port 445.
- access the SMB server share via
\\localhost
If local file sharing is necessary, a more difficult but achievable way is described here - http://www.nikhef.nl/~janjust/CifsOverSSH/Win8Loopback.html
Dmitrii Sutiagin
- 331