diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-03-22 09:03:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-22 09:03:45 +0100 |
commit | 0384e5da0bd35724ad11c3f3770d498f2905b238 (patch) | |
tree | 02b708d51cd8091834442640bf3ad79e74441e41 /tools/etc | |
parent | Merge pull request #3776 from opensourcerouting/pbrd-interface-nexthops (diff) | |
parent | FRR: Python script to generate support bundle for FRR (diff) | |
download | frr-0384e5da0bd35724ad11c3f3770d498f2905b238.tar.xz frr-0384e5da0bd35724ad11c3f3770d498f2905b238.zip |
Merge pull request #3839 from srimohans/support_bundle
FRR: Python script to generate support bundle for FRR
Diffstat (limited to 'tools/etc')
-rw-r--r-- | tools/etc/frr/support_bundle_commands.conf | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/tools/etc/frr/support_bundle_commands.conf b/tools/etc/frr/support_bundle_commands.conf new file mode 100644 index 000000000..d52824ff0 --- /dev/null +++ b/tools/etc/frr/support_bundle_commands.conf @@ -0,0 +1,83 @@ +# FRR Support Bundle Command List +# Do Not modify the lines that start with +# PROC_NAME, CMD_LIST_START and CMD_LIST_END +# Add the new command for each process between +# CMD_LIST_START and CMD_LIST_END lines + +# BGP Support Bundle Command List +PROC_NAME:bgp +CMD_LIST_START +show bgp summary +show ip bgp +show ip bgp neighbors +show ip bgp summary +show ip bgp statistics + +show ip bgp update-groups advertise-queue +show ip bgp update-groups advertised-routes +show ip bgp update-groups packet-queue +show ip bgp update-groups statistics +show ip bgp peer-group +show ip bgp memory + +show bgp ipv6 +show bgp ipv6 neighbors +show bgp ipv6 summary +show bgp ipv6 update-groups advertise-queue +show bgp ipv6 update-groups advertised-routes +show bgp ipv6 update-groups packet-queue +show bgp ipv6 update-groups statistics +show ip bgp statistics + +show bgp evpn route +CMD_LIST_END + +# Zebra Support Bundle Command List +PROC_NAME:zebra +CMD_LIST_START +show zebra +show zebra client summary +show ip route + +show route-map +show memory +show interface +show vrf +show error all +show work-queues +show running-config +show thread cpu +show thread poll +show daemons +show version +CMD_LIST_END + +# OSPF Support Bundle Command List +# PROC_NAME:ospf +# CMD_LIST_START +# CMD_LIST_END + +# RIP Support Bundle Command List +# PROC_NAME:rip +# CMD_LIST_START +# CMD_LIST_END + +# ISIS Support Bundle Command List +# PROC_NAME:isis +# CMD_LIST_START +# CMD_LIST_END + +# BFD Support Bundle Command List +# PROC_NAME:bfd +# CMD_LIST_START +# CMD_LIST_END + +# STATIC Support Bundle Command List +# PROC_NAME:static +# CMD_LIST_START +# CMD_LIST_END + +# PIM Support Bundle Command List +# PROC_NAME:pim +# CMD_LIST_START +# CMD_LIST_END |