home *** CD-ROM | disk | FTP | other *** search
/ chilidog.highland.cc.ks.us / chilidog.highland.cc.ks.us.zip / chilidog.highland.cc.ks.us / backup / bradford.20110502.etc.tar.gz / bradford.20110502.etc.tar / etc / xinetd.d / netstat next >
Text File  |  2006-04-22  |  492b  |  17 lines

  1. # netstat (like the services finger and systat) give out user information which
  2. # may be valuable to potential "system crackers." Many sites choose to disable
  3. # some or all of these services to improve security.  Try "telnet localhost
  4. # systat" and "telnet localhost netstat" to see that information yourself!
  5. #
  6. service netstat
  7. {
  8.     disable         = yes
  9.     socket_type     = stream
  10.     protocol        = tcp
  11.     wait            = no
  12.     user            = root
  13.     server = /bin/netstat
  14.     server_args = -a
  15. }
  16.  
  17.