@@ -6,26 +6,26 @@ requests and 'private' community for write requests.
6
6
Default timeout is 1000ms and there will be one request performed.
7
7
*/
8
8
9
- $ hostname4 = getenv ('SNMP_HOSTNAME ' ) ? getenv ( ' SNMP_HOSTNAME ' ) : '127.0.0.1 ' ;
10
- $ hostname6 = getenv ('SNMP_HOSTNAME6 ' ) ? getenv ( ' SNMP_HOSTNAME6 ' ) : '::1 ' ;
11
- $ port = getenv ('SNMP_PORT ' ) ? getenv ( ' SNMP_PORT ' ) : '161 ' ;
9
+ $ hostname4 = getenv ('SNMP_HOSTNAME ' ) ?: '127.0.0.1 ' ;
10
+ $ hostname6 = getenv ('SNMP_HOSTNAME6 ' ) ?: '::1 ' ;
11
+ $ port = getenv ('SNMP_PORT ' ) ?: '161 ' ;
12
12
$ hostname = "$ hostname4: $ port " ;
13
13
$ hostname6_port = "[ $ hostname6]: $ port " ;
14
- $ community = getenv ('SNMP_COMMUNITY ' ) ? getenv ( ' SNMP_COMMUNITY ' ) : 'public ' ;
15
- $ communityWrite = getenv ('SNMP_COMMUNITY_WRITE ' )? getenv ( ' SNMP_COMMUNITY_WRITE ' ) :'private ' ;
14
+ $ community = getenv ('SNMP_COMMUNITY ' ) ?: 'public ' ;
15
+ $ communityWrite = getenv ('SNMP_COMMUNITY_WRITE ' )?:'private ' ;
16
16
17
- $ timeout = getenv ('SNMP_TIMEOUT ' ) ? getenv ( ' SNMP_TIMEOUT ' ) : -1 ;
18
- $ retries = getenv ('SNMP_RETRIES ' ) ? getenv ( ' SNMP_RETRIES ' ) : 1 ;
17
+ $ timeout = getenv ('SNMP_TIMEOUT ' ) ?: -1 ;
18
+ $ retries = getenv ('SNMP_RETRIES ' ) ?: 1 ;
19
19
20
20
if (stristr (PHP_OS , "FreeBSD " )) {
21
- $ mibdir = getenv ('SNMP_MIBDIR ' ) ? getenv ( ' SNMP_MIBDIR ' ) : "/usr/local/share/snmp/mibs " ;
21
+ $ mibdir = getenv ('SNMP_MIBDIR ' ) ?: "/usr/local/share/snmp/mibs " ;
22
22
} else {
23
- $ mibdir = getenv ('SNMP_MIBDIR ' ) ? getenv ( ' SNMP_MIBDIR ' ) : "/usr/share/snmp/mibs " ;
23
+ $ mibdir = getenv ('SNMP_MIBDIR ' ) ?: "/usr/share/snmp/mibs " ;
24
24
}
25
25
26
26
27
- $ user_noauth = getenv ('SNMP_USER_NOAUTH ' ) ? getenv ( ' SNMP_USER_NOAUTH ' ) : 'noAuthUser ' ;
28
- $ user_auth_prefix = getenv ('SNMP_USER_PREFIX ' ) ? getenv ( ' SNMP_USER_PREFIX ' ) : 'admin ' ;
29
- $ rwuser = getenv ('SNMP_RWUSER ' ) ? getenv ( ' SNMP_RWUSER ' ) : ($ user_auth_prefix . 'MD5AES ' );
30
- $ auth_pass = getenv ('SNMP_AUTH_PASS ' ) ? getenv ( ' SNMP_AUTH_PASS ' ) : 'test1234 ' ;
31
- $ priv_pass = getenv ('SNMP_PRIV_PASS ' ) ? getenv ( ' SNMP_PRIV_PASS ' ) : 'test1234 ' ;
27
+ $ user_noauth = getenv ('SNMP_USER_NOAUTH ' ) ?: 'noAuthUser ' ;
28
+ $ user_auth_prefix = getenv ('SNMP_USER_PREFIX ' ) ?: 'admin ' ;
29
+ $ rwuser = getenv ('SNMP_RWUSER ' ) ?: ($ user_auth_prefix . 'MD5AES ' );
30
+ $ auth_pass = getenv ('SNMP_AUTH_PASS ' ) ?: 'test1234 ' ;
31
+ $ priv_pass = getenv ('SNMP_PRIV_PASS ' ) ?: 'test1234 ' ;
0 commit comments