PortForwardingL.cs :  » Network-Clients » SharpSSH » sharpSshTest » jsch_samples » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Network Clients » SharpSSH 
SharpSSH » sharpSshTest » jsch_samples » PortForwardingL.cs
using System;
using System.Windows.Forms;
using Tamir.SharpSsh.jsch;

/* PortForwardingL.cs
 * ====================================================================
 * The following example was posted with the original JSch java library,
 * and is translated to C# to show the usage of SharpSSH JSch API
 * ====================================================================
 * */
namespace sharpSshTest.jsch_samples{
  /// <summary>
  /// This program will demonstrate the port forwarding like option -L of
  /// ssh command; the given port on the local host will be forwarded to
  /// the given remote host and port on the remote side.
  /// You will be asked username, hostname, port:host:hostport and passwd. 
  /// If everything works fine, you will get the shell prompt.
  /// Try the port on localhost.
  /// </summary>
  public class PortForwardingL
  {
    public static void RunExample(String[] arg)
    {
      //int port;

      try
      {
        //Create a new JSch instance
        JSch jsch=new JSch();

        //Prompt for username and server host
        Console.WriteLine("Please enter the user and host info at the popup window...");
        String host = InputForm.GetUserInput
          ("Enter username@hostname",
          Environment.UserName+"@localhost");
        String user=host.Substring(0, host.IndexOf('@'));
        host=host.Substring(host.IndexOf('@')+1);

        //Create a new SSH session
        Session session=jsch.getSession(user, host, 22);

        //Get from user the local port, remote host and remote host port
        String foo = InputForm.GetUserInput("Enter -L port:host:hostport","port:host:hostport");
        int lport=int.Parse(foo.Substring(0, foo.IndexOf(':')));
        foo=foo.Substring(foo.IndexOf(':')+1);
        String rhost=foo.Substring(0, foo.IndexOf(':'));
        int rport=int.Parse(foo.Substring(foo.IndexOf(':')+1));

        // username and password will be given via UserInfo interface.
        UserInfo ui=new MyUserInfo();
        session.setUserInfo(ui);
        session.connect();

        Console.WriteLine("localhost:"+lport+" -> "+rhost+":"+rport);

        //Set port forwarding on the opened session
        session.setPortForwardingL(lport, rhost, rport);      
      }
      catch(Exception e)
      {
        Console.WriteLine(e.Message);
      }
    }

    /// <summary>
    /// A user info for getting user data
    /// </summary>
    public class MyUserInfo : UserInfo
    {
      /// <summary>
      /// Holds the user password
      /// </summary>
      private String passwd;

      /// <summary>
      /// Returns the user password
      /// </summary>
      public String getPassword(){ return passwd; }

      /// <summary>
      /// Prompt the user for a Yes/No input
      /// </summary>
      public bool promptYesNo(String str)
      {
        return InputForm.PromptYesNo(str);
      }
      
      /// <summary>
      /// Returns the user passphrase (passwd for the private key file)
      /// </summary>
      public String getPassphrase(){ return null; }

      /// <summary>
      /// Prompt the user for a passphrase (passwd for the private key file)
      /// </summary>
      public bool promptPassphrase(String message){ return true; }

      /// <summary>
      /// Prompt the user for a password
      /// </summary>\
      public bool promptPassword(String message)
      {
        passwd=InputForm.GetUserInput(message, true);
        return true;
      }

      /// <summary>
      /// Shows a message to the user
      /// </summary>
      public void showMessage(String message)
      {
        InputForm.ShowMessage(message);
      }
    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.