simnos 2.1.2__tar.gz → 2.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (86) hide show
  1. {simnos-2.1.2 → simnos-2.2.0}/PKG-INFO +1 -1
  2. {simnos-2.1.2 → simnos-2.2.0}/pyproject.toml +3 -3
  3. {simnos-2.1.2 → simnos-2.2.0}/simnos/core/nos.py +9 -0
  4. simnos-2.2.0/simnos/plugins/nos/platforms_yaml/aruba_aoscx.yaml +504 -0
  5. simnos-2.2.0/simnos/plugins/nos/platforms_yaml/cisco_apic.yaml +41 -0
  6. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/cisco_ios.yaml +393 -0
  7. simnos-2.2.0/simnos/plugins/nos/platforms_yaml/cisco_viptela.yaml +100 -0
  8. simnos-2.2.0/simnos/plugins/nos/platforms_yaml/cisco_wlc_ssh.yaml +711 -0
  9. simnos-2.2.0/simnos/plugins/nos/platforms_yaml/edgecore.yaml +254 -0
  10. simnos-2.2.0/simnos/plugins/nos/platforms_yaml/extreme_slxos.yaml +70 -0
  11. simnos-2.2.0/simnos/plugins/nos/platforms_yaml/oneaccess_oneos.yaml +1857 -0
  12. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/paloalto_panos.yaml +17 -52
  13. simnos-2.2.0/simnos/plugins/nos/platforms_yaml/watchguard_firebox.yaml +30 -0
  14. simnos-2.2.0/simnos/plugins/nos/platforms_yaml/zte_zxros.yaml +430 -0
  15. {simnos-2.1.2 → simnos-2.2.0}/README.md +0 -0
  16. {simnos-2.1.2 → simnos-2.2.0}/simnos/__init__.py +0 -0
  17. {simnos-2.1.2 → simnos-2.2.0}/simnos/core/__init__.py +0 -0
  18. {simnos-2.1.2 → simnos-2.2.0}/simnos/core/host.py +0 -0
  19. {simnos-2.1.2 → simnos-2.2.0}/simnos/core/pydantic_models.py +0 -0
  20. {simnos-2.1.2 → simnos-2.2.0}/simnos/core/servers.py +0 -0
  21. {simnos-2.1.2 → simnos-2.2.0}/simnos/core/simnos.py +0 -0
  22. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/__init__.py +0 -0
  23. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/__init__.py +0 -0
  24. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_py/__init__.py +0 -0
  25. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_py/arista_eos.py +0 -0
  26. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_py/base_template.py +0 -0
  27. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_py/cisco_ios.py +0 -0
  28. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_py/configurations/arista_eos.yaml.j2 +0 -0
  29. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_py/configurations/cisco_ios.yaml.j2 +0 -0
  30. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_py/configurations/huawei_smartax.yaml.j2 +0 -0
  31. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_py/huawei_smartax.py +0 -0
  32. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_py/templates/arista_eos/show_clock.j2 +0 -0
  33. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_py/templates/arista_eos/show_ip_int_br.j2 +0 -0
  34. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_py/templates/arista_eos/show_running-config.j2 +0 -0
  35. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_py/templates/arista_eos/show_version.j2 +0 -0
  36. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_py/templates/cisco_ios/show_running-config.j2 +0 -0
  37. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_py/templates/cisco_ios/show_version.j2 +0 -0
  38. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_py/templates/huawei_smartax/display_board.j2 +0 -0
  39. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/alcatel_aos.yaml +0 -0
  40. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/alcatel_sros.yaml +0 -0
  41. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/allied_telesis_awplus.yaml +0 -0
  42. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/arista_eos.yaml +0 -0
  43. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/aruba_os.yaml +0 -0
  44. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/avaya_ers.yaml +0 -0
  45. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/avaya_vsp.yaml +0 -0
  46. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/broadcom_icos.yaml +0 -0
  47. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/brocade_fastiron.yaml +0 -0
  48. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/brocade_netiron.yaml +0 -0
  49. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/checkpoint_gaia.yaml +0 -0
  50. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/ciena_saos.yaml +0 -0
  51. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/cisco_asa.yaml +0 -0
  52. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/cisco_ftd.yaml +0 -0
  53. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/cisco_nxos.yaml +0 -0
  54. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/cisco_s300.yaml +0 -0
  55. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/cisco_xr.yaml +0 -0
  56. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/dell_force10.yaml +0 -0
  57. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/dell_powerconnect.yaml +0 -0
  58. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/dlink_ds.yaml +0 -0
  59. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/eltex.yaml +0 -0
  60. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/ericsson_ipos.yaml +0 -0
  61. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/extreme_exos.yaml +0 -0
  62. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/fortinet.yaml +0 -0
  63. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/hp_comware.yaml +0 -0
  64. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/hp_procurve.yaml +0 -0
  65. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/huawei_smartax.yaml +0 -0
  66. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/huawei_vrp.yaml +0 -0
  67. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/ipinfusion_ocnos.yaml +0 -0
  68. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/juniper_junos.yaml +0 -0
  69. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/juniper_screenos.yaml +0 -0
  70. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/linux.yaml +0 -0
  71. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/mikrotik_routeros.yaml +0 -0
  72. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/ruckus_fastiron.yaml +0 -0
  73. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/ubiquiti_edgerouter.yaml +0 -0
  74. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/ubiquiti_edgeswitch.yaml +0 -0
  75. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/vyatta_vyos.yaml +0 -0
  76. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/yamaha.yaml +0 -0
  77. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/nos/platforms_yaml/zyxel_os.yaml +0 -0
  78. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/servers/__init__.py +0 -0
  79. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/servers/ssh_server_paramiko.py +0 -0
  80. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/servers/tap_io.py +0 -0
  81. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/servers/telnet_server.py +0 -0
  82. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/shell/__init__.py +0 -0
  83. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/shell/cmd_shell.py +0 -0
  84. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/shell/utils.py +0 -0
  85. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/utils/__init__.py +0 -0
  86. {simnos-2.1.2 → simnos-2.2.0}/simnos/plugins/utils/cli.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: simnos
3
- Version: 2.1.2
3
+ Version: 2.2.0
4
4
  Summary: Simulated Network Operating System
5
5
  Keywords: NetworkAutomation,Testing,SSH,Integration,NOS
6
6
  Author: KeroRoute lab
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "simnos"
3
- version = "2.1.2"
3
+ version = "2.2.0"
4
4
  description = "Simulated Network Operating System"
5
5
  authors = [
6
6
  { name = "KeroRoute lab" },
@@ -88,7 +88,7 @@ dummy-variable-rgx = "^_.*"
88
88
  "S603", # Allow subprocess calls in tests (e.g. docker compose)
89
89
  "S607", # Allow starting a process with a partial executable path in tests
90
90
  ]
91
- "update_platforms.py" = [
91
+ "sync_ntc_commands.py" = [
92
92
  "S108", # Probably insecure usage of temp file/directory - this is a script
93
93
  "S603", # Use of subprocess without shell=True - this is a script
94
94
  "S607", # Starting a process with a partial executable path - this is a script
@@ -98,7 +98,7 @@ dummy-variable-rgx = "^_.*"
98
98
  force-sort-within-sections = true
99
99
 
100
100
  [tool.bandit]
101
- exclude_dirs = ["./tests/", "./.venv", "./docs/", "./update_platforms.py"]
101
+ exclude_dirs = ["./tests/", "./.venv", "./docs/", "./sync_ntc_commands.py"]
102
102
  tests = ["B201", "B301"]
103
103
  skips = ["B101", "B601"]
104
104
 
@@ -17,6 +17,7 @@ available_platforms: list[str] = [
17
17
  "alcatel_sros",
18
18
  "allied_telesis_awplus",
19
19
  "arista_eos",
20
+ "aruba_aoscx",
20
21
  "aruba_os",
21
22
  "avaya_ers",
22
23
  "avaya_vsp",
@@ -25,18 +26,23 @@ available_platforms: list[str] = [
25
26
  "brocade_netiron",
26
27
  "checkpoint_gaia",
27
28
  "ciena_saos",
29
+ "cisco_apic",
28
30
  "cisco_asa",
29
31
  "cisco_ftd",
30
32
  "cisco_ios",
31
33
  "cisco_nxos",
32
34
  "cisco_s300",
35
+ "cisco_viptela",
36
+ "cisco_wlc_ssh",
33
37
  "cisco_xr",
34
38
  "dell_force10",
35
39
  "dell_powerconnect",
36
40
  "dlink_ds",
41
+ "edgecore",
37
42
  "eltex",
38
43
  "ericsson_ipos",
39
44
  "extreme_exos",
45
+ "extreme_slxos",
40
46
  "fortinet",
41
47
  "hp_comware",
42
48
  "hp_procurve",
@@ -47,12 +53,15 @@ available_platforms: list[str] = [
47
53
  "juniper_screenos",
48
54
  "linux",
49
55
  "mikrotik_routeros",
56
+ "oneaccess_oneos",
50
57
  "paloalto_panos",
51
58
  "ruckus_fastiron",
52
59
  "ubiquiti_edgerouter",
53
60
  "ubiquiti_edgeswitch",
54
61
  "vyatta_vyos",
62
+ "watchguard_firebox",
55
63
  "yamaha",
64
+ "zte_zxros",
56
65
  "zyxel_os",
57
66
  ]
58
67
 
@@ -0,0 +1,504 @@
1
+ name: aruba_aoscx
2
+ initial_prompt: '{base_prompt}>'
3
+ enable_prompt: '{base_prompt}#'
4
+ config_prompt: '{base_prompt}(config)#'
5
+ commands:
6
+ enable:
7
+ output: null
8
+ new_prompt: '{base_prompt}#'
9
+ help: enter enable mode
10
+ prompt: '{base_prompt}>'
11
+ show aaa authentication port-access interface all client-status:
12
+ output: "Port Access Client Status Details\n\nClient 90:4c:81:cf:10:30, ap-0148-0125\n============================\n \
13
+ \ Session Details\n ---------------\n Port : 2/1/15\n Session Time : 5340956s\n IPv4 Address : \n\
14
+ \ IPv6 Address : \n\n Authentication Details\n ----------------------\n Status : mac-auth Authenticated\n\
15
+ \ Auth Precedence : mac-auth - Authenticated, dot1x - Not attempted\n\n Authorization Details\n ----------------------\n\
16
+ \ Role : dur_cx_ap-3116-4\n Status : Applied\n \
17
+ \ \n\nClient 90:4c:81:cf:0e:ec, ap-0148-0114\n============================\n Session Details\n ---------------\n\
18
+ \ Port : 1/1/4\n Session Time : 5340964s\n IPv4 Address : \n IPv6 Address : \n\n Authentication\
19
+ \ Details\n ----------------------\n Status : mac-auth Authenticated\n Auth Precedence : mac-auth -\
20
+ \ Authenticated, dot1x - Not attempted\n\n Authorization Details\n ----------------------\n Role : dur_cx_ap-3116-4\n\
21
+ \ Status : Applied\n\n \nClient 20:a6:cd:cf:6d:16,\
22
+ \ ap-0148-0111\n============================\n Session Details\n ---------------\n Port : 1/1/1\n Session\
23
+ \ Time : 5340969s\n IPv4 Address : \n IPv6 Address : \n\n Authentication Details\n ----------------------\n\
24
+ \ Status : mac-auth Authenticated\n Auth Precedence : mac-auth - Authenticated, dot1x - Not attempted\n\
25
+ \n Authorization Details\n ----------------------\n Role : dur_cx_ap-3116-4\n Status : Applied\n\n\nClient\
26
+ \ 90:4c:81:cf:1c:98, ap-0148-0123 \n============================\n Session Details\n ---------------\n\
27
+ \ Port : 2/1/13\n Session Time : 5340966s\n IPv4 Address : \n IPv6 Address : \n\n Authentication\
28
+ \ Details\n ----------------------\n Status : mac-auth Authenticated\n Auth Precedence : mac-auth -\
29
+ \ Authenticated, dot1x - Not attempted\n\n Authorization Details\n ----------------------\n Role : dur_cx_ap-3116-4\n\
30
+ \ Status : Applied\n\n\nClient 90:4c:81:cf:0e:f4, ap-0148-0122\n============================ \
31
+ \ \n Session Details\n ---------------\n Port : 2/1/12\n Session Time : 5340964s\n \
32
+ \ IPv4 Address : \n IPv6 Address : \n\n Authentication Details\n ----------------------\n Status :\
33
+ \ mac-auth Authenticated\n Auth Precedence : mac-auth - Authenticated, dot1x - Not attempted\n\n Authorization Details\n\
34
+ \ ----------------------\n Role : dur_cx_ap-3116-4\n Status : Applied\n\n\nClient 90:4c:81:cf:1b:ac, ap-0148-0115\n\
35
+ ============================\n Session Details \n ---------------\n \
36
+ \ Port : 1/1/5\n Session Time : 5340962s\n IPv4 Address : \n IPv6 Address : \n\n Authentication\
37
+ \ Details\n ----------------------\n Status : mac-auth Authenticated\n Auth Precedence : mac-auth -\
38
+ \ Authenticated, dot1x - Not attempted\n\n Authorization Details\n ----------------------\n Role : dur_cx_ap-3116-4\n\
39
+ \ Status : Applied\n\n\nClient 90:4c:81:cf:1c:7e, ap-0148-0112\n============================\n Session Details\n\
40
+ \ --------------- \n Port : 1/1/2\n Session Time : 5340965s\n\
41
+ \ IPv4 Address : \n IPv6 Address : \n\n Authentication Details\n ----------------------\n Status \
42
+ \ : mac-auth Authenticated\n Auth Precedence : mac-auth - Authenticated, dot1x - Not attempted\n\n Authorization\
43
+ \ Details\n ----------------------\n Role : dur_cx_ap-3116-4\n Status : Applied\n\n\nClient 90:4c:81:cf:10:9a,\
44
+ \ ap-0148-0121\n============================\n Session Details\n ---------------\n Port : 2/1/11 \
45
+ \ \n Session Time : 5340961s\n IPv4 Address : \n IPv6 Address : \n\n Authentication\
46
+ \ Details\n ----------------------\n Status : mac-auth Authenticated\n Auth Precedence : mac-auth -\
47
+ \ Authenticated, dot1x - Not attempted\n\n Authorization Details\n ----------------------\n Role : dur_cx_ap-3116-4\n\
48
+ \ Status : Applied\n\n\nClient 90:4c:81:cf:0f:8e, ap-0148-0120\n============================\n Session Details\n\
49
+ \ ---------------\n Port : 2/1/10\n Session Time : 5340960s \n \
50
+ \ IPv4 Address : \n IPv6 Address : \n\n Authentication Details\n ----------------------\n Status :\
51
+ \ mac-auth Authenticated\n Auth Precedence : mac-auth - Authenticated, dot1x - Not attempted\n\n Authorization Details\n\
52
+ \ ----------------------\n Role : dur_cx_ap-3116-4\n Status : Applied\n\n\nClient 90:4c:81:cf:10:ee, ap-0148-0113\n\
53
+ ============================\n Session Details\n ---------------\n Port : 1/1/3\n Session Time : 5340966s\n\
54
+ \ IPv4 Address : \n IPv6 Address : \n\n Authentication Details\n\
55
+ \ ----------------------\n Status : mac-auth Authenticated\n Auth Precedence : mac-auth - Authenticated,\
56
+ \ dot1x - Not attempted\n\n Authorization Details\n ----------------------\n Role : dur_cx_ap-3116-4\n Status\
57
+ \ : Applied\n\n\nClient 00:20:85:e1:6e:4e, ups-0148-0003\n============================\n Session Details\n ---------------\n\
58
+ \ Port : 2/1/48\n Session Time : 5342401s\n IPv4 Address : \n IPv6 Address : \
59
+ \ \n\n Authentication Details\n ----------------------\n Status : mac-auth Authenticated\n\
60
+ \ Auth Precedence : mac-auth - Authenticated, dot1x - Not attempted\n\n Authorization Details\n ----------------------\n\
61
+ \ Role : dur_cx_ups-3128-4\n Status : Applied\n\n\nClient 90:4c:81:cf:0f:10, ap-0148-0118\n============================\n\
62
+ \ Session Details\n ---------------\n Port : 1/1/8\n Session Time : 5340968s\n IPv4 Address : \n\
63
+ \ IPv6 Address : \n \n Authentication Details\n ----------------------\n\
64
+ \ Status : mac-auth Authenticated\n Auth Precedence : mac-auth - Authenticated, dot1x - Not attempted\n\
65
+ \n Authorization Details\n ----------------------\n Role : dur_cx_ap-3116-4\n Status : Applied\n\n\nClient\
66
+ \ 90:4c:81:cf:0f:5c, ap-0148-0117\n============================\n Session Details\n ---------------\n Port \
67
+ \ : 1/1/7\n Session Time : 5340969s\n IPv4 Address : \n IPv6 Address : \n\n Authentication Details \
68
+ \ \n ----------------------\n Status : mac-auth Authenticated\n Auth\
69
+ \ Precedence : mac-auth - Authenticated, dot1x - Not attempted\n\n Authorization Details\n ----------------------\n\
70
+ \ Role : dur_cx_ap-3116-4\n Status : Applied\n\n\nClient 90:4c:81:cf:1c:92, ap-0148-0126\n============================\n\
71
+ \ Session Details\n ---------------\n Port : 2/1/16\n Session Time : 5340964s\n IPv4 Address : \n\
72
+ \ IPv6 Address : \n\n Authentication Details\n ---------------------- \n\
73
+ \ Status : mac-auth Authenticated\n Auth Precedence : mac-auth - Authenticated, dot1x - Not attempted\n\
74
+ \n Authorization Details\n ----------------------\n Role : dur_cx_ap-3116-4\n Status : Applied\n\n\nClient\
75
+ \ 90:4c:81:cf:1c:74, ap-0148-0116\n============================\n Session Details\n ---------------\n Port \
76
+ \ : 1/1/6\n Session Time : 5340965s\n IPv4 Address : \n IPv6 Address : \n\n Authentication Details\n \
77
+ \ ----------------------\n Status : mac-auth Authenticated \n Auth Precedence : mac-auth\
78
+ \ - Authenticated, dot1x - Not attempted\n\n Authorization Details\n ----------------------\n Role : dur_cx_ap-3116-4\n\
79
+ \ Status : Applied\n\n\nClient 90:4c:81:cf:0f:e6, ap-0148-0124\n============================\n Session Details\n\
80
+ \ ---------------\n Port : 2/1/14\n Session Time : 5340965s\n IPv4 Address : \n IPv6 Address :\
81
+ \ \n\n Authentication Details\n ----------------------\n Status : mac-auth Authenticated\n Auth Precedence\
82
+ \ : mac-auth - Authenticated, dot1x - Not attempted\n\n Authorization Details\n ----------------------\n Role \
83
+ \ : dur_cx_ap-3116-4\n Status : Applied\n\n\nClient 90:4c:81:cf:10:1c, ap-0148-0119\n============================\n\
84
+ \ Session Details\n ---------------\n Port : 2/1/9\n Session Time : 5340964s\n IPv4 Address : \n\
85
+ \ IPv6 Address : \n\n Authentication Details\n ----------------------\n Status : mac-auth Authenticated\n\
86
+ \ Auth Precedence : mac-auth - Authenticated, dot1x - Not attempted\n \
87
+ \ \n Authorization Details\n ----------------------\n Role : dur_cx_ap-3116-4\n Status\
88
+ \ : Applied"
89
+ help: execute the command "show aaa authentication port-access interface all client-status"
90
+ prompt: &id001
91
+ - '{base_prompt}>'
92
+ - '{base_prompt}#'
93
+ show arp all-vrfs:
94
+ output: 'IPv4 Address MAC Port Physical Port State VRF
95
+
96
+ ------------------------------------------------------------------------------------------------------------------
97
+
98
+ 172.25.0.185 d4:e8:80:af:05:7f 1/1/28 1/1/28 reachable default
99
+
100
+ 172.25.0.189 d4:e8:80:af:04:7f 2/1/28 2/1/28 reachable default
101
+
102
+ Total Number Of ARP Entries Listed- 2.
103
+
104
+ ------------------------------------------------------------------------------------------------------------------'
105
+ help: execute the command "show arp all-vrfs"
106
+ prompt: *id001
107
+ show bfd all-vrfs:
108
+ output: 'Admin status: enabled
109
+
110
+ Echo source IP: <none>
111
+
112
+ Statistics:
113
+
114
+ Total number of control packets transmitted: 4200050
115
+
116
+ Total number of control packets received: 4540241
117
+
118
+ Total number of control packets dropped: 0
119
+
120
+ Session Interface VRF Source IP Destination IP Echo State Protocol
121
+
122
+ ------- --------- --------- --------------------------------------- --------------------------------------- --------
123
+ ------------ ------------
124
+
125
+ 1 2/1/28 default 172.25.0.190 172.25.0.189 enabled up bgp
126
+
127
+ 2 1/1/28 default 172.25.0.186 172.25.0.185 enabled up bgp
128
+
129
+ '
130
+ help: execute the command "show bfd all-vrfs"
131
+ prompt: *id001
132
+ show bgp all-vrfs all summary:
133
+ output: "VRF : default\nBGP Summary\n-----------\n Local AS : 4290020685 BGP Router Identifier : 192.168.100.1\n\
134
+ \ Peers : 4 Log Neighbor Changes : No\n Cfg. Hold Time : 180 Cfg. Keep\
135
+ \ Alive : 60\n\nAddress-family : IPv4 Unicast\n-----------------------------\n Neighbor Remote-AS MsgRcvd\
136
+ \ MsgSent Up/Down Time State AdminStatus\n 10.252.13.2 4290020685 0 0 00h:00m:00s Idle \
137
+ \ Up\n 172.25.0.1 4290000000 116314 133774 02m:02w:06d Established Up\n\nAddress-family : IPv6 Unicast\n\
138
+ -----------------------------\n\nAddress-family : L2VPN EVPN\n-----------------------------\n Neighbor Remote-AS\
139
+ \ MsgRcvd MsgSent Up/Down Time State AdminStatus\n 172.18.174.17 4290000000 116310 133770 02m:02w:06d\
140
+ \ Established Up\n 172.18.174.18 4290000000 116310 133742 02m:02w:06d Established Up"
141
+ help: execute the command "show bgp all-vrfs all summary"
142
+ prompt: *id001
143
+ show interface:
144
+ output: "Interface 1/1/1 is up \n Admin state is up\n Link transitions: 1\n Description: \n Hardware: Ethernet, MAC Address:\
145
+ \ 88:3a:30:97:d0:80 \n MTU 9198 \n Type SFP+DAC1\n Full-duplex \n qos trust none\n Speed 10000 Mb/s \n Auto-negotiation\
146
+ \ is off\n Flow-control: off \n Error-control: off \n Rx\n 2417650 total packets 457274611 total bytes\n\
147
+ \ 0 unicast packets\n 1831055 multicast packets\n 586595 broadcast packets\n \
148
+ \ 0 errors 0 dropped\n 0 CRC/FCS\n Tx\n 116722501 total packets 8432615310\
149
+ \ total bytes\n 0 unicast packets\n 116722496 multicast packets\n 5 broadcast packets\n\
150
+ \ 0 errors 14 dropped\n 0 collision\n\nInterface 1/1/2 is down \n Admin\
151
+ \ state is up\n State information: No XCVR installed\n Link transitions: 0\n Description: \n Hardware: Ethernet, MAC\
152
+ \ Address: 88:3a:30:97:d0:7e \n MTU 9198 \n Type --\n Full-duplex \n qos trust none\n Speed 0 Mb/s \n Auto-negotiation\
153
+ \ is on\n Flow-control: off \n Error-control: off \n Rx\n 0 total packets 0 total bytes\n\
154
+ \ 0 unicast packets\n 0 multicast packets \n 0 broadcast\
155
+ \ packets\n 0 errors 0 dropped\n 0 CRC/FCS\n Tx\n 0 total\
156
+ \ packets 0 total bytes\n 0 unicast packets\n 0 multicast packets\n \
157
+ \ 0 broadcast packets\n 0 errors 14 dropped\n 0 collision\n\
158
+ \nInterface 1/1/3 is down \n Admin state is up\n State information: No XCVR installed\n Link transitions: 0\n Description:\
159
+ \ \n Hardware: Ethernet, MAC Address: 88:3a:30:97:d0:7c \n MTU 1500 \n Type --\n Full-duplex \n qos trust none\n Speed\
160
+ \ 0 Mb/s \n Auto-negotiation is on\n Flow-control: off \n Error-control: off \n VLAN Mode: access\n Access VLAN: 1\n\
161
+ \ Rx\n 0 total packets 0 total bytes\n 0 unicast packets\n 0 \
162
+ \ multicast packets\n 0 broadcast packets\n 0 errors 0 dropped\n\
163
+ \ 0 CRC/FCS\n Tx\n 0 total packets 0 total bytes\n 0 unicast packets\n\
164
+ \ 0 multicast packets\n 0 broadcast packets\n 0 errors \
165
+ \ 0 dropped\n 0 collision\n\nInterface 1/1/4 is down \n Admin state is up\n State information: No XCVR\
166
+ \ installed\n Link transitions: 0 \n Description: \n Hardware: Ethernet, MAC\
167
+ \ Address: 88:3a:30:97:d0:7a \n MTU 1500 \n Type --\n Full-duplex \n qos trust none\n Speed 0 Mb/s \n Auto-negotiation\
168
+ \ is on\n Flow-control: off \n Error-control: off \n VLAN Mode: access\n Access VLAN: 1\n Rx\n 0 total packets\
169
+ \ 0 total bytes\n 0 unicast packets\n 0 multicast packets\n \
170
+ \ 0 broadcast packets\n 0 errors 0 dropped\n 0 CRC/FCS\n Tx\n \
171
+ \ 0 total packets 0 total bytes\n 0 unicast packets\n 0 multicast\
172
+ \ packets\n 0 broadcast packets\n 0 errors 0 dropped\n \
173
+ \ 0 collision\n\nInterface 1/1/5 is down \n Admin state is up\n State information: No XCVR installed\n Link transitions:\
174
+ \ 0\n Description: \n Hardware: Ethernet, MAC Address: 88:3a:30:97:d0:78 \n MTU 1500 \n Type --\n Full-duplex \n qos\
175
+ \ trust none\n Speed 0 Mb/s \n Auto-negotiation is on\n Flow-control: off \n Error-control: off \n VLAN Mode: access\n\
176
+ \ Access VLAN: 1\n Rx\n 0 total packets 0 total bytes\n 0 unicast packets\
177
+ \ \n 0 multicast packets\n 0 broadcast packets\n \
178
+ \ 0 errors 0 dropped\n 0 CRC/FCS\n Tx\n 0 total packets \
179
+ \ 0 total bytes\n 0 unicast packets\n 0 multicast packets\n 0 broadcast\
180
+ \ packets\n 0 errors 0 dropped\n 0 collision\n\nInterface 1/1/6 is down\
181
+ \ \n Admin state is up\n State information: No XCVR installed\n Link transitions: 0\n Description: \n Hardware: Ethernet,\
182
+ \ MAC Address: 88:3a:30:97:d0:76 \n MTU 1500 \n Type --\n Full-duplex \n qos trust none\n Speed 0 Mb/s \n Auto-negotiation\
183
+ \ is on\n Flow-control: off \n Error-control: off \n VLAN Mode: access\n Access VLAN: 1\n Rx\n 0 total packets\
184
+ \ 0 total bytes\n 0 unicast packets\n 0 multicast packets\n \
185
+ \ 0 broadcast packets\n 0 errors 0 dropped\n 0 CRC/FCS\n Tx\n \
186
+ \ 0 total packets 0 total bytes\n 0 unicast packets\n 0 multicast\
187
+ \ packets\n 0 broadcast packets\n 0 errors 0 dropped\n \
188
+ \ 0 collision\n\nInterface 1/1/7 is down \n Admin state is up\n State information: No XCVR installed \
189
+ \ \n Link transitions: 0\n Description: \n Hardware: Ethernet, MAC Address: 88:3a:30:97:d0:74 \n MTU 1500\
190
+ \ \n Type --\n Full-duplex \n qos trust none\n Speed 0 Mb/s \n Auto-negotiation is on\n Flow-control: off \n Error-control:\
191
+ \ off \n VLAN Mode: access\n Access VLAN: 1\n Rx\n 0 total packets 0 total bytes\n \
192
+ \ 0 unicast packets\n 0 multicast packets\n 0 broadcast packets\n 0 errors\
193
+ \ 0 dropped\n 0 CRC/FCS\n Tx\n 0 total packets 0\
194
+ \ total bytes\n 0 unicast packets\n 0 multicast packets\n 0 broadcast packets\n\
195
+ \ 0 errors 0 dropped\n 0 collision\n\nInterface 1/1/8 is down \n Admin\
196
+ \ state is up\n State information: No XCVR installed\n Link transitions: 0\n Description: \n Hardware: Ethernet, MAC\
197
+ \ Address: 88:3a:30:97:d0:72 \n MTU 1500 \n Type --\n Full-duplex \n qos trust none\n Speed 0 Mb/s \n Auto-negotiation\
198
+ \ is on\n Flow-control: off \n Error-control: off \n VLAN Mode: access\n Access VLAN: 1\n Rx\n 0 total packets\
199
+ \ 0 total bytes \n 0 unicast packets\n 0 multicast packets\n \
200
+ \ 0 broadcast packets\n 0 errors 0 dropped\n 0 CRC/FCS\n Tx\n \
201
+ \ 0 total packets 0 total bytes\n 0 unicast packets\n 0 multicast\
202
+ \ packets\n 0 broadcast packets\n 0 errors 0 dropped\n \
203
+ \ 0 collision\n\nInterface 1/1/9 is down \n Admin state is up\n State information: No XCVR installed\n Link transitions:\
204
+ \ 0\n Description: \n Hardware: Ethernet, MAC Address: 88:3a:30:97:d0:70 \n MTU 1500 \n Type --\n Full-duplex \n qos\
205
+ \ trust none\n Speed 0 Mb/s \n Auto-negotiation is on\n Flow-control: off \n Error-control: off \n VLAN Mode: access\n\
206
+ \ Access VLAN: 1\n Rx\n 0 total packets 0 total bytes\n 0 unicast packets\n\
207
+ \ 0 multicast packets\n 0 broadcast packets\n 0 errors \
208
+ \ 0 dropped\n 0 CRC/FCS\n Tx\n 0 total packets 0 total bytes\n \
209
+ \ 0 unicast packets\n 0 multicast packets\n 0 broadcast packets\n 0 errors \
210
+ \ 0 dropped\n 0 collision\n\nInterface 1/1/10 is down \n Admin state is up \
211
+ \ \n State information: No XCVR installed\n Link transitions: 0\n Description:\
212
+ \ \n Hardware: Ethernet, MAC Address: 88:3a:30:97:d0:6e \n MTU 1500 \n Type --\n Full-duplex \n qos trust none\n Speed\
213
+ \ 0 Mb/s \n Auto-negotiation is on\n Flow-control: off \n Error-control: off \n VLAN Mode: access\n Access VLAN: 1\n\
214
+ \ Rx\n 0 total packets 0 total bytes\n 0 unicast packets\n 0 \
215
+ \ multicast packets\n 0 broadcast packets\n 0 errors 0 dropped\n\
216
+ \ 0 CRC/FCS\n Tx\n 0 total packets 0 total bytes\n 0 unicast packets\n\
217
+ \ 0 multicast packets\n 0 broadcast packets\n 0 errors \
218
+ \ 0 dropped\n 0 collision\n\nInterface 1/1/11 is down \n Admin state is up\n State information: No XCVR\
219
+ \ installed\n Link transitions: 0\n Description: \n Hardware: Ethernet, MAC Address: 88:3a:30:97:d0:6c \n MTU 1500 \n\
220
+ \ Type --\n Full-duplex \n qos trust none\n Speed 0 Mb/s \n Auto-negotiation is on\n Flow-control: off \n Error-control:\
221
+ \ off \n VLAN Mode: access\n Access VLAN: 1\n Rx \n \
222
+ \ 0 total packets 0 total bytes\n 0 unicast packets\n 0 multicast\
223
+ \ packets\n 0 broadcast packets\n 0 errors 0 dropped\n \
224
+ \ 0 CRC/FCS\n Tx\n 0 total packets 0 total bytes\n 0 unicast packets\n \
225
+ \ 0 multicast packets\n 0 broadcast packets\n 0 errors \
226
+ \ 0 dropped\n 0 collision\n\nInterface 1/1/12 is down \n Admin state is up\n State information: No XCVR installed\n\
227
+ \ Link transitions: 0\n Description: \n Hardware: Ethernet, MAC Address: 88:3a:30:97:d0:6a \n MTU 1500 \n Type --\n\
228
+ \ Full-duplex \n qos trust none\n Speed 0 Mb/s \n Auto-negotiation is on\n Flow-control: off \n Error-control: off \n\
229
+ \ VLAN Mode: access\n Access VLAN: 1\n Rx\n 0 total packets 0 total bytes\n \
230
+ \ 0 unicast packets\n 0 multicast packets\n 0 broadcast packets\n 0 errors \
231
+ \ 0 dropped\n 0 CRC/FCS\n Tx\n 0 total packets 0 total\
232
+ \ bytes\n 0 unicast packets\n 0 multicast packets\n 0 broadcast packets\n \
233
+ \ 0 errors 0 dropped\n 0 collision\n\nInterface 1/1/13 is down \
234
+ \ \n Admin state is up\n State information: No XCVR installed\n Link transitions: 0\n\
235
+ \ Description: \n Hardware: Ethernet, MAC Address: 88:3a:30:97:d0:68 \n MTU 1500 \n Type --\n Full-duplex \n qos trust\
236
+ \ none\n Speed 0 Mb/s \n Auto-negotiation is on\n Flow-control: off \n Error-control: off \n VLAN Mode: access\n Access\
237
+ \ VLAN: 1\n Rx\n 0 total packets 0 total bytes\n 0 unicast packets\n \
238
+ \ 0 multicast packets\n 0 broadcast packets\n 0 errors 0\
239
+ \ dropped\n 0 CRC/FCS\n Tx\n 0 total packets 0 total bytes\n 0 \
240
+ \ unicast packets\n 0 multicast packets\n 0 broadcast packets\n 0 errors \
241
+ \ 0 dropped\n 0 collision\n\nInterface 1/1/14 is down \n Admin state is up\n State information:\
242
+ \ No XCVR installed\n Link transitions: 0\n Description: \n Hardware: Ethernet, MAC Address: 88:3a:30:97:d0:66 \n MTU\
243
+ \ 1500 \n Type --\n Full-duplex \n qos trust none\n Speed 0 Mb/s \n Auto-negotiation is on\n Flow-control: off \n Error-control:\
244
+ \ off \n VLAN Mode: access\n Access VLAN: 1 \n Rx\n 0 total\
245
+ \ packets 0 total bytes\n 0 unicast packets\n 0 multicast packets\n \
246
+ \ 0 broadcast packets\n 0 errors 0 dropped\n 0 CRC/FCS\n Tx\n\
247
+ \ 0 total packets 0 total bytes\n 0 unicast packets\n 0 multicast\
248
+ \ packets\n 0 broadcast packets\n 0 errors 0 dropped\n \
249
+ \ 0 collision\n\nInterface 1/1/15 is down \n Admin state is up\n State information: No XCVR installed\n Link transitions:\
250
+ \ 0\n Description: \n Hardware: Ethernet, MAC Address: 88:3a:30:97:d0:64 \n MTU 1500 \n Type --\n Full-duplex \n qos\
251
+ \ trust none\n Speed 0 Mb/s \n Auto-negotiation is on\n Flow-control: off \n Error-control: off \n VLAN Mode: access\n\
252
+ \ Access VLAN: 1\n Rx\n 0 total packets 0 total bytes\n 0 unicast packets\n\
253
+ \ 0 multicast packets\n 0 broadcast packets\n 0 errors \
254
+ \ 0 dropped\n 0 CRC/FCS\n Tx\n 0 total packets 0 total bytes\n \
255
+ \ 0 unicast packets\n 0 multicast packets\n 0 broadcast packets\n 0 errors \
256
+ \ 0 dropped\n 0 collision\n \
257
+ \ \nInterface 1/1/16 is down \n Admin state is up\n State information: No XCVR installed\n Link transitions:\
258
+ \ 0\n Description: \n Hardware: Ethernet, MAC Address: 88:3a:30:97:d0:62 \n MTU 1500 \n Type --\n Full-duplex \n qos\
259
+ \ trust none\n Speed 0 Mb/s \n Auto-negotiation is on\n Flow-control: off \n Error-control: off \n VLAN Mode: access\n\
260
+ \ Access VLAN: 1\n Rx\n 0 total packets 0 total bytes\n 0 unicast packets\n\
261
+ \ 0 multicast packets\n 0 broadcast packets\n 0 errors \
262
+ \ 0 dropped\n 0 CRC/FCS\n Tx\n 0 total packets 0 total bytes\n \
263
+ \ 0 unicast packets\n 0 multicast packets\n 0 broadcast packets\n 0 errors \
264
+ \ 0 dropped\n 0 collision\n\nInterface 1/1/17 is down \n Admin state is up\n State\
265
+ \ information: No XCVR installed\n Link transitions: 0\n Description: \n Hardware: Ethernet, MAC Address: 88:3a:30:97:d0:60\
266
+ \ \n MTU 1500 \n Type --\n Full-duplex \n qos trust none\n Speed 0 Mb/s \n Auto-negotiation is on\n Flow-control: off\
267
+ \ \n Error-control: off \n"
268
+ help: execute the command "show interface"
269
+ prompt: *id001
270
+ show interface dom detail:
271
+ output: "Transceiver in 1/1/34\n Type: SFP+SR\n Temperature: 23.60C\n Temperature high alarm: Off\n Temperature low\
272
+ \ alarm: Off\n Temperature high warning: Off\n Temperature low warning: Off\n Temperature high alarm threshold: 75.00C\n\
273
+ \ Temperature low alarm threshold: -5.00C\n Temperature high warning threshold: 70.00C\n Temperature low warning\
274
+ \ threshold: 0.00C\n Voltage: 3.25V\n Voltage high alarm: Off\n Voltage low alarm: Off\n Voltage high warning: Off\n\
275
+ \ Voltage low warning: Off\n Voltage high alarm threshold: 3.60V\n Voltage low alarm threshold: 3.00V\n Voltage\
276
+ \ high warning threshold: 3.50V\n Voltage low warning threshold: 3.10V\n Tx Bias: 5.64mA\n Tx Bias high alarm: Off\n\
277
+ \ Tx Bias low alarm: Off\n Tx Bias high warning: Off\n Tx Bias low warning: Off\n Tx Bias high alarm threshold:\
278
+ \ 12.00mA\n Tx Bias low alarm threshold: 1.00mA\n Tx Bias high warning threshold: 10.50mA\n Tx Bias low warning threshold:\
279
+ \ 2.50mA\n Rx Power: 0.54mW\n Rx Power high alarm: Off\n Rx Power low alarm: Off\n Rx Power high warning: Off\n\
280
+ \ Rx Power low warning: Off\n Rx Power high alarm threshold: 1.00mW\n Rx Power low alarm threshold: 0.05mW\n Rx\
281
+ \ Power high warning threshold: 0.79mW\n Rx Power low warning threshold: 0.10mW\n Tx Power: 0.59mW\n Tx Power high\
282
+ \ alarm: Off\n Tx Power low alarm: Off\n Tx Power high warning: Off\n Tx Power low warning: Off\n Tx Power high\
283
+ \ alarm threshold: 1.00mW\n Tx Power low alarm threshold: 0.15mW\n Tx Power high warning threshold: 0.79mW\n Tx Power\
284
+ \ low warning threshold: 0.19mW\n\nTransceiver in 1/1/47\n Type: SFP56CR\n % No DOM information available\n\nTransceiver\
285
+ \ in 1/1/48\n Type: SFP28DAC0.65\n % No DOM information available\n\nTransceiver in 1/1/56\n Type: QSFP+LR4\n Temperature:\
286
+ \ 28.00C\n Temperature high alarm: Off\n Temperature low alarm: Off\n Temperature high warning: Off\n Temperature\
287
+ \ low warning: Off\n Temperature high alarm threshold: 78.00C\n Temperature low alarm threshold: -5.00C\n Temperature\
288
+ \ high warning threshold: 75.00C\n Temperature low warning threshold: 0.00C\n Voltage: 3.25V\n Voltage high alarm\
289
+ \ threshold: 3.63V\n Voltage low alarm threshold: 2.97V\n Voltage high warning threshold: 3.46V\n Voltage low warning\
290
+ \ threshold: 3.10V\n\n Channel 1:\n Tx Bias: 33.10mA\n Tx Bias high alarm: Off\n Tx Bias low alarm: Off\n Tx Bias\
291
+ \ high warning: Off\n Tx Bias low warning: Off\n Tx Bias high alarm threshold: 105.00mA\n Tx Bias low alarm threshold:\
292
+ \ 8.00mA\n Tx Bias high warning threshold: 105.00mA\n Tx Bias low warning threshold: 10.00mA\n Rx Power: 0.48mW\n\
293
+ \ Rx Power high alarm: Off\n Rx Power low alarm: Off\n Rx Power high warning: Off\n Rx Power low warning: Off\n\
294
+ \ Rx Power high alarm threshold: 2.14mW\n Rx Power low alarm threshold: 0.02mW\n Rx Power high warning threshold:\
295
+ \ 1.70mW\n Rx Power low warning threshold: 0.04mW\n Tx Power: 1.26mW\n Tx Power high alarm: Off\n Tx Power low alarm:\
296
+ \ Off\n Tx Power high warning: Off\n Tx Power low warning: Off\n Tx Power high alarm threshold: 0.00mW\n Tx Power\
297
+ \ low alarm threshold: 0.00mW\n Tx Power high warning threshold: 0.00mW\n Tx Power low warning threshold: 0.00mW\n\
298
+ \n Channel 2:\n Tx Bias: 34.44mA\n Tx Bias high alarm: Off\n Tx Bias low alarm: Off\n Tx Bias high warning: Off\n\
299
+ \ Tx Bias low warning: Off\n Tx Bias high alarm threshold: 105.00mA\n Tx Bias low alarm threshold: 8.00mA\n Tx Bias\
300
+ \ high warning threshold: 105.00mA\n Tx Bias low warning threshold: 10.00mA\n Rx Power: 0.55mW\n Rx Power high alarm:\
301
+ \ Off\n Rx Power low alarm: Off\n Rx Power high warning: Off\n Rx Power low warning: Off\n Rx Power high alarm threshold:\
302
+ \ 2.14mW\n Rx Power low alarm threshold: 0.02mW\n Rx Power high warning threshold: 1.70mW\n Rx Power low warning\
303
+ \ threshold: 0.04mW\n Tx Power: 1.21mW\n Tx Power high alarm: Off\n Tx Power low alarm: Off\n Tx Power high warning:\
304
+ \ Off\n Tx Power low warning: Off\n Tx Power high alarm threshold: 0.00mW\n Tx Power low alarm threshold: 0.00mW\n\
305
+ \ Tx Power high warning threshold: 0.00mW\n Tx Power low warning threshold: 0.00mW\n\n Channel 3:\n Tx Bias: 36.21mA\n\
306
+ \ Tx Bias high alarm: Off\n Tx Bias low alarm: Off\n Tx Bias high warning: Off\n Tx Bias low warning: Off\n Tx\
307
+ \ Bias high alarm threshold: 105.00mA\n Tx Bias low alarm threshold: 8.00mA\n Tx Bias high warning threshold: 105.00mA\n\
308
+ \ Tx Bias low warning threshold: 10.00mA\n Rx Power: 0.52mW\n Rx Power high alarm: Off\n Rx Power low alarm: Off\n\
309
+ \ Rx Power high warning: Off\n Rx Power low warning: Off\n Rx Power high alarm threshold: 2.14mW\n Rx Power low\
310
+ \ alarm threshold: 0.02mW\n Rx Power high warning threshold: 1.70mW\n Rx Power low warning threshold: 0.04mW\n Tx\
311
+ \ Power: 1.18mW\n Tx Power high alarm: Off\n Tx Power low alarm: Off\n Tx Power high warning: Off\n Tx Power low\
312
+ \ warning: Off\n Tx Power high alarm threshold: 0.00mW\n Tx Power low alarm threshold: 0.00mW\n Tx Power high warning\
313
+ \ threshold: 0.00mW\n Tx Power low warning threshold: 0.00mW\n\n Channel 4:\n Tx Bias: 34.26mA\n Tx Bias high alarm:\
314
+ \ Off\n Tx Bias low alarm: Off\n Tx Bias high warning: Off\n Tx Bias low warning: Off\n Tx Bias high alarm threshold:\
315
+ \ 105.00mA\n Tx Bias low alarm threshold: 8.00mA\n Tx Bias high warning threshold: 105.00mA\n Tx Bias low warning\
316
+ \ threshold: 10.00mA\n Rx Power: 0.40mW\n Rx Power high alarm: Off\n Rx Power low alarm: Off\n Rx Power high warning:\
317
+ \ Off\n Rx Power low warning: Off\n Rx Power high alarm threshold: 2.14mW\n Rx Power low alarm threshold: 0.02mW\n\
318
+ \ Rx Power high warning threshold: 1.70mW\n Rx Power low warning threshold: 0.04mW\n Tx Power: 1.24mW\n Tx Power\
319
+ \ high alarm: Off\n Tx Power low alarm: Off\n Tx Power high warning: Off\n Tx Power low warning: Off\n Tx Power\
320
+ \ high alarm threshold: 0.00mW\n Tx Power low alarm threshold: 0.00mW\n Tx Power high warning threshold: 0.00mW\n\
321
+ \ Tx Power low warning threshold: 0.00mW"
322
+ help: execute the command "show interface dom detail"
323
+ prompt: *id001
324
+ show ip route all-vrfs:
325
+ output: "Displaying ipv4 routes selected for forwarding\n\n'[x/y]' denotes [distance/metric]\n\n0.0.0.0/0, vrf default\n\
326
+ \tvia 172.25.0.189, [20/0], bgp\n\tvia 172.25.0.185, [20/0], bgp\n10.252.14.109/32, vrf default\n\tvia loopback0,\
327
+ \ [0/0], local\n10.252.22.128/26, vrf default\n\tvia vlan3564, [0/0], connected\n10.252.22.129/32, vrf default\n\
328
+ \tvia vlan3564, [0/0], local\n10.252.34.224/27, vrf default\n\tvia vlan3560, [0/0], connected\n10.252.34.225/32,\
329
+ \ vrf default\n\tvia vlan3560, [0/0], local\n10.252.71.0/25, vrf default\n\tvia vlan3561, [0/0], connected\n10.252.71.1/32,\
330
+ \ vrf default\n\tvia vlan3561, [0/0], local\n10.252.151.0/24, vrf default\n\tvia vlan3590, [0/0], connected\n\
331
+ 10.252.151.1/32, vrf default\n\tvia vlan3590, [0/0], local\n172.25.0.184/30, vrf default\n\tvia 1/1/28, [0/0],\
332
+ \ connected\n172.25.0.186/32, vrf default\n\tvia 1/1/28, [0/0], local\n172.25.0.188/30, vrf default\n\tvia 2/1/28,\
333
+ \ [0/0], connected\n172.25.0.190/32, vrf default\n\tvia 2/1/28, [0/0], local"
334
+ help: execute the command "show ip route all-vrfs"
335
+ prompt: *id001
336
+ show lldp neighbors-info detail:
337
+ output: "sw-0620-0001# show lldp neighbor-info detail \nLLDP Neighbor Information \n=========================\nTotal Neighbor\
338
+ \ Entries : 6\nTotal Neighbor Entries Deleted : 0\nTotal Neighbor Entries Dropped : 0\nTotal Neighbor Entries\
339
+ \ Aged-Out : 0\n--------------------------------------------------------------------------------\nPort \
340
+ \ : 1/1/1\nNeighbor Entries : 1\nNeighbor Entries Deleted : 0\nNeighbor Entries Dropped\
341
+ \ : 0\nNeighbor Entries Aged-Out : 0\nNeighbor Chassis-Name : ap-9999-335-fe\nNeighbor Chassis-Description\
342
+ \ : ArubaOS (MODEL: 335), Version Aruba AP\nNeighbor Chassis-ID : 70:3a:0e:cd:41:fe\nNeighbor Management-Address\
343
+ \ : 10.252.99.12\nChassis Capabilities Available : Bridge, WLAN\nChassis Capabilities Enabled : WLAN\nNeighbor\
344
+ \ Port-ID : 70:3a:0e:cd:41:fe\nNeighbor Port-Desc : eth0\nNeighbor Port VLAN ID :\
345
+ \ \nTTL : 120\nNeighbor PoE information : DOT3\nNeighbor Power Type : Type\
346
+ \ 2 PD\nNeighbor Power Priority : Unknown\nNeighbor Power Source : PSE\nPD Requested Power Value \
347
+ \ : 25.5 W \nPSE Allocated Power Value : 25.5 W\nNeighbor Power Supported : No\n\
348
+ Neighbor Power Enabled : No\nNeighbor Power Class : Class4\nNeighbor Power Paircontrol : No\n\
349
+ PSE Power Pairs : SIGNAL\nNeighbor Mac-Phy details\nNeighbor Auto-neg Supported : true\nNeighbor Auto-Neg\
350
+ \ Enabled : true\nNeighbor Auto-Neg Advertised : 1000 BASE_TFD, FDX_APAUSE, FDX_PAUSE, 100 BASE_TXFD, Other\n\
351
+ Neighbor MAU type : \n--------------------------------------------------------------------------------\n\
352
+ Port : 1/1/2\nNeighbor Entries : 1\nNeighbor Entries Deleted : 0\nNeighbor\
353
+ \ Entries Dropped : 0\nNeighbor Entries Aged-Out : 0\nNeighbor Chassis-Name : ap-9999-535-fe\nNeighbor\
354
+ \ Chassis-Description : ArubaOS (MODEL: 535), Version Aruba AP\nNeighbor Chassis-ID : 00:4e:35:c5:d2:2e\n\
355
+ Neighbor Management-Address : 10.252.99.11\nChassis Capabilities Available : Bridge, WLAN\nChassis Capabilities Enabled\
356
+ \ : WLAN\nNeighbor Port-ID : 00:4e:35:c5:d2:2e\nNeighbor Port-Desc : eth0\nNeighbor Port\
357
+ \ VLAN ID : \nTTL : 120\n \
358
+ \ \nNeighbor PoE information : DOT3\nNeighbor Power Type : Type 3 Single Signature PD\nNeighbor\
359
+ \ Power Priority : Unknown\nNeighbor Power Source : PSE\nPD Requested Power Value : 32.1 W\nPSE\
360
+ \ Allocated Power Value : 32.1 W\nNeighbor Power Supported : No\nNeighbor Power Enabled : No\nNeighbor\
361
+ \ Power Class : Class5\nNeighbor Power Paircontrol : No\nPSE Power Pairs : SIGNAL\nPSE\
362
+ \ Allocated Power Value Alt A: 0.0 W\nPD Requested Power Value Mode A: 0.0 W\nPSE Allocated Power Value Alt B: 0.0 W\n\
363
+ PD Requested Power Value Mode B: 0.0 W\nPower At PD Powered Interface : 0.0 W\nNeighbor Powered Status : Single\
364
+ \ Signature PD\nNeighbor Power Class Pair A : -\nNeighbor Power Class Pair B : -\nPowering on both PD modes \
365
+ \ : No\nPD load electrically isolated : No\nNeighbor PD Autoclass Request : No\nNeighbor Power Down Request \
366
+ \ : No\nNeighbor Mac-Phy details\nNeighbor Auto-neg Supported : true\nNeighbor Auto-Neg Enabled : true\nNeighbor\
367
+ \ Auto-Neg Advertised : 1000 BASE_TFD, FDX_APAUSE, FDX_PAUSE, 100 BASE_TXFD, Other\nNeighbor MAU type \
368
+ \ : \n--------------------------------------------------------------------------------\nPort \
369
+ \ : 1/1/52\nNeighbor Entries : 1\nNeighbor Entries Deleted : 0\nNeighbor Entries Dropped \
370
+ \ : 0\nNeighbor Entries Aged-Out : 0\nNeighbor Chassis-Name : rtr-agg-0620-a\nNeighbor Chassis-Description\
371
+ \ : Aruba JL635A GL.10.05.0021\nNeighbor Chassis-ID : 90:20:c2:bf:ae:00\nNeighbor Management-Address \
372
+ \ : 10.252.15.17\nChassis Capabilities Available : Bridge, Router\nChassis Capabilities Enabled : Bridge, Router\n\
373
+ Neighbor Port-ID : 1/1/1\nNeighbor Port-Desc : 1/1/1\nNeighbor Port VLAN ID : 3560\n\
374
+ TTL : 120\n--------------------------------------------------------------------------------\n\
375
+ Port : 2/1/1\nNeighbor Entries : 1\nNeighbor Entries Deleted : 0\nNeighbor\
376
+ \ Entries Dropped : 0\nNeighbor Entries Aged-Out : 0\nNeighbor Chassis-Name : ap-9999-335-fe\nNeighbor\
377
+ \ Chassis-Description : ArubaOS (MODEL: 335), Version Aruba AP\nNeighbor Chassis-ID : 70:3a:0e:cd:41:fe\n\
378
+ Neighbor Management-Address : 10.252.99.12\nChassis Capabilities Available : Bridge, WLAN\nChassis Capabilities Enabled\
379
+ \ : WLAN\nNeighbor Port-ID : 70:3a:0e:cd:41:ff \nNeighbor Port-Desc : eth1\n\
380
+ Neighbor Port VLAN ID : \nTTL : 120\nNeighbor PoE information : DOT3\nNeighbor\
381
+ \ Power Type : Type 2 PD\nNeighbor Power Priority : Unknown\nNeighbor Power Source : PSE\n\
382
+ PD Requested Power Value : 25.5 W\nPSE Allocated Power Value : 25.5 W\nNeighbor Power Supported : No\n\
383
+ Neighbor Power Enabled : No\nNeighbor Power Class : Class4\nNeighbor Power Paircontrol : No\n\
384
+ PSE Power Pairs : SIGNAL\nNeighbor Mac-Phy details\nNeighbor Auto-neg Supported : true\nNeighbor Auto-Neg\
385
+ \ Enabled : true\nNeighbor Auto-Neg Advertised : 1000 BASE_TFD, FDX_APAUSE, FDX_PAUSE, 100 BASE_TXFD, 100 BASE_TX,\
386
+ \ 10 BASET_FD, 10 BASE_T\nNeighbor MAU type : 1000 BASETFD\n--------------------------------------------------------------------------------\n\
387
+ Port : 2/1/2\nNeighbor Entries : 1\nNeighbor Entries Deleted : 0\nNeighbor\
388
+ \ Entries Dropped : 0\nNeighbor Entries Aged-Out : 0\nNeighbor Chassis-Name : ap-9999-535-fe\nNeighbor\
389
+ \ Chassis-Description : ArubaOS (MODEL: 535), Version Aruba AP\nNeighbor Chassis-ID : 00:4e:35:c5:d2:2e\n\
390
+ Neighbor Management-Address : 10.252.99.11\nChassis Capabilities Available : Bridge, WLAN\nChassis Capabilities Enabled\
391
+ \ : WLAN\nNeighbor Port-ID : 00:4e:35:c5:d2:2f\nNeighbor Port-Desc : eth1\nNeighbor Port\
392
+ \ VLAN ID : \nTTL : 120\nNeighbor PoE information : DOT3\nNeighbor Power Type\
393
+ \ : Type 3 Single Signature PD\nNeighbor Power Priority : Unknown\nNeighbor Power Source \
394
+ \ : PSE\nPD Requested Power Value : 32.1 W\nPSE Allocated Power Value : 32.1 W\nNeighbor Power Supported\
395
+ \ : No\nNeighbor Power Enabled : No\nNeighbor Power Class : Class5\nNeighbor Power Paircontrol\
396
+ \ : No\nPSE Power Pairs : SIGNAL\nPSE Allocated Power Value Alt A: 0.0 W\nPD Requested Power Value\
397
+ \ Mode A: 0.0 W\nPSE Allocated Power Value Alt B: 0.0 W\nPD Requested Power Value Mode B: 0.0 W\nPower At PD Powered\
398
+ \ Interface : 0.0 W\nNeighbor Powered Status : Single Signature PD\nNeighbor Power Class Pair A : -\nNeighbor\
399
+ \ Power Class Pair B : -\nPowering on both PD modes : No\nPD load electrically isolated : No\nNeighbor PD Autoclass\
400
+ \ Request : No \nNeighbor Power Down Request : No\nNeighbor Mac-Phy details\nNeighbor\
401
+ \ Auto-neg Supported : true\nNeighbor Auto-Neg Enabled : true\nNeighbor Auto-Neg Advertised : 1000 BASE_TFD,\
402
+ \ FDX_APAUSE, FDX_PAUSE, 100 BASE_TXFD, Other\nNeighbor MAU type : \n--------------------------------------------------------------------------------\n\
403
+ Port : 2/1/52\nNeighbor Entries : 1\nNeighbor Entries Deleted : 0\nNeighbor\
404
+ \ Entries Dropped : 0\nNeighbor Entries Aged-Out : 0\nNeighbor Chassis-Name : rtr-agg-0620-b\nNeighbor\
405
+ \ Chassis-Description : Aruba JL635A GL.10.05.0021\nNeighbor Chassis-ID : 90:20:c2:bf:ed:00\nNeighbor\
406
+ \ Management-Address : 10.252.15.18\nChassis Capabilities Available : Bridge, Router\nChassis Capabilities Enabled\
407
+ \ : Bridge, Router\nNeighbor Port-ID : 1/1/1\nNeighbor Port-Desc : 1/1/1\nNeighbor Port\
408
+ \ VLAN ID : 3560\nTTL : 120\n"
409
+ help: execute the command "show lldp neighbors-info detail"
410
+ prompt: *id001
411
+ show mac-address-table:
412
+ output: 'MAC age-time : 300 seconds
413
+
414
+ Number of MAC addresses : 5
415
+
416
+
417
+ MAC Address VLAN Type Port
418
+
419
+ --------------------------------------------------------------
420
+
421
+ 88:3a:30:a3:86:80 1 dynamic lag100
422
+
423
+ 90:e2:ba:28:0d:f1 10 dynamic lag100
424
+
425
+ 00:01:2e:82:0f:7b 3560 dynamic lag100
426
+
427
+ 90:e2:ba:28:0d:f0 3590 dynamic lag100
428
+
429
+ 88:3a:30:a3:86:80 3590 dynamic lag100
430
+
431
+ 80:5e:0c:76:ed:bb 2015 port-access-security 1/1/30'
432
+ help: execute the command "show mac-address-table"
433
+ prompt: *id001
434
+ show ntp associations:
435
+ output: "----------------------------------------------------------------------\n ID NAME REMOTE \
436
+ \ REF-ID ST LAST POLL REACH\n----------------------------------------------------------------------\n* 1 10.0.0.1\
437
+ \ 10.0.0.1 169.254.0.1 4 580 1024 377\n+ 2 10.0.0.2 10.0.0.2 169.254.0.1 4 113 1024 377\n+ 3 10.0.0.3\
438
+ \ 10.0.0.3 169.254.0.1 4 1059 1024 377\n----------------------------------------------------------------------"
439
+ help: execute the command "show ntp associations"
440
+ prompt: *id001
441
+ show system:
442
+ output: 'Hostname : 6300
443
+
444
+ System Description : FL.10.11.1021
445
+
446
+ System Contact :
447
+
448
+ System Location :
449
+
450
+
451
+ Vendor : Aruba
452
+
453
+ Product Name : JL665A 6300F 48G CL4 PoE 4SFP56 Sw
454
+
455
+ Chassis Serial Nbr : XXXXXXXXXX
456
+
457
+ Base MAC Address : 0a00a0-00a000
458
+
459
+ ArubaOS-CX Version : FL.10.11.1021
460
+
461
+
462
+ Time Zone : UTC
463
+
464
+
465
+ Up Time : 12 minutes
466
+
467
+ CPU Util (%) : 15
468
+
469
+ Memory Usage (%) : 26
470
+
471
+ '
472
+ help: execute the command "show system"
473
+ prompt: *id001
474
+ show vlan:
475
+ output: "------------------------------------------------------------------------------------------------------------------\n\
476
+ VLAN Name Status Reason Type Interfaces \n\
477
+ ------------------------------------------------------------------------------------------------------------------\n\
478
+ 1 DEFAULT_VLAN_1 up ok default 1/1/34-1/1/52\n3072 mgmt \
479
+ \ up ok static 1/1/2-1/1/4,1/1/6-1/1/8,\n \
480
+ \ 1/1/17-1/1/19,1/1/47-1/1/52\n"
481
+ help: execute the command "show vlan"
482
+ prompt: *id001
483
+ show vsf detail:
484
+ output: "VSF Stack\n\tMAC Address : 88:3a:30:97:d0:40\n\tSecondary : 2\n\tTopology \
485
+ \ : chain\n\tStatus : No Split\n\tSplit Detection Method : None\n\tSoftware Version \
486
+ \ : FL.10.05.0021\n\tName : Aruba-VSF-6300\n\tContact : email@address.com\n\
487
+ \tLocation : ThisIsaRoom Somewhere\nMember ID : 1\n\tMAC Address \
488
+ \ : 88:3a:30:97:d0:40\n\tType : JL658A\n\tModel : 6300M 24-port SFP+ and 4-port\
489
+ \ SFP56 Switch\n\tStatus : Master\n\tROM Version : FL.01.07.0002\n\tSerial Number \
490
+ \ : LTRSN123124\n\tUptime : 8 weeks, 6 days, 18 hours, 26 minutes\n\tCPU Utilization \
491
+ \ : 9%\n\tMemory Utilization : 18%\n\tVSF Link 1 : Up, connected to peer member 2, link 1\n\t\
492
+ VSF Link 2 :\nMember ID : 2\n\tMAC Address : 88:3a:30:96:4d:c0\n\t\
493
+ Type : JL658A\n\tModel : 6300M 24-port SFP+ and 4-port SFP56 Switch\n\tStatus\
494
+ \ : Standby\n\tROM Version : FL.01.07.0002\n\tSerial Number : LTRSN123124\n\
495
+ \tUptime : 8 weeks, 6 days, 18 hours, 25 minutes\n\tCPU Utilization : 1%\n\tMemory Utilization\
496
+ \ : 11%\n\tVSF Link 1 : Up, connected to peer member 1, link 1\n\tVSF Link 2\n"
497
+ help: execute the command "show vsf detail"
498
+ prompt: *id001
499
+ _default_:
500
+ output: '% Invalid input detected'
501
+ help: default output for unknown commands
502
+ prompt:
503
+ - '{base_prompt}>'
504
+ - '{base_prompt}#'