snmp_include.inc 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /*
  3. By default tests will try to access SNMP agent @ '127.0.0.1:161' and will use 'public' community for read
  4. requests and 'private' community for write requests.
  5. Default timeout is 1000ms and there will be one request performed.
  6. */
  7. $hostname4 = getenv('SNMP_HOSTNAME') ?: '127.0.0.1';
  8. $hostname6 = getenv('SNMP_HOSTNAME6') ?: '::1';
  9. $port = getenv('SNMP_PORT') ?: '161';
  10. $hostname = "$hostname4:$port";
  11. $hostname6_port = "[$hostname6]:$port";
  12. $community = getenv('SNMP_COMMUNITY') ?: 'public';
  13. $communityWrite = getenv('SNMP_COMMUNITY_WRITE')?:'private';
  14. $timeout = getenv('SNMP_TIMEOUT') ?: -1;
  15. $retries = getenv('SNMP_RETRIES') ?: 1;
  16. if (stristr(PHP_OS, "FreeBSD")) {
  17. $mibdir = getenv('SNMP_MIBDIR') ?: "/usr/local/share/snmp/mibs";
  18. } else {
  19. $mibdir = getenv('SNMP_MIBDIR') ?: "/usr/share/snmp/mibs";
  20. }
  21. $user_noauth = getenv('SNMP_USER_NOAUTH') ?: 'noAuthUser';
  22. $user_auth_prefix = getenv('SNMP_USER_PREFIX') ?: 'admin';
  23. $rwuser = getenv('SNMP_RWUSER') ?: ($user_auth_prefix . 'MD5AES');
  24. $auth_pass = getenv('SNMP_AUTH_PASS') ?: 'test1234';
  25. $priv_pass = getenv('SNMP_PRIV_PASS') ?: 'test1234';