Browse Source

Doc update

Ethan Galstad 23 năm trước cách đây
mục cha
commit
6e2a5c768b
1 tập tin đã thay đổi với 8 bổ sung4 xóa
  1. 8 4
      README

+ 8 - 4
README

@@ -94,12 +94,16 @@ of TCP wrappers, you need to do the following things:
 
 
    ***** INETD *****
-   If your system uses the inetd superserver, add an entry to 
-   /etc/inetd.conf as follows:
-
+   If your system uses the inetd superserver WITH tcpwrappers, add an
+   entry to /etc/inetd.conf as follows:
 
 	nrpe 	stream 	tcp 	nowait 	<user> /usr/sbin/tcpd <nrpebin> -c <nrpecfg> --inetd
 
+   If your system uses the inetd superserver WITHOUT tcpwrappers, add an
+   entry to /etc/inetd.conf as follows:
+
+	nrpe 	stream 	tcp 	nowait 	<user> <nrpebin> -c <nrpecfg> --inetd
+
 
    - Replace <user> with the name of the user that the nrpe server should run as.
      	Example: nagios
@@ -136,7 +140,7 @@ of TCP wrappers, you need to do the following things:
    - Replace <nrpecfg> with the path to the nrpe config file on your system.
    - Replace the <ipaddress> fields with the IP addresses of hosts which
      are allowed to connect to the NRPE daemon.  This only works if xinetd was
-     compiled with support for wrappers.
+     compiled with support for tcpwrappers.