Access Control Lists(ACL's) , Configuration and Deconfiguration
In the world of oracle database, most of the DBA'S concentrate on Migration, Upgradation, replication and other database activities. Today, we will learn a new concept called Access Control List (ACL) which configures rules/regulation for database users to connect to external networks. Access Control List(ACL) is a fine-grained security mechanism. It is a list of access control entries to restrict the hosts that are allowed to connect to the Oracle database . From 11G, all external network access is blocked by default and can be enabled through Access Control List(ACL). High Level Steps in Configuring ACL --Create ACL --Assign Network access to ACL --Add Users to the ACL --Validate the ACL's which are created High Level steps for ACL Deconfiguration --Unassign network from ACL's Following are the steps for Create ACLs for public or HR schema: Create the ACL BEGIN DBMS_NETWORK_ACL_ADMIN.CREATE_ACL ( acl => 'hr_utl_http.xml', description => 'Allow mail'...