123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- ---
- cisco_ios:
- version: "show version"
- basic: "show ip interface brief"
- extended_output: "show version" # requires paging to be disabled
- config:
- - "logging buffered 20000" # base command
- - "no logging console"
- - "logging buffered 20010" # something you can verify has changed
- config_verification: "show run | inc logging buffer"
- config_file: "cisco_ios_commands.txt"
- cisco_asa:
- version: "show version"
- basic: "show ip"
- extended_output: "show version" # requires paging to be disabled
- config:
- - 'logging buffered notifications'
- - 'no logging console'
- - 'logging buffered warnings'
- config_verification: "show run | inc logging buffer"
- config_file: "cisco_asa_commands.txt"
- arista_eos:
- version: "show version"
- basic: "show ip int brief"
- extended_output: "show logging" # requires paging to be disabled
- config:
- - "logging buffered 20000"
- - "no logging console"
- - "logging buffered 20010"
- config_verification: "show run | inc logging buffer"
- hp_procurve:
- version: "show version"
- basic: "show ip"
- extended_output: "show logging" # requires paging to be disabled
- config:
- - 'time timezone -420'
- - 'time daylight-time-rule Continental-US-and-Canada'
- - 'time timezone -480'
- config_verification: "show run"
- juniper:
- version: "show version"
- basic: "show interfaces terse"
- extended_output: "show configuration" # requires paging to be disabled
- config:
- - 'set system syslog archive size 110k files 3'
- - 'set system time-zone America/New_York'
- - 'set system syslog archive size 120k files 3'
- config_verification: "run show configuration | match archive"
- support_commit: True
- rollback: 'rollback 0'
- commit_verification: "run show system commit"
- fortinet:
- version: "get system status"
- basic: "get system interface physical"
- extended_output: "get system status"
- config:
- - 'config firewall service category'
- - 'edit Database'
- - 'set comment "Generated comment"'
- - 'end'
- config_verification: "show firewall service category Database | grep comment"
- paloalto_panos:
- version: "show system info | match version"
- basic: "show system info"
- extended_output: "show system info"
- config:
- - 'set network vlan new_test'
- - 'set network vlan another_test'
- support_commit: True
- config_verification: 'run show vlan all'
- brocade_fastiron:
- version: "show version"
- basic: "show ip interface"
- extended_output: "show running-config" # requires paging to be disabled
- config:
- - "logging buffered 4000" # base command
- - "no logging console"
- - "logging buffered 3000" # something you can verify has changed
- config_verification: "show run | inc logging buffer"
- config_file: "brocade_fastiron_commands.txt"
- brocade_netiron:
- version: "show version"
- basic: "show ip interface"
- extended_output: "show version" # requires paging to be disabled
- config:
- - "logging buffered 4000" # base command
- - "no logging console"
- - "logging buffered 3000" # something you can verify has changed
- config_verification: "show run | inc logging buffer"
- config_file: "brocade_netiron_commands.txt"
- brocade_nos:
- version: "show version"
- basic: "show interface Management"
- extended_output: "show ip interface brief" # requires paging to be disabled
- config:
- - "logging raslog console WARNING" # base command
- - "logging raslog console INFO"
- config_verification: "show run | inc raslog"
- aruba_os:
- version: "show version"
- basic: "show ip interface brief"
- extended_output: "show version"
- config:
- - "location location1"
- - "location location2"
- config_verification: "show location"
- ubiquiti_edge:
- version: "show version"
- basic: "show network"
- extended_output: "show running-config"
- config:
- - "logging persistent 3"
- - "no logging persistent"
- - "logging persistent 4"
- config_verification: "show running-config | include 'logging'"
- dell_powerconnect:
- version: "show version"
- basic: "show ip interface vlan 1"
- extended_output: "show running-config"
- config:
- - "logging buffered 400"
- - "no logging buffered"
- - "logging buffered 200"
- config_verification: "show running-config"
- pluribus_ssh:
- version: "fabric-show parsable-delim ;"
- basic: "user-show name mircea parsable-delim ;"
- extended_output: "switch-info-show parsable-delim ;"
- config:
- - "role-create name dummy scope local"
- - "role-delete name dummy"
- - "role-create name dummy scope local access read-only"
- config_verification: "running-config-show"
- alcatel_aos:
- version: "show system"
- basic: "show configuration snapshot ip"
- extended_output: "show interfaces status"
- config:
- - 'VLAN 666'
- config_verification: "show vlan"
|