{# CUI // SP-CTI #} {% extends "network/base.html" %} {% block title %}Connectivity Reference — NDC{% endblock %} {% block head %} {% endblock %} {% block content %}
Connectivity Matrix
On-Prem → Cloud
Cloud → Cloud
DoD / SCCA
{# ── Tab 1: Connectivity Matrix ── #}

Services, compliance levels, and SOP links for each CSP × connectivity type combination.

{% for csp_key in csps %} {% set csp_data = matrix.get(csp_key, {}) %} {% for conn_type in ['dedicated_private','ipsec_vpn','hub_transit','sdwan_overlay','cloud_exchange'] %} {% set cell = csp_data.get(conn_type, {}) %} {% endfor %} {% endfor %}
CSP Dedicated Private IPSec VPN Hub / Transit SD-WAN Overlay Cloud Exchange
{{ csp_key | upper }} {% if cell %}
{{ cell.service_abbrev or cell.service or '—' }}
{% for cl in (cell.compliance_levels or []) %} {{ cl | upper | replace('_',' ') }} {% endfor %}
{% if cell.dod_bcap_compatible %}
✓ BCAP
{% endif %} {% for t in (cell.sop_titles or [])[:1] %} 📋 {{ t[:40] }}{% if t|length > 40 %}…{% endif %} {% endfor %}
{% else %}
{% endif %}
{# ── Tab 2: On-Prem → Cloud ── #}
Select CSP
Connectivity Type
Patterns sourced from SCCA FRD and CSP reference architectures.
Select a CSP and type to view pattern details.
{# ── Tab 3: Cloud → Cloud ── #}
Available cross-cloud connectivity patterns
Select source and destination CSPs.
{# ── Tab 4: DoD / SCCA ── #}

SCCA Traffic Flow — NIPRNet to Mission Workload

All DoD cloud traffic flows through this mandatory boundary: NIPRNet → BCAP → VDSS inspection → VDMS monitoring → Mission VPC/VNet/VCN.

{% set flow = scca_flow.get('components', []) %} {% for comp in flow %}
{% if comp.key == 'nipernet' %}🌐 {% elif comp.key == 'bcap' %}🔒 {% elif comp.key == 'vdss' %}🛡 {% elif comp.key == 'vdms' %}📊 {% else %}⚡ {% endif %}
{{ comp.label }}
{{ comp.frd_ref or '' }}
{% if not loop.last %}
{% endif %} {% endfor %}

SCCA Component Details

{% for comp in flow %} {% if comp.key not in ('nipernet',) %}

{{ comp.label }}

{{ comp.frd_ref or '' }}

{{ comp.description or '' }}

{% if comp.csp_services %}
{% for csp_key, svc in comp.csp_services.items() %} {{ csp_key | upper }}: {{ svc }} {% endfor %}
{% endif %}
{% endif %} {% endfor %}

DoD/SCCA SOPs

{% if resiliency_tiers %}

Resiliency Tiers

{% for tier_key, tier in resiliency_tiers.items() %}
{{ tier.label or tier_key }}
{{ tier.description or '' }}
{% if tier.sla %}
SLA: {{ tier.sla }}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}