Oracle資料庫限制訪問IP
測試Oracle資料庫限制訪問IP
限制之前10.1.13.38、10.1.13.165可以遠端訪問10.1.13.151資料庫。
10.1.13.38
sqlplus username/***@10.1.13.151:port/instance_name SQL*Plus: Release 11.2.0.4.0 Production on Mon Jun 27 16:22:25 2022 Copyright (c) 1982, 2013, Oracle. All rights reserved. Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production SQL> exit
10.1.13.165 sqlplus username/***@10.1.13.151:port/instance_name SQL*Plus: Release 11.2.0.4.0 Production on Mon Jun 27 16:20:32 2022 Copyright (c) 1982, 2013, Oracle. All rights reserved. Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production SQL>
限制10.1.13.151資料庫IP訪問來源
cd $ORACLE_HOME/network/admin ls listener.ora listener.ora.bak samples shrept.lst tnsnames.ora tnsnames.ora.bak
vi sqlnet.ora
#開啟IP限制功能 tcp.validnode_checking=yes #允許訪問資料庫IP地址列表 tcp.invited_nodes(10.1.13.151,127.0.0.1,10.1.13.38,192.168.1.10)
重啟監聽
lsnrctl stop lsnrctl start lsnrctl reload
手動註冊監聽
sqlplus / as sysdba alter system register;
檢視監聽狀態
lsnrctl status
驗證
10.1.13.165無法遠端151資料庫
sqlplus username/***@10.1.13.151:port/instance_name SQL*Plus: Release 11.2.0.4.0 Production on Mon Jun 27 16:30:06 2022 Copyright (c) 1982, 2013, Oracle. All rights reserved. ERROR: ORA-12547: TNS:lost contact Enter user-name:
10.1.13.38可以遠端訪問151資料庫
sqlplus username/***@10.1.13.151:port/instance_name SQL*Plus: Release 11.2.0.4.0 Production on Mon Jun 27 16:32:27 2022 Copyright (c) 1982, 2013, Oracle. All rights reserved. Connected to: Oracle Database 19c Enterprise Edition Release 19.0.0.0.0 - Production SQL> exit
###chenjuchao 20230207###
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29785807/viewspace-2934240/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 如何限制ip訪問Oracle資料庫Oracle資料庫
- 限制特定IP訪問資料庫資料庫
- 觸發器限制指定IP訪問oracle資料庫觸發器Oracle資料庫
- 設定oracle資料庫IP訪問限制(IP白名單黑名單)Oracle資料庫
- 使用Oracle Net實現限制特定IP訪問資料庫Oracle資料庫
- 資料庫限制/允許某些IP訪問資料庫
- 【方法】如何限定IP訪問Oracle資料庫Oracle資料庫
- 如何限定IP訪問Oracle資料庫-轉Oracle資料庫
- 禁止某個IP訪問Oracle資料庫Oracle資料庫
- Oracle資料庫訪問限制繞過漏洞 解決Oracle資料庫
- 利用淘寶ip庫限制地區訪問
- Sqlserver限制賬戶在哪些ip下才可以訪問資料庫SQLServer資料庫
- .htaccess IP訪問限制
- nginx限制ip訪問(轉)Nginx
- Windows限制訪問指定IPWindows
- 限制訪問Oracle客戶端IP方法總結Oracle客戶端
- Oracle配置sqlnet.ora限制ip訪問[Oracle基礎]OracleSQL
- 3.2.4 開啟資料庫到限制訪問模式資料庫模式
- Oracle資料庫訪問控制Oracle資料庫
- [zhuan]linux限制IP訪問sshLinux
- Oracle資料庫訪問效能優化Oracle資料庫優化
- ORACLE 11g sqlnet.ora 設定限制IP 訪問OracleSQL
- oracle更改預設埠號,監聽器加密,限制ip訪問Oracle加密
- oracle 限定ip訪問Oracle
- 使用sqlnet.ora禁止特定IP訪問資料庫SQL資料庫
- 如何解決網站限制IP訪問的問題網站
- oracle透過trigger來限制使用者和ip連線資料庫的限制Oracle資料庫
- Oracle透明閘道器訪問SQLServer資料庫OracleSQLServer資料庫
- Oracle透明閘道器訪問MySQL資料庫OracleMySql資料庫
- 【LISTENER】使用sqlnet.ora禁止特定IP訪問資料庫SQL資料庫
- JDBC資料庫訪問JDBC資料庫
- Oracle資料鏈+同義詞+訪問遠端資料庫Oracle資料庫
- 限定client端IP訪問oracle!clientOracle
- 限定client段ip訪問oracle!clientOracle
- laravel 單使用者 單IP 頻次訪問限制Laravel
- 使用SQLNET.ora檔案限制Ip地址訪問SQL
- ubuntu下python通過sqlalchemy庫訪問oracle資料庫UbuntuPythonSQLOracle資料庫
- Windows 下JDBC 訪問Oracle11g 資料庫WindowsJDBCOracle資料庫