Lines Matching full:ethz
8 import ch.ethz.ssh2.Connection;
9 import ch.ethz.ssh2.LocalPortForwarder;
51 /* Example Port Forwarding: -L 8080:www.ethz.ch:80 (OpenSSH notation)
55 * over the secure channel, and a connection is made to www.ethz.ch:80 from the remote
63 LocalPortForwarder lpf1 = conn.createLocalPortForwarder(8080, "www.ethz.ch", 80);
70 /* Example Port Forwarding: -R 127.0.0.1:8080:www.ganymed.ethz.ch:80 (OpenSSH notation)
76 * www.ganymed.ethz.ch:80 by the Ganymed SSH-2 library.
83 conn.requestRemotePortForwarding("127.0.0.1", 8080, "www.ganymed.ethz.ch", 80);
87 * to www.ganymed.ethz.ch:80. */
92 /* Stop accepting remote connections that are being forwarded to www.ganymed.ethz.ch:80 */
99 /* Stop accepting connections on 127.0.0.1:8080 that are being forwarded to www.ethz.ch:80 */