Skip to content

ATNoG/rigourous-onboarding-tools

Repository files navigation

RIGOUROUS Onboarding Tools

Diagram

Installation

Prerequisites

Steps

  1. Build the project
docker build -t nmtd .
  1. Run the project
docker run -e OPENSLICE_HOST=<YOUR_OPENSLICE_HOST_AND_PORT> -e SO_HOST=<YOUR_SECURITY_ORCHESTRATOR_HOST_AND_PORT> -e LOG_LEVEL=<LOG_LEVEL> nmtd

OpenSlice Service Characteristics

NMTD and Mutation characteristics

The NMTD component affects services with characteristics prefixed by Mutation:: and mutates the value of the characteristic whose name follows that prefix, e.g. Mutation::Port would define the necessary information to rotate the Port characteristic. The former characteristic would follow the format:

{
    "name": "Mutation::Port",
    "serviceSpecCharacteristicValue": [
    {
        "value": {
            "value": "min", // min, max, random, inactive
            "alias": "interval"
        },
        "value": {
            "value": "0",
            "alias": "valueFrom"
        },
        "value": {
            "value": "60",
            "alias": "valueTo"
        },
        "value": {
            "value": "[80, 8080, 10000-11000]",
            "alias": ""
        }
    }
    ]
}

While the latter could look like:

{
    "name": "Port",
    "serviceSpecCharacteristicValue": [
    {
        "value": {
            "value": "80",
            "alias": ""        
        }
    }
    ]
}

OpenSlice LCM Supervision rules would be used to update the underlying network services when these characteristics are updated (as is already done with Helm-based services in OpenSlice).

Risk Specification characteristics

For services to have their risk specification updated, there needs to be a characteristic named CPE containing the Common Platform Enumeration of the base application. Then, by using the /risk endpoint, the Privacy score and Risk score characteristics of services matching the provided CPE will be updated.

Risk Specification:

{
    "cpe": "cpe:2.3:a:free5gc:free5gc:3.2.1:*:*:*:*:*:*:*",
    "privacy_score": 7.8,
    "risk_score": 4.4
}

UMU Security Orchestrator integration (WIP)

Requires OpenSlice "After Activation" LCM rules to send the MSPL policies to the /osl/<service_order_id> endpoint of this component, where <service_order_id> is the ID of the Service Order. The Security Orchestrator would then translate the MSPL policies into final configurations for OpenSlice Catalog services (envisioned policies to be supported are Firewall, SIEM, Telemetry, and Channel Protection MSPL).

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages