[20160510]ssh端口隧道与转发.txt

简介: [20160510]ssh端口隧道与转发.txt --生产环境要实现一种特殊需求,B能连通A,C不能连通A,但是C可以连通B,要求实现C通过B来访问A. --想到了SSH隧道或者端口转发,自己做一个测试: 1.

[20160510]ssh端口隧道与转发.txt

--生产环境要实现一种特殊需求,B能连通A,C不能连通A,但是C可以连通B,要求实现C通过B来访问A.
--想到了SSH隧道或者端口转发,自己做一个测试:

1.环境:

A: 192.168.100.78  linux
B: 192.168.101.115 linux
C: 192.168.101.6   windows

2.测试:
--在A机器(192.168.100.78)上建立表TX,方便测试:

create table tx ( cr_date date);
insert  into tx values (sysdate);
commit;

SCOTT@book> select * from tx;
CR_DATE
-------------------
2016-05-09 16:08:09

-- 在C机器上的putty上配置机器B(192.168.101.116)的连接,在
-- connection=>ssh=>tunnels=>加入如下:

L1521 192.168.100.78:1521
R1529 192.168.100.78:1521

--连上B机器(192.168.101.115)后,注意不要退出.

--在c机器(192.168.101.6)上执行:
d:\tools\rlwrap>sqlplus scott/book@127.0.0.1:1521/book
sqlplus scott/book@127.0.0.1:1521/book
SQL*Plus: Release 12.1.0.1.0 Production on Tue May 10 08:02:25 2016
Copyright (c) 1982, 2013, Oracle.  All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SCOTT@127.0.0.1:1521/book> select * from tx;
CR_DATE
-------------------
2016-05-09 16:08:09

--测试通过C建立到A.

--另外我也启动远程端口1529,这样我可以在B机器(192.168.101.115)上执行:
$ rlsql scott/book@127.0.0.1:1529/book
SQL*Plus: Release 11.2.0.3.0 Production on Tue May 10 08:06:27 2016
Copyright (c) 1982, 2011, Oracle.  All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SCOTT@127.0.0.1:1529/book> select * from tx ;

CR_DATE
-------------------
2016-05-09 16:08:09


-- 这样虽然能实现连接,但是存在许多问题,首先c机器仅仅1台,其他机器无法连接,而且要先使用putty配置在连接192.168.101.115,在这
-- 个过程中不能断开. 总之问题多多,不是很实用.适合开发内部使用.

目录
相关文章
|
1月前
|
Java 数据库连接 网络安全
JDBC常用特性-SSH隧道连接
JDBC常用特性-SSH隧道连接
|
1月前
|
网络协议 Ubuntu Linux
解决ssh: connect to host IP port 22: Connection timed out报错(scp传文件指定端口)
解决 `ssh: connect to host IP port 22: Connection timed out` 报错涉及检查 SSH 服务状态、防火墙配置、网络连通性和主机名解析等多个方面。通过逐步排查上述问题,并在 `scp` 命令中正确指定端口,可以有效解决连接超时的问题,确保文件传输的顺利进行。希望本文提供的解决方案能帮助您快速定位并解决该错误。
205 3
|
1月前
|
运维 网络安全
解决ssh: connect to host IP port 22: Connection timed out报错(scp传文件指定端口)
通过这些步骤和方法,您可以有效解决“ssh: connect to host IP port 22: Connection timed out”问题,并顺利使用 `scp`命令传输文件。
691 7
|
7月前
|
安全 数据挖掘 Shell
SSH安全远程登录与端口转发
**SSH 概述**:SSH 是开发者必备工具,用于安全远程登录及文件传输。本文聚焦SSH的两大功能:**密钥登录**和**端口转发**。
175 0
|
5月前
|
网络协议 关系型数据库 MySQL
ssh端口转发
ssh端口转发
|
5月前
|
安全 Linux 网络安全
在Linux中,使用rsync同步数据时,假如采用的是ssh方式,并且目标机器的sshd端端并不是默认的22端口,该如何做?
在Linux中,使用rsync同步数据时,假如采用的是ssh方式,并且目标机器的sshd端端并不是默认的22端口,该如何做?
|
7月前
|
网络协议 Linux 网络安全
CentOS7增加或修改SSH端口号
CentOS7增加或修改SSH端口号
423 1
|
8月前
|
安全 Linux Shell
|
8月前
|
安全 Linux 网络安全
|
7月前
|
网络协议 Linux Shell
如何在 CentOS 中配置 SSH 服务的 TCP 端口转发
如何在 CentOS 中配置 SSH 服务的 TCP 端口转发
287 0

热门文章

最新文章