加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

[Oracle] 如何使用触发器实现IP限制用户登录

发布时间:2020-12-12 16:56:08 所属栏目:百科 来源:网络整理
导读:下面是一个触发器的例子: div class="codetitle" a style="CURSOR: pointer" data="1649" class="copybut" id="copybut1649" onclick="doCopy('code1649')" 代码如下:div class="codebody" id="code1649" create or replace trigger logon_ip_control after

下面是一个触发器的例子:
<div class="codetitle"><a style="CURSOR: pointer" data="1649" class="copybut" id="copybut1649" onclick="doCopy('code1649')"> 代码如下:<div class="codebody" id="code1649">
create or replace trigger logon_ip_control
after logon on database
declare
ip STRING(30);
user STRING(30);
begin
SELECT SYS_CONTEXT('USERENV','SESSION_USER') into user from dual;
SELECT SYS_CONTEXT('USERENV','IP_ADDRESS') into ip from dual;
if user='EPAY_USER'
THEN
IF ip not in ('192.168.219.20','192.168.219.22')
THEN raise_application_error(-20001,'User '||user||' is not allowed to connect from '||ip);
END IF;
END IF;
end;
/

该触发器对用户EPAY_USER进行了IP限制(只允许'192.168.219.20','192.168.219.22',如果需要设置IP段,用%或?代替即可,如'192.168.219.%‘)。

<FONT style="COLOR: #ff0000">下面看几个例子测试一下:
1)从非允许IP地址登陆 (192.168.219.21),连接失败

<div class="codetitle"><a style="CURSOR: pointer" data="93363" class="copybut" id="copybut93363" onclick="doCopy('code93363')"> 代码如下:<div class="codebody" id="code93363">
[oracle@lxdb2 ~]$ sqlplus epay_user@pri
SQLPlus: Release 11.2.0.3.0 Production on Wed Jul 3 19:23:48 2013
Copyright (c) 1982,2011,Oracle. All rights reserved.
Enter password:
ERROR:
ORA-00604: error occurred at recursive SQL level 1
ORA-20001: User EPAY_USER is not allowed to connect from 192.168.219.21
ORA-06512: at line 10

2)从允许IP地址登陆(192.168.219.22),连接成功

<div class="codetitle"><a style="CURSOR: pointer" data="71336" class="copybut" id="copybut71336" onclick="doCopy('code71336')"> 代码如下:<div class="codebody" id="code71336">
[oracle@lxdb1 ~]$ sqlplus epay_user
SQL
Plus: Release 11.2.0.3.0 Production on Wed Jul 3 11:24:25 2013
Copyright (c) 1982,Oracle. All rights reserved.
Enter password:
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning,OLAP,Data Mining and Real Application Testing options

3)从本地登陆(192.168.219.23)不受IP限制影响,连接成功

<div class="codetitle"><a style="CURSOR: pointer" data="71336" class="copybut" id="copybut71336" onclick="doCopy('code71336')"> 代码如下:<div class="codebody" id="code71336">
[oracle@lxdb1 ~]$ sqlplus epay_user
SQL*Plus: Release 11.2.0.3.0 Production on Wed Jul 3 11:24:25 2013
Copyright (c) 1982,Data Mining and Real Application Testing options

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读