blob: 2dfc3c9c39ad8a31a379eab35dc841bd68c43162 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
config NUT_SSL
depends on PACKAGE_nut && !NUT_SSL_NSS
bool "Build with support for OpenSSL"
help
SSL allows sessions between upsd and clients to be encrypted and can
also be used to authenticate servers. This means that stealing port
3493 from upsd will no longer net you interesting passwords. SSL is
available via OpenSSL on OpenWrt. If you are happy with using passwords
to authenticate clients, you can save some space and build NUT without
SSL support. Defaults to n due to licensing (NUT is GPL with no OpenSSL
exception).
default n
config NUT_SSL_NSS
depends on PACKAGE_nut
bool "Build with support for NSS for SSL"
help
SSL allows sessions between upsd and clients to be encrypted and can
also be used to authenticate servers. This means that stealing port
3493 from upsd will no longer net you interesting passwords.
default y
config NUT_SSL_CERTVERIFY
depends on PACKAGE_nut && (NUT_SSL || NUT_SSL_NSS)
bool "Build with support for certificate verification when using SSL"
help
When using SSL, enables configuration options for verification of peer's
certificate before connecting to the peer.
default y
config NUT_DRIVER_USB
depends on PACKAGE_nut
bool "Build with support for USB drivers"
help
If you have a UPS connected via USB, select this.
default y
config NUT_DRIVER_SNMP
depends on PACKAGE_nut
bool "Build with support for SNMP drivers"
help
If you have a UPS you can connect to via SNMP, select this.
default n
config NUT_DRIVER_SERIAL
depends on PACKAGE_nut
bool "Build with support for serial drivers"
help
If you have a UPS connected via serial cable, select this.
default y
config NUT_DRIVER_NEON
depends on PACKAGE_nut
bool "Build with support for netxml drivers"
help
If you have a UPS connected via netxml, select this.
default y
|