show system internal

Shows data stored in the specified database in JSON format.

Syntax

show system internal {{ cdb | sdb| psdb } keypath }

Parameters

cdb
Specifies data in the config database.
sdb
Specifies data in the state database.
psdb
Specifies data in the persistent state database.
keypath
Specifies a YANG-compliant path.

Modes

Usage Guidelines

Depending on selected Database type and provided keypath, configured data will be showed in JSON format.

If the command is run with a keypath where data is not present in database, a “No Data” message is displayed.

Examples

The following example shows internal config database information for route maps.

 NPB# show system internal cdb /routemaps 

key /routemaps 

{ 

  "routemap": [ 

   { 

    "name": "rm1", 

    "routemap-instances": { 

     "routemap-instance": [ 

      { 

       "config": { 

        "egress-group": "est", 

        "ipv4-acl": "acl1", 

        "permit-deny": true 

       }, 

       "sequence-id": 10 

      } 

     ] 

    } 

   }