eygle.com   eygle.com
eygle.com eygle
eygle.com  
 

« 关于PARALLEL_MAX_SERVERS参数的设置 | Blog首页 | 繁忙的一周 装修的进展 »

Oracle的监听口令及监听器安全
modb.pro

Oracle的监听器一直以来都存在一个严重的安全问题,那就是:
如果不设置安全措施,那么能够访问的用户就可以远程关闭监听器。

类似如下操作:
D:\>lsnrctl stop eygle

LSNRCTL for 32-bit Windows: Version 10.2.0.3.0 - Production on 28-11月-2007 10:02:40

Copyright (c) 1991, 2006, Oracle.  All rights reserved.

正在连接到 (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=172.16.33.11)(PORT=1521))
(CONNECT_DATA=(SERVICE_NAME=eygle)))
命令执行成功

而此时缺省的监听器的日志还无法记录操作地址:
No longer listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=172.16.33.11)(PORT=1521)))
28-NOV-2007 09:59:20 * (CONNECT_DATA=(CID=(PROGRAM=)(HOST=)(USER=Administrator))(COMMAND=stop)
(ARGUMENTS=64)(SERVICE=eygle)(VERSION=169870080)) * stop * 0

这个问题由来已久,为了保证监听器的安全,最好为监听设置密码:
[oracle@jumper log]$ lsnrctl     

LSNRCTL for Linux: Version 9.2.0.4.0 - Production on 28-NOV-2007 10:18:17

Copyright (c) 1991, 2002, Oracle Corporation.  All rights reserved.

Welcome to LSNRCTL, type "help" for information.

LSNRCTL> set current_listener listener
Current Listener is listener
LSNRCTL> change_password
Old password:
New password:
Reenter new password:
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=172.16.33.11)(PORT=1521)))
Password changed for listener
The command completed successfully
LSNRCTL> set password
Password:
The command completed successfully
LSNRCTL> save_config
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=172.16.33.11)(PORT=1521)))
Saved LISTENER configuration parameters.
Listener Parameter File  /opt/oracle/product/9.2.0/network/admin/listener.ora
Old Parameter File  /opt/oracle/product/9.2.0/network/admin/listener.bak
The command completed successfully

设置密码之后,远程操作将会因确实密码而失败:
D:\>lsnrctl stop eygle

LSNRCTL for 32-bit Windows: Version 10.2.0.3.0 - Production on 28-11月-2007 10:22:57
Copyright (c) 1991, 2006, Oracle.  All rights reserved.

正在连接到 (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=172.16.33.11)
(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=eygle)))
TNS-01169: 监听程序尚未识别口令

此时在服务器端或客户端,都需要通过密码来起停监听器:
LSNRCTL> set password
Password:
The command completed successfully
LSNRCTL> stop
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=172.16.33.11)(PORT=1521)))
The command completed successfully
LSNRCTL> start
Starting /opt/oracle/product/9.2.0/bin/tnslsnr: please wait...

TNSLSNR for Linux: Version 9.2.0.4.0 - Production
System parameter file is /opt/oracle/product/9.2.0/network/admin/listener.ora
Log messages written to /opt/oracle/product/9.2.0/network/log/listener.log
Trace information written to /opt/oracle/product/9.2.0/network/trace/listener.trc
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=172.16.33.11)(PORT=1521)))

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=172.16.33.11)(PORT=1521)))
STATUS of the LISTENER
------------------------
Alias                    LISTENER
Version                  TNSLSNR for Linux: Version 9.2.0.4.0 - Production
Start Date                28-NOV-2007 10:22:23
Uptime                    0 days 0 hr. 0 min. 0 sec
Trace Level              support
Security                  ON
SNMP                      OFF
Listener Parameter File  /opt/oracle/product/9.2.0/network/admin/listener.ora
Listener Log File        /opt/oracle/product/9.2.0/network/log/listener.log
Listener Trace File      /opt/oracle/product/9.2.0/network/trace/listener.trc
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=172.16.33.11)(PORT=1521)))
Services Summary...
Service "eygle" has 1 instance(s).
  Instance "eygle", status UNKNOWN, has 1 handler(s) for this service...
Service "julia" has 1 instance(s).
  Instance "eygle", status UNKNOWN, has 1 handler(s) for this service...
The command completed successfully

此外,ADMIN_RESTRICTIONS参数也是一个重要的安全选项,我们可以在 listener.ora 文件中设置 ADMIN_RESTRICTIONS_<listener name> 为 ON,此后所有在运行时对监听器的修改都将被阻止,所有对监听器的修改都必须通过手工修改 listener.ora 文件来完成。

关于监听器安全参考文档:
Integrigy_Oracle_Listener_TNS_Security.pdf

-The End-


历史上的今天...
    >> 2018-11-28文章:
    >> 2011-11-28文章:
    >> 2010-11-28文章:
    >> 2008-11-28文章:
    >> 2006-11-28文章:
    >> 2005-11-28文章:

By eygle on 2007-11-28 11:54 | Comments (16) | FAQ | 1686 |

16 Comments

学习了。

真巧,昨天刚好研究了一下这个东西

:)之前是看过这个问题,在9i的版本下测试:能对远程的stop,但是做start不行。设置密码后,哪怕知道密码,也不能对远程监听做stop。
“此时在服务器端或客户端,都需要通过密码来起停监听器:”——这边,stop是要用密码,start监听不用密码吧?

这个在10g好象是不行了吧

好像有个问题,可以通过口令stop 监听,但是start 监听不需要任何密码?

我在10G下测试,密码不起作用

10g增强,已经不能通过远程来关闭监听器。

在10g上做了一些测试,挺怪的。
1、10g在不配置listener口令的情况下,默认是不允许通过客户端远程启动/停止服务器端监听的,会直接提示
TNS-01189: The listener could not authenticate the user
2、在服务器端配置了listener口令后,通过客户端stop/status都是正常的,但start的时候,会提示错误:
监听该对象时出错: (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xxx.xxx.xxx.xxx)(PORT
xxxx)))
TNS-12545: 因目标主机或对象不存在, 连接失败
TNS-12560: TNS: 协议适配器错误
TNS-00515: 因目标主机或对象不存在, 连接失败
32-bit Windows Error: 49: Unknown error
3、在服务器端配置了listener口令后,直接在服务器端启/停listener还是不需要设置口令的。

以上测试的第一点正如eygle所说,这是10g的增强。但第二、第三点就比较奇怪了,尤其是eygle说“此时在服务器端或客户端,都需要通过密码来起停监听器:”,确实是与我的测试结果不同。

在10g上测试,在服务器端配置了listener口令后,直接在服务器端启/停listener不需要设置口令就可以直接操作。请问eygle这个有什么问题

在9208上做了测试:
1、在服务器端配置了listener口令后,通过客户端stop/status都是正常的,但start的时候,会提示错误:
监听该对象时出错: (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=xxx.xxx.xxx.xxx)(PORT
xxxx)))
TNS-12545: 因目标主机或对象不存在, 连接失败
TNS-12560: TNS: 协议适配器错误
TNS-00515: 因目标主机或对象不存在, 连接失败
32-bit Windows Error: 49: Unknown error

解决:重新配置监听后就可以了

2、在服务器端配置了listener口令后,lsnrctl start不需要口令,lsnrctl stop需要口令。但是在10g中都不要口令。

终于测试好了,10g本来不需要口令,远程可以限制

LSNRCTL> status listener1
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=10.120.2.12)(PORT=1524))
)
TNS-01189: The listener could not authenticate the user
LSNRCTL>

我这个怎么远程不能访问?


CopyRight © 2004~2020 云和恩墨,成就未来!, All rights reserved.
数据恢复·紧急救援·性能优化 云和恩墨 24x7 热线电话:400-600-8755 业务咨询:010-59007017-7040 or 7037 业务合作: marketing@enmotech.com