@@ -34,6 +34,25 @@ cd nagios-plugins-2.1.1/
34
34
./configure
35
35
make
36
36
sudo make install
37
+ ```
38
+ 5.1 If during make, you get an sslv3 method not found error (https://support.nagios.com/forum/viewtopic.php?f=35&t=36601&p=168235&hilit=SSLv3#p168235 )
39
+ ```
40
+ --- plugins/sslutils.c.orig 2016-01-14 20:02:06.419867000 +0100
41
+ +++ plugins/sslutils.c 2016-01-14 20:01:36.091492000 +0100
42
+ @@ -70,8 +70,13 @@
43
+ #endif
44
+ break;
45
+ case 3: /* SSLv3 protocol */
46
+ +#if defined(OPENSSL_NO_SSL3)
47
+ + printf(("%s\n", _("CRITICAL - SSL protocol version 3 is not supported by your SSL library.")));
48
+ + return STATE_CRITICAL;
49
+ +#else
50
+ method = SSLv3_client_method();
51
+ ssl_options = SSL_OP_NO_SSLv2 | SSL_OP_NO_TLSv1;
52
+ +#endif
53
+ break;
54
+ default: /* Unsupported */
55
+ printf("%s\n", _("CRITICAL - Unsupported SSL protocol version."));
37
56
```
38
57
6 . Install [ Centreon clib] ( https://documentation.centreon.com/docs/centreon-clib/en/latest/installation/index.html )
39
58
```
@@ -67,6 +86,7 @@ sudo make install
67
86
sudo mkdir /var/log/centreon-engine
68
87
cd ~
69
88
sudo pear install XML_RPC-1.4.5
89
+ (may need to install php-xml)
70
90
wget https://www.exploit-db.com/apps/bf269a17dd99215e6dc5d7755b521c21-centreon-2.5.3.tar.gz
71
91
tar vxf bf269a17dd99215e6dc5d7755b521c21-centreon-2.5.3.tar.gz
72
92
cd centreon-2.5.3
@@ -188,4 +208,4 @@ Just a standard run.
188
208
www-data
189
209
uname -a
190
210
Linux centreon 4.4.0-21-generic #37-Ubuntu SMP Mon Apr 18 18:33:37 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
191
- ```
211
+ ```
0 commit comments