> ## Documentation Index
> Fetch the complete documentation index at: https://altostrat.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List All Site Security Configurations

> Retrieves a list of all sites (tunnels) associated with your account and their current security policy attachments.



## OpenAPI

````yaml /api/en/utm-ips.yaml get /content/tunnel
openapi: 3.0.3
info:
  title: Altostrat UTM & IPS API
  version: 1.0.0
  description: >-
    Manage DNS filtering, BGP threat mitigation, content categories, and site
    policy attachment through the public `/content` gateway path.
servers:
  - url: https://v1.api.altostrat.io
security:
  - bearerAuth: []
tags:
  - name: DNS Content Filtering
    description: Manage DNS-based content filtering policies and their components.
  - name: BGP Threat Intelligence
    description: Manage BGP-based IP reputation policies and threat feeds.
  - name: Site Security Configuration
    description: View and manage security policy attachments for specific sites.
paths:
  /content/tunnel:
    get:
      tags:
        - Site Security Configuration
      summary: List All Site Security Configurations
      description: >-
        Retrieves a list of all sites (tunnels) associated with your account and
        their current security policy attachments.
      operationId: listSiteSecurityConfigurations
      responses:
        '200':
          description: A list of site security configurations.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SiteSecurityStatus'
components:
  schemas:
    SiteSecurityStatus:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: The unique identifier of the site.
          example: 9a9d3e6a-5c3a-4f1e-9a0a-2b2a1e1d8e8d
        ip_address:
          type: string
          format: ipv4
          description: The management IP address of the site's tunnel.
          example: 100.64.10.5
        policy_id:
          type: string
          format: uuid
          nullable: true
          description: The ID of the DNS policy attached to this site, if any.
        policy_name:
          type: string
          nullable: true
          description: The name of the attached DNS policy.
        dnr_policy_id:
          type: string
          format: uuid
          nullable: true
          description: The ID of the BGP policy attached to this site, if any.
        dnr_policy_name:
          type: string
          nullable: true
          description: The name of the attached BGP policy.
        dns_online:
          type: boolean
          description: The operational status of the DNS filtering service for this site.
        dnr_online:
          type: boolean
          description: The operational status of the BGP filtering service for this site.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````