2YWEFx0dz5aIcFhqGr5OgM changeset

Changeset613737393939 (b)
ParentNone (a)
ab
0+#!/usr/bin/env python
0+# -*- encoding: utf-8 -*-
0+import paramiko
0+
0+ssh_server = '192.168.1.1'
0+ssh_user = 'sshuser'
0+ssh_port = 22
0+passwd = 'sshpasswd'
0+port_to_forward = 8000
0+vnc_port = 5900
0+
0+ssh = paramiko.SSHClient()
0+ssh.load_system_host_keys()
0+ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
0+ssh.connect(ssh_server, port=ssh_port, username=ssh_user, password=passwd)
0+t = ssh.get_transport()
0+t.request_port_forward('', port_to_forward)
0+t.open_forwarded_tcpip_channel((ssh_server, port_to_forward), ('localhost', vnc_port))
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--- Revision None
+++ Revision 613737393939
@@ -0,0 +1,18 @@
+#!/usr/bin/env python
+# -*- encoding: utf-8 -*-
+import paramiko
+
+ssh_server = '192.168.1.1'
+ssh_user = 'sshuser'
+ssh_port = 22
+passwd = 'sshpasswd'
+port_to_forward = 8000
+vnc_port = 5900
+
+ssh = paramiko.SSHClient()
+ssh.load_system_host_keys()
+ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
+ssh.connect(ssh_server, port=ssh_port, username=ssh_user, password=passwd)
+t = ssh.get_transport()
+t.request_port_forward('', port_to_forward)
+t.open_forwarded_tcpip_channel((ssh_server, port_to_forward), ('localhost', vnc_port))