blob: 3bec818d19080d42b3515052d4579213a12c5760 [file] [log] [blame]
Srikanth Vavilapalli1725e492014-12-01 17:50:52 -08001#
2# Copyright (c) 2012,2013 Big Switch Networks, Inc.
3#
4# Licensed under the Eclipse Public License, Version 1.0 (the
5# "License"); you may not use this file except in compliance with the
6# License. You may obtain a copy of the License at
7#
8# http://www.eclipse.org/legal/epl-v10.html
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
13# implied. See the License for the specific language governing
14# permissions and limitations under the License.
15#
16
17from tech_support import add_to_show_tech_support
18
19# SNMP commands to be included in 'show tech-support' output
20snmp_show_tech_support_commands = [
21 ['cli', 'show snmp'],
22 ['shell', 'pgrep snmpd'],
23 ['shell', 'cat /etc/snmp/snmpd.conf'],
24 ['shell', 'cat /etc/default/snmpd'],
25]
26
27# add commands to central command table used for 'show tech-support'
28for entry in snmp_show_tech_support_commands:
29 add_to_show_tech_support(str(entry[0]), str(entry[1]))