


// define images directory relative to pwd if not defined in master.   
ifndef::imagesdir[:imagesdir: ../images]

.Show R1 Configuration
[source,json]
[%collapsible]
====
----
{
  "ietf-restconf:data": {
    "rtbrick-config:system": {
      "load-last-config": "true"
    },
    "rtbrick-config:interface": [
      {
        "name": "hostif-0/0/0",
        "host-if": "R1-2-C1"
      },
      {
        "name": "hostif-0/0/1",
        "host-if": "R1-3-C1"
      },
      {
        "name": "hostif-0/0/2",
        "host-if": "R1-14-R2",
        "unit": [
          {
            "unit-id": 10,
            "address": {
              "ipv4": [
                {
                  "prefix4": "192.0.2.85/30"
                }
              ],
              "ipv6": [
                {
                  "prefix6": "2001:db8::85/127"
                }
              ]
            }
          }
        ]
      },
      {
        "name": "hostif-0/0/3",
        "host-if": "R1-16-RR",
        "unit": [
          {
            "unit-id": 10,
            "address": {
              "ipv4": [
                {
                  "prefix4": "192.0.2.93/30"
                }
              ],
              "ipv6": [
                {
                  "prefix6": "2001:db8::93/127"
                }
              ]
            }
          }
        ]
      },
      {
        "name": "hostif-0/0/4",
        "host-if": "R1-15-SN"
      },
      {
        "name": "lag-3",
        "unit": [
          {
            "unit-id": 10,
            "address": {
              "ipv4": [
                {
                  "prefix4": "192.0.2.70/30"
                }
              ],
              "ipv6": [
                {
                  "prefix6": "2001:db8::70/127"
                }
              ]
            }
          }
        ]
      },
      {
        "name": "lo-0/0/0",
        "unit": [
          {
            "unit-id": 10,
            "address": {
              "ipv4": [
                {
                  "prefix4": "192.0.2.3/32"
                }
              ],
              "ipv6": [
                {
                  "prefix6": "2001:db8::3/128"
                }
              ]
            }
          }
        ]
      }
    ],
    "rtbrick-config:link-aggregation": {
      "interface": [
        {
          "interface-name": "lag-3",
          "mode": "lacp",
          "minimum-link-count": 1,
          "member-interface": [
            {
              "member-interface-name": "hostif-0/0/0"
            },
            {
              "member-interface-name": "hostif-0/0/1"
            }
          ]
        }
      ]
    },
    "rtbrick-config:instance": [
      {
        "name": "default",
        "protocol": {
          "isis": {
            "system-id": "1920.0000.2003",
            "area": [
              "49.0002/24"
              ],
            "interface": [
              {
                "name": "hostif-0/0/2/10",
                "type": "point-to-point",
                "ldp-synchronization": "enable",
                "level-2": {
                  "adjacency-disable": "true"
                }
              },
              {
                "name": "hostif-0/0/3/10",
                "type": "point-to-point",
                "ldp-synchronization": "enable",
                "level-2": {
                  "adjacency-disable": "true"
                }
              },
              {
                "name": "lag-3/10",
                "type": "point-to-point",
                "ldp-synchronization": "enable",
                "level-2": {
                  "adjacency-disable": "true"
                }
              },
              {
                "name": "lo-0/0/0/10",
                "type": "point-to-point",
                "passive": "true"
              }
            ]
          },
          "ldp": {
            "router-id": "192.0.2.3",
            "interface": [
              {
                "name": "hostif-0/0/2/10"
              },
              {
                "name": "hostif-0/0/3/10"
              },
              {
                "name": "lag-3/10"
              },
              {
                "name": "lo-0/0/0/10"
              }
            ]
          }
        }
      }
    ]
  }
}
----
====