show checkpoint <CHECKPOINT-NAME>

Syntax

show checkpoint <CHECKPOINT-NAME> [json]

Description

Shows the configuration of a checkpoint.

Command context

Manager (#)

Parameters

checkpoint <CHECKPOINT-NAME>

Specifies checkpoint to be displayed. The checkpoint name can be alphanumeric. It can also contain underscores (_) and dashes (-).

[json]

Specifies that the output is displayed in JSON format.

Authority

Administrators

Examples

Showing the configuration of the ckpt1 checkpoint in non-JSON format:

switch# show checkpoint ckpt1
!Description: 'X1 project config with bgp'
!Version OpenSwitch 0.3.0-rc0 (Build: as7712-ops-0.3.0-rc0-release+2016082612)
!Schema version 0.1.8
hostname leaf07
logrotate period hourly
timezone set utc
ntp server 11.1.1.35
logging 11.0.1.11
!
!
!
!
vlan 1
    no shutdown
interface 30
    no shutdown
    ip address 12.20.27.2/30
interface 31
    no shutdown
    ip address 12.20.37.2/30
interface 32
    no shutdown
    ip address 12.20.47.2/30

Showing the configuration of the ckpt1 checkpoint in JSON format:

switch# show checkpoint ckpt1 json
Checkpoint configuration:
{
    "AAA_Server_Group": {
        "local": {
            "group_name": "local"
        },
        "none": {
            "group_name": "none"
        }
    },
...
...
...
...