rw

Published November 13, 2024. v3

Introduction Oracle Analytics Platform

The Oracle Analytics platform comprises OAC (Oracle Analytics Cloud) and OAS (Oracle Analytics Server). It supports the efforts of every analytics user role. AI and ML are embedded throughout the platform to accelerate productivity and power better business decisions. Features include:

  • Data visualization and storytelling
  • Machine learning
  • Mobile analytics
  • Open data source connectivity
  • Data preparation and enrichment
  • Enterprise data modeling

OAC PLATFORM


About Zero Trust Packet Routing

This series provides best practices, architectural diagrams, and links to documentation for successfully deploying ZPR (Zero Trust Packet Routing) to secure Oracle Analytics resources such as OAS (Oracle Analytics Server) and OAC (Oracle Analytics Cloud), and the ADW (Autonomous Data Warehouse) resources they connect to.

Included in the series are the following posts:


Prerequisites

Following the guidance in this series requires:

  • An existing OCI tenancy.
  • Privileges to manage resources in the compartments secured with ZPR.
  • Privileges to manage ZPR policies in the tenancy.

Synopsis

The OCI Zero Trust Packet Routing documentation provides an excellent introduction and a short video.

ZPR helps to prevent unauthorized access to data by decoupling network security policies from the underlying network architecture. Using an easily understood and intent-based policy language, functional security administrators can define specific access pathways for data that build upon the foundation of network firewalls, route tables, and security lists managed by network administrators.

ZPR policies require the network administration components but take precedence over them. For example, security lists and route tables in a VCN (Virtual Cloud Network) may allow all resources in a subnet to connect to the resources in another subnet. ZPR policies can restrict access to only the resources explicitly assigned to ZPR security attributes referenced in a ZPR policy.
 

rw
Diagrams Foundation

This diagram depicts ZPR requiring and building upon an existing network security framework.

Foundation


Initial State

This diagram depicts an existing network security framework allowing network traffic from users through two gateways.

Initial


ZPR Secured State

This diagram depicts ZPR taking precedence over an existing network security framework and allowing network traffic from users through only one gateway.

Secured

rw
Explore More Explore more about Oracle Analytics by visiting the community, blogs, and library.
Explore more about ZPR and OCI
Explore Analytics Platform Features
rw
var coll = document.getElementsByClassName(“collapsible”); var i; for (i = 0; i < coll.length; i++) { coll[i].addEventListener("click", function() { this.classList.toggle("active"); var content = this.nextElementSibling; if (content.style.display === "block") { content.style.display = "none"; } else { content.style.display = "block"; } }); }