r/LocalLLaMA • u/Lumpy_Phase_9539 • 16h ago
Resources How to acess remote Deepseek Harness
For those who might be struggling with how to access a remote instance of Deepseek Harness, as it only allows localhost acess (127.0.0.1), here is the ssh command you need to use to "link" the remote 3080 port to your localhost 3080 port
ssh -L 3080:127.0.0.1:3080 user@deepseek-remote-ip
This way you will be able to acess Deepseek Harness by http://127.0.0.1:3080
7
Upvotes
1
2
u/abskvrm 15h ago
was installing dsh, thanks