Starts a new outgoing tunnel. Connections to local endpoint will be tunneled through the SSH server to the specified remote host/port.

Namespace:  Rebex.Net
Assembly:  Rebex.SshShell (in Rebex.SshShell.dll)

Syntax

Visual Basic
Public Function StartOutgoingTunnel ( _
	localEndPoint As IPEndPoint, _
	targetHostName As String, _
	targetPort As Integer _
) As SshTunnel
C#
public SshTunnel StartOutgoingTunnel(
	IPEndPoint localEndPoint,
	string targetHostName,
	int targetPort
)

Parameters

localEndPoint
Type: System.Net..::..IPEndPoint
Local endpoint to listen at.
targetHostName
Type: System..::..String
Target hostname to which to tunnel connections.
targetPort
Type: System..::..Int32
Target port to which to tunnel connections.

Return Value

A tunnel instance.

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also