[Yandex Cloud documentation](../../index.md) > [Yandex Cloud Interconnect](../index.md) > [Step-by-step guides](index.md) > Getting information about trunk links

# Getting information about trunk links

{% note info %}

You need the [cic.viewer](../security/index.md#cic-viewer) role to run this operation.

{% endnote %}

{% list tabs group=instructions %}

- Management console {#console}

  1. In the [management console](https://console.yandex.cloud), click ![layout-side-content-left](../../_assets/console-icons/layout-side-content-left.svg) or ![chevron-down](../../_assets/console-icons/chevron-down.svg) in the top panel and select the [folder](../../resource-manager/concepts/resources-hierarchy.md#folder).
  1. [Navigate](../../console/operations/select-service.md#select-service) to **Cloud Interconnect**.
  1. In the left-hand panel, select ![pipeline](../../_assets/console-icons/pipeline.svg) **Trunk connections**. The window that opens will list all trunks in the selected folder.
  1. To view detailed information about a specific trunk, click its row in the list. The window that opens provides the following information:

      * On the ![flag](../../_assets/console-icons/flag.svg) **Overview** tab: General trunk info, i.e., name, ID, status, capacity, type, point of presence, Cloud Interconnect partner, and transceiver type.
      * On the ![nodes-left](../../_assets/console-icons/nodes-left.svg) **Private connections** tab: List of [private connections](../concepts/priv-con.md) within this trunk.
      * On the ![globe](../../_assets/console-icons/globe.svg) **Public connections** tab: List of [public connections](../concepts/pub-con.md) within this trunk.
      * On the ![display-pulse](../../_assets/console-icons/display-pulse.svg) **Monitoring** tab: Yandex Monitoring [widgets](../../monitoring/concepts/visualization/widget.md) used to track the trunk's status.
      * On the ![list-check](../../_assets/console-icons/list-check.svg) **Operations** tab: List of [operations](../../api-design-guide/concepts/about-async.md) with the trunk.

- CLI {#cli}

  1. To get information about [trunks](../concepts/trunk.md), see the description of the CLI command:

      ```bash
      yc cic trunk get --help
      ```

  1. Get a list of trunks in the specified folder:

      ```bash
      yc cic trunk list --folder-id b1gt6g8ht345********
      ```

      Result:




  1. Get information about the trunk by specifying its ID obtained in the previous step:

      ```bash
      yc cic trunk get cf3dcodot14p********
      ```

      Result:



      Where:

      * `id`: Trunk ID.
      * `name`: Trunk name.
      * `description`: Trunk description.
      * `cloud_id`: ID of the cloud in whose folder the trunk was created.
      * `folder_id`: ID of the cloud folder containing the trunk.
      * `region_id`: Region of the cloud containing the trunk.
      * Trunk type:
        * `single_port_direct_joint`: Direct trunk:
           * `transceiver_type`: [Transceiver](../concepts/transceivers.md) type in use.
           * `port_name`: Port number(s) allocated for the trunk on the network device.
           * `access_device_name`: Name of the network device with ports allocated for the trunk.
        * `lag_direct_joint`: Aggregated (LAG) direct trunk:
           * `transceiver_type`: [Transceiver](../concepts/transceivers.md) type in use.
           * `lag_id`: Aggregated connection ID.
           * `port_names`: List of physical ports in the LAG.
        * `partner_joint_info`: Partner trunk:
           * `partner_id`: Partner ID.
           * `service_key`: Partner trunk service key.
      * `point_of_presence_id`: [Point of presence](../concepts/pops.md) ID.
      * `capacity`: Trunk [capacity](../concepts/capacity.md). 
      * `status`: Trunk state. Target state: `ACTIVE`.
      * `created_at`: Date and time of trunk creation.

{% endlist %}