Quantcast
Channel: sshnet Discussions Rss Feed
Viewing all articles
Browse latest Browse all 1729

New Post: SSH Tunnel / Port Forwarding

$
0
0
I had the problem when I used that override:
public ForwardedPortLocal(uint boundPort, string host, uint port);
var port = new ForwardedPortLocal(27017, "127.0.0.1", 27017);
Instead, I used
var port = new ForwardedPortLocal("127.0.0.1", 27017, "127.0.0.1", 27017);
and forwarding started working.

Viewing all articles
Browse latest Browse all 1729

Trending Articles