0% found this document useful (0 votes)
385 views1 page

ORA-24247 Network Access Denied by Access Control List

This document provides steps to create and configure an access control list (ACL) to allow network access in Oracle. It first shows how to check existing ACLs, then create a new ACL called "utl_mail.xml" to allow mail to be sent. Next, it grants the "resolve" privilege to the ACL and assigns the ACL to all hosts using an asterisk wildcard.

Uploaded by

Jabras Guppies
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
385 views1 page

ORA-24247 Network Access Denied by Access Control List

This document provides steps to create and configure an access control list (ACL) to allow network access in Oracle. It first shows how to check existing ACLs, then create a new ACL called "utl_mail.xml" to allow mail to be sent. Next, it grants the "resolve" privilege to the ACL and assigns the ACL to all hosts using an asterisk wildcard.

Uploaded by

Jabras Guppies
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

ORA-24247: network access denied by access control list (ACL)"

==============================================================
Check existing ACL:
SELECT *
FROM dba_network_acls;
Create ACL:
begin
dbms_network_acl_admin.create_acl (
acl => 'utl_mail.xml',
description => 'Allow mail to be send',
principal => 'NGD',
is_grant => TRUE,
privilege => 'connect'
);
commit;
end;
/
Grant Privilege:
begin
dbms_network_acl_admin.add_privilege (
acl => 'utl_mail.xml',
principal => 'NGD',
is_grant => TRUE,
privilege => 'resolve'
);
commit;
end;
/
BEGIN
DBMS_NETWORK_ACL_ADMIN.ASSIGN_ACL (
acl => 'utl_mail.xml',
host => '*');
COMMIT;
END;
/

You might also like