• 企业400电话
  • 网络优化推广
  • AI电话机器人
  • 呼叫中心
  • 全 部 栏 目

    网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    [Oracle] 如何使用触发器实现IP限制用户登录
    POST TIME:2021-10-18 22:14
    下面是一个触发器的例子:
    复制代码 代码如下:

    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.%‘)。
    下面看几个例子测试一下:
    1)从非允许IP地址登陆 (192.168.219.21),连接失败
    复制代码 代码如下:

    [oracle@lxdb2 ~]$ sqlplus epay_user@pri
    SQL*Plus: 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),连接成功
    复制代码 代码如下:

    [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, 2011, 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限制影响,连接成功
    复制代码 代码如下:

    [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, 2011, 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

    您可能感兴趣的文章:
    • 限制ip访问Oracle数据库的方法步骤
    上一篇:[Oracle] CPU/PSU补丁安装详细教程
    下一篇:[Oracle] 彻底搞懂Oracle字符集
  • 相关文章
  • 

    关于我们 | 付款方式 | 荣誉资质 | 业务提交 | 代理合作


    © 2016-2020 巨人网络通讯

    时间:9:00-21:00 (节假日不休)

    地址:江苏信息产业基地11号楼四层

    《增值电信业务经营许可证》 苏B2-20120278

    X

    截屏,微信识别二维码

    微信号:veteran88

    (点击微信号复制,添加好友)

     打开微信