show tacacs-server

show tacacs-server

import json

"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'

myheaders={'content-type':'application/json'}
payload={
  "ins_api":{
  "version": "1.0",
  "type": "cli_show",
  "chunk": "0",
  "sid": "1",
  "input": "show tacacs-server",
  "output_format": "json"
}

response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)


{

  "ins_api": {
    "type": "cli_show",
    "version": "1.0",
    "sid": "eoc",
    "outputs": {
      "output": {
        "input": "show tacacs-server",
        "msg": "Success",
        "code": "200",
        "body": {
          "global_timeout": "5",
          "global_deadtime": "0",
          "global_source_intf": "any available",
          "server_count": "1",
          "TABLE_server": {
            "ROW_server": {
              "server_ip": "10.77.143.170",
              "port": "49",
              "secretKey": "********"
            }
          }
        }
      }
    }
  }
}

The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show tacacs-server command, see the CLI command reference:

http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

Note: This example was added in Cisco NX-OS Release 9.2(1).

CLI Output
Switch# show tacacs-server
timeout value:5
deadtime value:0
source interface:any available
total number of servers:1

following TACACS+ servers are configured:
        10.77.143.170:
                available on port:49
                TACACS+ shared secret:**










show tacacs-server directed-request

show tacacs-server directed-request

import json

"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'

myheaders={'content-type':'application/json'}
payload={
  "ins_api":{
  "version": "1.0",
  "type": "cli_show",
  "chunk": "0",
  "sid": "1",
  "input": "show tacacs-server directed-request",
  "output_format": "json"
}

response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)


{

  "ins_api": {
    "type": "cli_show",
    "version": "1.0",
    "sid": "eoc",
    "outputs": {
      "output": {
        "input": "show tacacs-server directed-request",
        "msg": "Success",
        "code": "200",
        "body": {
          "tacacs_directedRequest_status": "disabled"
        }
      }
    }
  }
}

The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show tacacs-server directed-request command, see the CLI command reference:

http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

Note: This example was added in Cisco NX-OS Release 9.2(1).

CLI Output
Switch# show tacacs-server directed-request
disabled















show tacacs-server groups

show tacacs-server groups

import json

"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'

myheaders={'content-type':'application/json'}
payload={
  "ins_api":{
  "version": "1.0",
  "type": "cli_show",
  "chunk": "0",
  "sid": "1",
  "input": "show tacacs-server groups",
  "output_format": "json"
}

response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)


{

  "ins_api": {
    "type": "cli_show",
    "version": "1.0",
    "sid": "eoc",
    "outputs": {
      "output": {
        "input": "show tacacs-server groups",
        "msg": "Success",
        "code": "200",
        "body": {
          "num_of_groups": "1",
          "TABLE_group": {
            "ROW_group": {
              "group_name": "tac1",
              "dead_time": "0",
              "vrf_name": "management",
              "TABLE_server": {
                "ROW_server": {
                  "server_ip": "10.77.143.170",
                  "port": "49"
                }
              }
            }
          }
        }
      }
    }
  }
}

The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show tacacs-server groups command, see the CLI command reference:

http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

Note: This example was added in Cisco NX-OS Release 9.2(1).

CLI Output
Switch# show tacacs-server groups
total number of groups:1

following TACACS+ server groups are configured:
        group tac1:
                server 10.77.143.170 on port 49
                deadtime is 0
                vrf is management













show tacacs-server groups tac1

show tacacs-server tac1

import json

"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'

myheaders={'content-type':'application/json'}
payload={
  "ins_api":{
  "version": "1.0",
  "type": "cli_show",
  "chunk": "0",
  "sid": "1",
  "input": "show tacacs-server tac1",
  "output_format": "json"
}

response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)


{

  "ins_api": {
    "type": "cli_show",
    "version": "1.0",
    "sid": "eoc",
    "outputs": {
      "output": {
        "input": "show tacacs-server groups  tac1",
        "msg": "Success",
        "code": "200",
        "body": {
          "TABLE_group": {
            "ROW_group": {
              "group_name": "tac1",
              "dead_time": "0",
              "vrf_name": "management",
              "TABLE_server": {
                "ROW_server": {
                  "server_ip": "10.77.143.170",
                  "port": "49"
                }
              }
            }
          }
        }
      }
    }
  }
}

The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show tacacs-server groups tac1 command, see the CLI command reference:

http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

Note: This example was added in Cisco NX-OS Release 9.2(1).

CLI Output
Switch# show tacacs-server groups  tac1
        group tac1:
                server 10.77.143.170 on port 49
                deadtime is 0
                vrf is management
















show tacacs-server sorted

show tacacs-server sorted

import json

"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'

myheaders={'content-type':'application/json'}
payload={
  "ins_api":{
  "version": "1.0",
  "type": "cli_show",
  "chunk": "0",
  "sid": "1",
  "input": "show tacacs-server sorted",
  "output_format": "json"
}

response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)


{

  "ins_api": {
    "type": "cli_show",
    "version": "1.0",
    "sid": "eoc",
    "outputs": {
      "output": {
        "input": "show tacacs-server sorted",
        "msg": "Success",
        "code": "200",
        "body": {
          "global_timeout": "5",
          "global_deadtime": "0",
          "global_source_intf": "any available",
          "server_count": "1",
          "TABLE_server": {
            "ROW_server": {
              "server_ip": "10.77.143.170",
              "port": "49",
              "secretKey": "********"
            }
          }
        }
      }
    }
  }
}

The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show tacacs-server sorted command, see the CLI command reference:

http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

Note: This example was added in Cisco NX-OS Release 9.2(1).

CLI Output
Switch# show tacacs-server sorted
timeout value:5
deadtime value:0
source interface:any available
total number of servers:1

following TACACS+ servers are configured:
        10.77.143.170:
                available on port:49
                TACACS+ shared secret:**







show tacacs-server statistics 10.77.143.170

show tacacs-server statistics 10.77.143.170

import json

"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'

myheaders={'content-type':'application/json'}
payload={
  "ins_api":{
  "version": "1.0",
  "type": "cli_show",
  "chunk": "0",
  "sid": "1",
  "input": "show tacacs-server statistics 10.77.143.170",
  "output_format": "json"
}

response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)


{

  "ins_api": {
    "type": "cli_show",
    "version": "1.0",
    "sid": "eoc",
    "outputs": {
      "output": {
        "input": "show tacacs-server statistics 10.77.143.170",
        "msg": "Success",
        "code": "200",
        "body": {
          "server_state": "not monitored",
          "acct_statistics": {
            "acct_failed_transactions": "0",
            "acct_succ_transactions": "0",
            "acct_req_sent": "0",
            "acct_req_timedout": "0",
            "acct_resp_no_match": "0",
            "acct_resp_not_processed": "0",
            "acct_resp_error": "0"
          },
          "autho_statistics": {
            "autho_failed_transactions": "0",
            "autho_succ_transactions": "0",
            "autho_req_sent": "0",
            "autho_req_timedout": "0",
            "autho_resp_no_match": "0",
            "autho_resp_not_processed": "0",
            "autho_resp_error": "0"
          },
          "auth_statistics": {
            "auth_failed_transactions": "0",
            "auth_succ_transactions": "0",
            "auth_req_sent": "0",
            "auth_req_timedout": "0",
            "auth_resp_no_match": "0",
            "auth_resp_not_processed": "0",
            "auth_resp_error": "0"
          }
        }
      }
    }
  }
}

The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show tacacs-server statistics 10.77.143.170 command, see the CLI command reference:

http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

Note: This example was added in Cisco NX-OS Release 9.2(1).

CLI Output
Switch# show tacacs-server statistics 10.77.143.170
Server is not monitored

Authentication Statistics
        failed transactions: 0
        successful transactions: 0
        requests sent: 0
        requests timed out: 0
        responses with no matching requests: 0
        responses not processed: 0
        responses containing errors: 0

Authorization Statistics
        failed transactions: 0
        successful transactions: 0
        requests sent: 0
        requests timed out: 0
        responses with no matching requests: 0
        responses not processed: 0
        responses containing errors: 0

Accounting Statistics
        failed transactions: 0
        successful transactions: 0
        requests sent: 0
        requests timed out: 0
        responses with no matching requests: 0
        responses not processed: 0
        responses containing errors: 0





show tacacs-server 10.77.143.170

show tacacs-server 10.77.143.170

import json

"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'

myheaders={'content-type':'application/json'}
payload={
  "ins_api":{
  "version": "1.0",
  "type": "cli_show",
  "chunk": "0",
  "sid": "1",
  "input": "show tacacs-server 10.77.143.170",
  "output_format": "json"
}

response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)


{

  "ins_api": {
    "type": "cli_show",
    "version": "1.0",
    "sid": "eoc",
    "outputs": {
      "output": {
        "input": "show tacacs-server 10.77.143.170",
        "msg": "Success",
        "code": "200",
        "body": {
          "host1": "10.77.143.170",
          "tac_port": "49",
          "tac_shared_key": "********",
          "tac_idle_time": "0",
          "test_user_name": "test",
          "test_pwd": "********"
        }
      }
    }
  }
}

The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show tacacs-server 10.77.143.170 command, see the CLI command reference:

http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

Note: This example was added in Cisco NX-OS Release 9.2(1).

CLI Output
Switch# show tacacs-server 10.77.143.170
        10.77.143.170:
                available on port:49
                TACACS+ shared secret:**
                idle time:0
                test user:test
                test password:**