ORACLE限制IP登入
限制登入oracle的IP地址有兩種方法
一、編輯$ORACLE_HOME/network/admin/sqlnet.ora,增加
tcp.validnode_checking = yes
#tcp.invited_nodes=() #允許訪問的IP列表,各IP之間用逗號分隔
tcp.excluded_nodes=() #限制訪問的IP列表,個IP之間用逗號分隔
注意:
- 不能同時使用tcp.invited_nodes和tcp.excluded_nodes
- 只能指定具體的IP地址,不能指定IP段
- 只能限制TCP協議
- 需要重啟監聽生效
1、需求:限制IP 192.168.137.1登入
2、實現方式:
]> cd $ORACLE_HOME/network/admin
]> ls -l
total 16
drwxr-x--- 2 oracle oinstall 4096 Dec 30 11:37 samples
-rw-r----- 1 oracle oinstall 172 Dec 26 2003 shrept.lst
-rw-r--r-- 1 oracle oinstall 236 Dec 30 13:10 sqlnet.ora
-rw-r--r-- 1 oracle oinstall 347 Mar 25 21:22 tnsnames.ora
]> vi sqlnet.ora
# sqlnet.ora Network Configuration File: /oracle/app/10g/network/admin/sqlnet.ora
# Generated by Oracle configuration tools.
SQLNET.RECV_TIMEOUT = 0
SQLNET.EXPIRE_TIME = 0
SQLNET.SEND_TIMEOUT = 0
SQLNET.INBOUND_CONNECT_TIMEOUT = 0
tcp.validnode_checking = yes
#tcp.invited_nodes=()
tcp.excluded_nodes=(192.168.137.1)
]> lsnrctl stop
LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 15-JUN-2009 12:10:05
Copyright (c) 1991, 2005, Oracle. All rights reserved.
Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
The command completed successfully
]> lsnrctl start
LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 15-JUN-2009 12:10:17
Copyright (c) 1991, 2005, Oracle. All rights reserved.
Starting /oracle/app/10g/bin/tnslsnr: please wait...
TNSLSNR for Linux: Version 10.2.0.1.0 - Production
Log messages written to /oracle/app/10g/network/log/listener.log
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=oracle)(PORT=1521)))
Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
STATUS of the LISTENER
------------------------
Alias LISTENER
Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
Start Date 15-JUN-2009 12:10:17
Uptime 0 days 0 hr. 0 min. 0 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Log File /oracle/app/10g/network/log/listener.log
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=oracle)(PORT=1521)))
The listener supports no services
The command completed successfully
在192.168.137.1上登入,顯示
ORA-12547:TSN:丟失連線
二、使用觸發器
由於sqlnet.ora方式不支援IP段,對於某個IP段的限制,可以使用觸發器實現
1、需求:限制IP段 192.168.137登入
2、實現方式:
]> sqlplus / as sysdba
SQL*Plus: Release 10.2.0.1.0 - Production on Mon Jun 15 12:25:32 2009
Copyright (c) 1982, 2005, Oracle. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
>
> create or replace trigger chk_ip
2 after logon on scott.schema
3 declare
4 ipaddr VARCHAR2(30);
5 begin
6 select sys_context('userenv', 'ip_address') into ipaddr from dual;
7 if ipaddr like ('192.168.137.%') then
8 raise_application_error('-20001', 'you can not logon by scott');
9 end if;
10 end chk_ip;
11 /
Trigger created.
>
在192.168.137.1上登入,顯示:
ORA-00604: error occurred at recursive SQL level 1
ORA-20001: you can not logon by scott
ORA-06512: at line 6
[@more@]來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/22049049/viewspace-1023932/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- oracle 登陸限制ipOracle
- 透過TRIGGER限制IP登入
- Oracle9i 中如何限制登陸IPOracle
- 限制 ssh 從某些 IP 登入( authorized_keys )Zed
- ORACLE 10G使用SQLNET.ORA限制IP登陸Oracle 10gSQL
- oracle登陸限制指令碼Oracle指令碼
- mysql localhost登入和tcp/ip登入MySqllocalhostTCP
- oracle 限定某個IP或者某幾個IP可以登入的方法 。Oracle
- Oracle資料庫限制訪問IPOracle資料庫
- oracle如何找出登入會話v$session的IP地址?Oracle會話Session
- 如何限制ip訪問Oracle資料庫Oracle資料庫
- ORACLE 觸發器控制使用者登入之許可權限制Oracle觸發器
- shell禁止非法IP ssh登入
- Oracle登入命令Oracle
- oracle本地登入Oracle
- Oracle配置sqlnet.ora限制ip訪問[Oracle基礎]OracleSQL
- 設定oracle資料庫IP訪問限制(IP白名單黑名單)Oracle資料庫
- 限制訪問Oracle客戶端IP方法總結Oracle客戶端
- Unix中限制root遠端登入的方法(轉)
- SqlServer服務中利用觸發器對指定賬戶進行登入ip限制提升安全性SQLServer觸發器
- 如何檢視手機登入IP地址
- ssh禁止root登入及遮蔽指定ip
- Oracle登入指令碼Oracle指令碼
- 命令列登入Oracle命令列Oracle
- .htaccess IP訪問限制
- 觸發器限制指定IP訪問oracle資料庫觸發器Oracle資料庫
- 您的登入IP不在管理員配置的登入掩碼範圍內
- 解除Ubuntu系統的root登入圖形介面限制Ubuntu
- 資料庫的登入限制該怎麼實現?資料庫
- TRIGGER語法和建立一個限制IP登陸的triiger
- oracle使用者登陸失敗次數限制修改Oracle
- Oracle 登入觸發器Oracle觸發器
- 使用Oracle Net實現限制特定IP訪問資料庫Oracle資料庫
- nginx限制ip訪問(轉)Nginx
- Windows限制訪問指定IPWindows
- iis使用動態 IP 限制
- Laravel 登入失敗次數限制 等待時間遞增Laravel
- linux限制多人用同一個使用者登入Linux