Vários arquivos de configuração para o Net-SNMP para facilitar o gerenciamento do MIBS

2

Atualmente eu tenho um único /etc/snmp/snmp.conf que contém muitas cláusulas mibdirs . Isso é bom já que temos um único pacote que contém todos os nossos MIBS, mas agora eu gostaria de amarrar um subconjunto desses MIBS a um driver, para que quando eu instalar um driver em particular, ele também instale o MIBS. Acrescentar ao snmp.conf parece complicado. Eu gostaria de vários arquivos conf independentes (obviamente apenas adicionando ao conf do núcleo) para tornar tudo simples.

Como alguém teria vários arquivos conf, especificamente tendo arquivos separados, cada um deles contendo um conjunto de mibdirs chamadas? Existe algo como /etc/snmp/snmp.d ?

    
por chuckus 30.12.2014 / 01:33

1 resposta

0

Do man snmp_config :

   INCLUDING OTHER CONFIGURATION FILES
   It is possible to include other configuration files for processing 
   during normal configuration file processing.:

          # include site specific config
          includeFile site.conf

   This will load the specified configuration file. The
   path to file must be either absolute, starting with '/',
   or relative. The relative path is then relative to the directory
   where the parent file with 'includeFile' directive resides.

   The included file name does not need to have '.conf' suffix.

          # include a all *.conf files in a directory
          includeDir /etc/snmp/config.d

   This will search specified directory for all files with '.conf'
   suffix and process them as if they were included using includeFile
   directive. The configuration files are not processed in any particular
   order.

   The specified directory must be absolute directory path.
    
por 18.12.2016 / 20:38

Tags