[Oracle] Using triggers to restrict user logon by IP addresses

Source: Internet
Author: User

[Oracle] using a trigger to restrict user logon to Oracle is not as convenient as MySQL, and IP restrictions can be directly imposed on users. Oracle must implement user-level IP restrictions, you can use a trigger to achieve this. The following is an example of a trigger:

[sql] 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;  /  

 

This trigger imposes IP restrictions on the user EPAY_USER (only '192. 168.219.20 ', '192. 168.219.22' are allowed. If you need to set an IP segment, use % or? For example, '192. 192.% '). The following is a few examples to test: 1) the connection fails to log on from a non-permitted IP address (192.168.219.21 ).
[sql] [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) log on from the allowed IP address (192.168.219.22) and the connection is successful.
[sql] [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) login from the Local Machine (192.168.219.23) is not affected by IP restrictions, and the connection is successful.
[sql] [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  

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.