apache如何禁止数据库表内的IP访问?
发布网友
发布时间:2022-04-08 22:45
我来回答
共1个回答
热心网友
时间:2022-04-09 00:14
只有通过审核的ip才能访问数据库,其他ip一律禁止访问数据库。
在oracle中可以通过sqlnet.ora文件的设置或者通过触发器可以实现对特定ip的*访问。
1、修改sqlnet.ora文件:
步骤:
a)测试在未设置前某一客户端的登录数据库情况:
C:\Documents and Settings\ThinkPad>sqlplusapp/app@uat17
SQL*Plus: Release 9.2.0.1.0 - Proction on Thu Aug 30 11:02:21 2012
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Proction
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> select name from v$database;
NAME
---------
PROD
SQL>