/* * Copyright 2010 netling project <http://netling.org> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package examples.ssh; import java.io.IOException; import java.net.InetSocketAddress; import org.netling.ssh.SSHClient; import org.netling.ssh.connection.channel.forwarded.RemotePortForwarder.Forward; import org.netling.ssh.connection.channel.forwarded.SocketForwardingConnectListener; /** * This example demonstrates remote port forwarding i.e. when the remote host is made to listen on a specific address * and port; and forwards us incoming connections. */ public class RemotePortForwarding { public static void main(String... args) throws IOException { SSHClient client = new SSHClient(); client.loadKnownHosts(); client.connect("localhost"); try { client.authPublickey(System.getProperty("user.name")); /* * We make _server_ listen on port 8080, which forwards all connections to us as a channel, and we further * forward all such channels to google.com:80 */ client.getRemotePortForwarder().bind( // where the server should listen new Forward(8080), // what we do with incoming connections that are forwarded to us new SocketForwardingConnectListener(new InetSocketAddress("google.com", 80) )); client.getTransport() .setHeartbeatInterval(30); // Something to hang on to so that the forwarding stays client.getTransport().join(); } finally { client.disconnect(); } } }