sábado, 20 de junio de 2020

CREACIÓN ACL ORACLE ACCESS LIST

CREACIÓN ACL

 

begin
      dbms_network_acl_admin.create_acl (
                                            acl         => 'utl_http.xml',
                                            description => 'HTTP Access',
                                            principal   => 'ORCL',
                                            is_grant    => TRUE,
                                            privilege   => 'connect',
                                            start_date  => null,
                                            end_date    => null
                                         );
commit;
End;
/


begin
      dbms_network_acl_admin.assign_acl (
                                          acl        => 'utl_http.xml',
                                          host       => '10.1.X.X',
                                          lower_port => 1,
                                          upper_port => 10000
                                         );
      commit;
 
end;
/


No hay comentarios: