<PackageReference Include="SSH.NET" Version="2020.0.2" />

Renci.SshNet.ForwardedPortRemote

Provides functionality for remote port forwarding
namespace Renci.SshNet { public class ForwardedPortRemote : ForwardedPort, IDisposable { public IPAddress BoundHostAddress { get; } public string BoundHost { get; } public uint BoundPort { get; } public IPAddress HostAddress { get; } public string Host { get; } public uint Port { get; } public ForwardedPortRemote(IPAddress boundHostAddress, uint boundPort, IPAddress hostAddress, uint port); public ForwardedPortRemote(uint boundPort, string host, uint port); public ForwardedPortRemote(string boundHost, uint boundPort, string host, uint port); public void Dispose(); } }