參照netseek的pdf,centos6 64bit
為義馬等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及義馬網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為網(wǎng)站制作、成都網(wǎng)站制作、義馬網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達到每一位用戶的要求,就會得到認可,從而選擇與我們長期合作。這樣,我們也可以走得更遠!
- nagios 安裝步驟
- 1在做安裝之前確認要對該機器擁有root 權(quán)限。
- 確認你安裝好的linux 系統(tǒng)上已經(jīng)安裝如下軟件包再繼續(xù)。
- Apache
- GCC 編譯器
- GD庫與開發(fā)庫
- yum -y install httpd gcc glibc glibc-common gd gd-devel
- 2
- 建立nagios 賬號
- /usr/sbin/useradd nagios && passwd nagios
- 創(chuàng)建一個用戶組名為nagcmd用于從Web 接口執(zhí)行外部命令
- 用戶都加到這個組中
- /usr/sbin/groupadd nagcmd
- /usr/sbin/usermod ‐ G nagcmd nagios
- /usr/sbin/usermod ‐ G nagcmd apache
- 3
- 下載nagios 和插件程序包
- 下載Nagios 和Nagios 插件的軟件包( 訪問http://www.nagios.org/download/站點以獲得最
- 新版本)
- cd /usr/local/src
- wget http://nchc.dl.sourceforge.net/sourceforge/nagios/nagios-3.0.6.tar.gz
- wget http://nchc.dl.sourceforge.net/sourceforge/nagiosplug/nagios-plugins-1.4.13.tar.gz
- 4
- 編譯與安裝nagios
- cd /usr/local/src
- tar zxvf nagios-3.0.6.tar.gz
- cd nagios-3.0.6
- ./configure --with-command-group=nagcmd --prefix=/usr/local/nagios
- make all
- make install
- make install-init
- make install-config
- make install-commandmode
- 驗證程序是否被正確安裝。切換目錄到安裝路徑(這里是/usr/local/nagios),看是否存在
- etc、bin、 sbin、 share、 var 這五個目錄,如果存在則可以表明程序被正確的安裝到系
- 統(tǒng)了。后表是五個目錄功能的簡要說明:
- 5
- 編譯并安裝nagios 插件 nagios-plugins
- cd /usr/local/src
- tar zxvf nagios-plugins-1.4.13.tar.gz
- cd nagios-plugins-1.4.13
- ./configure --with-nagios-user=nagios --with-nagios-group=nagios --prefix=/usr/local/nagios
- make && make install
- 驗證:
- ls /usr/local/nagios/libexec
- 會顯示安裝的插件文件,即所有的插件都安裝在 libexec 這個目錄下
- 6配置WEB 接口
- 方法一:直接在安裝nagios 時 make install ‐ webconf
- 創(chuàng)建一個nagiosadmin的用戶用于Nagios 的WEB 接口登錄。記下你所設(shè)置的登錄口
- 令,一會兒你會用到它。
- htpasswd ‐ c /usr/local/nagios/etc/htpasswd.users nagiosadmin
- 重啟Apache服務(wù)以使設(shè)置生效。
- service httpdrestart
- 方法二:在httpd.conf最后添加如下內(nèi)容:
- #for nagios
- ScriptAlias /nagios/cgi-bin /usr/local/nagios/sbin
- Options ExecCGI
- AllowOverride None
- Order allow,deny
- Allow from all
- AuthName "Nagios Access"
- AuthType Basic
- AuthUserFile /usr/local/nagios/etc/htpasswd
- Require valid-user
- Alias /nagios /usr/local/nagios/share
- Options None
- AllowOverride None
- Order allow,deny
- Allow from all
- AuthName "Nagios Access"
- AuthType Basic
- AuthUserFile /usr/local/nagios/etc/htpasswd
- Require valid-user
- htpasswd ‐ c /usr/local/nagios/etc/htpasswd test
- New password: (輸入123456)
- Re‐ type new password: (再輸入一次密碼)
- Adding password for user test
- 查看認證文件的內(nèi)容
- less /usr/local/nagios/etc/htpasswd
- test:OmWGEsBnoGpIc 前半部分是用戶名test, 后面是加密后的密碼
- 本例添加的是 test 用戶名,需要改 cgi.cfg 配置文件,允許test 用戶
- vi /usr/local/nagios/etc/cgi.cfg
- authorized_for_system_information=test
- authorized_for_configuration_information=test
- authorized_for_system_commands=test
- authorized_for_all_services=test
- authorized_for_all_hosts=nagiosadmin,test
- authorized_for_all_ service_commands=test
- authorized_for_all_host_commands=test
- 7
- 啟動nagios
- 把Nagios 加入到服務(wù)列表中以使之在系統(tǒng)啟動時自動啟動
- chkconfig ‐‐ add nagios
- chkconfig nagios on
- 驗證Nagios 的樣例配置文件
- /usr/local/nagios/bin/nagios ‐ v /usr/local/nagios/etc/nagios.cfg
- 有可能
- Nagios 3.0.6
- Copyright (c) 1999-2008 Ethan Galstad (http://www.nagios.org)
- Last Modified: 12-01-2008
- License: GPL
- Error: Cannot open main configuration file '/usr/local/‐' for reading! 然后賦予權(quán)限也不行 直接重啟nagios服務(wù) 啟動即可
- Nagios 3.0.6 starting... (PID=2821)
- Local time is Thu Feb 16 14:24:25 CST 2012
- Bailing out due to one or more errors encountered in the configuration files. Run Nagios from the command line with the -v option to verify your config before restarting. (PID=2821)
- 如果沒有報錯,可以啟動Nagios 服務(wù)
- service nagios start
- service httpd start
- 8 setenforce 0(執(zhí)行這個命令就可了)
- 令SELinux處于容許模式
- setenforce 0
- 如果要永久性更變它,需要更改/etc/selinux/config 里的設(shè)置并重啟系統(tǒng)。
- 不關(guān)閉SELinux或是永久性變更它的方法是讓 CGI 模塊在SELinux下指定強制目標模式:
- chcon‐ R‐ t httpd_sys_content_t /usr/local/nagios/sbin/
- chcon‐ R‐ t httpd_sys_content_t /usr/local/nagios/share/
- 9
- 測試
- 登錄 http://localhost/nagios/ 輸入用戶名test和密碼123456就可以正常登錄了
- 十 如何配置監(jiān)控遠程主機
- 1 在被監(jiān)控主機上
- 增加用戶
- useradd nagios
- 設(shè)置密碼
- passwd nagios
- 安裝nagios插件
- wget http://nchc.dl.sourceforge.net/sourceforge/nagiosplug/nagios-plugins-1.4.13.tar.gz
- tar zxvf nagios-plugins-1.4.13.tar.gz
- cd nagios-plugins-1.4.13
- ./configure
- make
- make install
- chown nagios.nagios /usr/local/nagios/
- chown -R nagios.nagios /usr/local/nagios/libexec/
- 2 nagios 安裝nrpe的時候步驟(監(jiān)控與被監(jiān)控都要安裝)
- tar -zxvf nrpe-2.8.1.tar.gz
- cd nrpe-2.8.1
- ./configure
- make all
- make install-plugin
- make install-daemon
- make install-daemon-config
- 3 vim /usr/local/nagios/etc/nrpe.cfg
- #allowed_hosts=127.0.0.1
- allowed_hosts=127.0.0.1,192.168.1.130(192.168.1.130監(jiān)控端的地址)
- 改/etc/hosts.allow增加監(jiān)控機ip
- echo 'nrpe:192.168.1.130' >> /etc/hosts.allow
- 4啟動服務(wù)
- /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
- 測試nrpe服務(wù)是否正常
- /usr/local/nagios/libexec/check_nrpe -H 127.0.0.1(用127.0.0.1測試 不要用localhost測試)
- NRPE v2.8.1
- 5在監(jiān)控端(192.168.1.130)測試 看到如下結(jié)果說明成功
- /etc/init.d/iptables stop(或者添加允許從被監(jiān)控端收集信息)
- /usr/local/nagios/libexec/check_nrpe -H 192.168.1.129
- NRPE v2.8.1
- 然后在監(jiān)控端
- 1 vim /usr/local/nagios/etc/objects/129.cfg 內(nèi)容如下
- define host{
- use linux-server
- host_name 129
- alias 129
- address 192.168.1.129
- }
- define service{
- use generic-service
- host_name 129
- service_description load
- check_command check_nrpe!check_load
- #使用自定參數(shù)
- #check_command check_nrpe!check_load!6.0,5.0,4.0!15.0,8.0,6.0
- }
- vim /usr/local/nagios/etc/nagios.cfg 添加如下內(nèi)容
- # Definitions for monitoring 192.168.1.129
- cfg_file=/usr/local/nagios/etc/objects/129.cfg
- vim /usr/local/nagios/etc/objects/commands.cfg
- # 'check_nrpe ' command definition
- define command{
- command_name check_nrpe
- command_line $USER1$/check_nrpe -H $HOSTADDRESS$ -c $ARG1$
- }
- 監(jiān)控機nagios重啟
- service nagios reload
- 輸入http://192.168.1.130/nagios 就可看到129已經(jīng)添加成功
- nagios監(jiān)控swap
- 在被監(jiān)控機的/usr/local/nagios/etc/nrpe.cfg
- vim /usr/local/nagios/etc/nrpe.cfg添加
- command[check_swap]=/usr/local/nagios/libexec/check_swap -w 20% -c 10%
- nrpe服務(wù)重啟
- [root@localhost libexec]# ps -ef | grep nrpe
- nagios 2332 1 0 14:24 ? 00:00:00 /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
- root 2373 28887 0 14:25 pts/0 00:00:00 grep nrpe
- kill -9 2332
- /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
- 監(jiān)控端
- /usr/local/nagios/etc/objects/commands.cfg添加
- # check_swap command definition
- define command{
- command_name check_swap
- command_line $USER1$/check_swap -w $ARG1$ -c $ARG2$
- }
- 在下面的文件中
- vim /usr/local/nagios/etc/objects/129.cfg添加
- define service{
- use generic-service
- host_name 129
- service_description swap
- check_command check_nrpe!check_swap
- }
- 重啟nagios服務(wù)和http服務(wù)
- service nagios restart
- service httpd restart
- nagios監(jiān)控磁盤
- 在被監(jiān)控機的/usr/local/nagios/etc/nrpe.cfg
- vim /usr/local/nagios/etc/nrpe.cfg添加
- command[check_disk]=/usr/local/nagios/libexec/check_disk -w 20 -c 10 -p /
- nrpe服務(wù)重啟
- [root@localhost libexec]# ps -ef | grep nrpe
- nagios 2332 1 0 14:24 ? 00:00:00 /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
- root 2373 28887 0 14:25 pts/0 00:00:00 grep nrpe
- kill -9 2332
- /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
- 監(jiān)控端
- /usr/local/nagios/etc/objects/commands.cfg添加
- define command{
- command_name check_disk
- command_line $USER1$/check_disk -w $ARG1$ -c $ARG2$ -p $ARG3$
- }
- 在下面的文件中
- vim /usr/local/nagios/etc/objects/129.cfg添加
- define service{
- use generic-service
- host_name 129
- service_description disk
- check_command check_nrpe!check_disk
- }
- 重啟nagios服務(wù)和http服務(wù)
- service nagios restart
- service httpd restart
- nagios監(jiān)控內(nèi)存
- 監(jiān)控內(nèi)存腳本如下
- ######################################
- #!/bin/bash
- # check memory script
- TOTAL=`free -m | head -2 |tail -1 |gawk '{print $2}'`
- USED=`free -m | head -2 |tail -1 |gawk '{print $3}'`
- FREE=`free -m | head -2 |tail -1 |gawk '{print $4}'`
- # to calculate free percent
- # use the expression free * 100 / total
- FREETMP=`expr $FREE \* 100`
- PERCENT=`expr $FREETMP / $TOTAL`
- echo "$TOTAL MB Total Memory"
- echo "$USED MB Used Memory"
- echo "$FREE MB ($PERCENT%) Free Memory"
- exit 0
- ######################################
- 在被監(jiān)控機的/usr/local/nagios/etc/nrpe.cfg
- vim /usr/local/nagios/etc/nrpe.cfg添加
- command[check_mem]=/usr/local/nagios/libexec/check_mem -w 150 -c 200
- 把監(jiān)控腳本check_mnem放到/usr/local/nagios/libexec/ 并賦予執(zhí)行權(quán)限
- chmod +x /usr/local/nagios/libexec/check_mem
- chown nagios.nagios /usr/local/nagios/libexec/check_mem
- nrpe服務(wù)重啟
- [root@localhost libexec]# ps -ef | grep nrpe
- nagios 2332 1 0 14:24 ? 00:00:00 /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
- root 2373 28887 0 14:25 pts/0 00:00:00 grep nrpe
- kill -9 2332
- /usr/local/nagios/bin/nrpe -c /usr/local/nagios/etc/nrpe.cfg -d
- 監(jiān)控端
- /usr/local/nagios/etc/objects/commands.cfg添加
- define command{
- command_name check_mem
- command_line $USER1$/check_mem -w $ARG1$ -c $ARG2$
- }
- 在下面的文件中
- vim /usr/local/nagios/etc/objects/129.cfg添加
- define service{
- use generic-service
- host_name 129
- service_description memory
- check_command check_nrpe!check_mem
- }
- 重啟nagios服務(wù)和http服務(wù)
- service nagios restart
- service httpd restart
- nagios監(jiān)控http存活狀態(tài)
- 被監(jiān)控機不需要任何操作(因為check_http不需要通過nrpe來監(jiān)控)
- 監(jiān)控端
- /usr/local/nagios/etc/objects/commands.cfg已經(jīng)存在check_http命令 故也不需要操作
- 在下面的文件中
- vim /usr/local/nagios/etc/objects/129.cfg添加
- define service{
- use generic-service
- host_name 129
- service_description http
- check_command check_http(這一行要注意 不是check_nrpe!check_http這種形式)
- }
- 重啟nagios服務(wù)和http服務(wù)
- service nagios restart
- service httpd restart
- 錯誤解決方法 因為http是采用yum安裝的 網(wǎng)站文件路徑默認是/var/www/html
- 執(zhí)行下面命令檢測時
- /usr/local/nagios/libexec/check_http -I 192.168.1.129
- 報錯如下
- HTTP WARNING: HTTP/1.1 403 Forbidden
- 原因這是因為/var/www/html 下面沒有文件所致
- cd /var/www/html
- echo 123 >index.html
- 然后過一會 nagios檢測就ok了
- nagios監(jiān)控MySQL存活狀態(tài)
- 被監(jiān)控機登錄數(shù)據(jù)庫授權(quán)
- mysql> grant all privileges on *.* to xxxxx@192.168.1.130 identified by '123456';
- Query OK, 0 rows affected (0.09 sec)
- mysql> flush privileges;
- Query OK, 0 rows affected (0.08 sec)
- 監(jiān)控端
- /usr/local/nagios/etc/objects/commands.cfg添加如下內(nèi)容
- # check_mysql command definition
- define command{
- command_name check_mysql
- command_line $USER1$/check_mysql -H $HOSTADDRESS$ -P $ARG1$ -
- u $ARG2$ -p $ARG3$ (liuyu那個pdf有問題)
- }
- 在下面的文件中
- vim /usr/local/nagios/etc/objects/129.cfg添加
- define service{
- use generic-service
- host_name 129
- service_description mysql
- check_command check_mysql!192.168.1.129!3306!xxxx!123456(這一行l(wèi)iuyu文檔上是對的 這一行要注意 不是check_nrpe!check_http這種形式)
- notifications_enabled 0
- }
- 重啟nagios服務(wù)和http服務(wù)
- service nagios restart
- service httpd restart
- nagios監(jiān)控tomcat存活狀態(tài)
- 被監(jiān)控機不需要任何操作(因為check_tcp!8080不需要通過nrpe來監(jiān)控)
- 監(jiān)控端
- /usr/local/nagios/etc/objects/commands.cfg已經(jīng)存在check_tcp命令 故也不需要操作
- 在下面的文件中
- vim /usr/local/nagios/etc/objects/hong221.cfg添加
- define service{
- use generic-service
- host_name hong221
- service_description tomcat
- check_command check_tcp!8080!xxxxx
- }
- 收到檢測 執(zhí)行下面命令
- [root@nagios objects]# /usr/local/nagios/libexec/check_tcp -H xxxxx -p 8080
- TCP OK - 0.141 second response time on port 8080|time=0.141140s;;;0.000000;10.000000
- 重啟nagios服務(wù)和http服務(wù)
- service nagios restart
- service httpd restart
- 然后在監(jiān)控端就可以看到監(jiān)控頁面了
- nagios配置139郵箱報警
- 關(guān)于mail發(fā)送郵件139郵箱收不到的解決辦法
- tail -f /var/log/maillog 日志報錯如下
- Feb 21 17:20:49 localhost postfix/qmgr[2072]: A296612227F: from=
, size=700, nrcpt=1 (queue active) - Feb 21 17:20:49 localhost sendmail[2275]: q1L9KmDa002275: to=xxxxx@139.com, ctladdr=root (0/0), delay=00:00:01, xdelay=00:00:0
- 0, mailer=relay, pri=30221, relay=[127.0.0.1] [127.0.0.1], dsn=2.0.0, stat=Sent (Ok: queued as A296612227F)
- Feb 21 17:20:49 localhost postfix/smtpd[2276]: disconnect from localhost.localdomain[127.0.0.1]
- Feb 21 17:20:50 localhost postfix/smtp[2280]: A296612227F: to=
, relay=mx1.mail.139.com[221.176.9.178]:25, delay - =0.53, delays=0.05/0.01/0.24/0.23, dsn=5.0.0, status=bounced (host mx1.mail.139.com[221.176.9.178] said: 550 985a4f43618db72-3c5de Mail rejected (in reply to end of DATA command))
- Feb 21 17:20:50 localhost postfix/cleanup[2279]: 43FB812227E: message-id=<20120221092050.43FB812227E@localhost.localdomain>
- Feb 21 17:20:50 localhost postfix/qmgr[2072]: 43FB812227E: from=<>, size=2697, nrcpt=1 (queue active)
- Feb 21 17:20:50 localhost postfix/bounce[2281]: A296612227F: sender non-delivery notification: 43FB812227E
- Feb 21 17:20:50 localhost postfix/qmgr[2072]: A296612227F: removed
- 經(jīng)指點是由于hostname(localhost.localdomain)的問題 可能會被139郵箱當(dāng)做垃圾郵件
- [root@nagios objects]# cat /etc/sysconfig/network
- NETWORKING=yes
- #HOSTNAME=localhost.localdomain
- HOSTNAME=nagios.localdomain
- [root@nagios objects]# cat /etc/hosts
- 192.168.1.130 nagios.localdomain nagios # Added by NetworkManager
- 127.0.0.1 localhost.localdomain localhost
- ::1 nagios.localdomain nagios localhost6.localdomain6 localhost6
- 故隨便改了一個名字 然后重啟服務(wù)器發(fā)現(xiàn)可以使用了 139郵箱也能收到郵件了
- 關(guān)于服務(wù)報警nagios方面的配置
- 監(jiān)控機上
- vim /usr/local/nagios/etc/objects/contacts.cfg
- define contact{
- contact_name nagiosadmin ; Short name of user
- use generic-contact ; Inherit default values from generic-contact template (defined abov
- e)
- alias Nagios Admin ; Full name of user
- service_notification_period 24x7
- host_notification_period 24x7
- service_notification_options w,u,c,r
- host_notification_options d,u,r
- service_notification_commands notify-service-by-email
- host_notification_commands notify-host-by-email
- email xxxxx@139.com(寫上你要發(fā)送到的郵箱里面 139郵箱運維必備) ; <<***** CHANGE THIS TO YOUR EMAIL ADDRESS ******
- }
- define contactgroup{
- contactgroup_name admins
- alias Nagios Administrators
- members nagiosadmin
- }
- 然后重啟nagios服務(wù)即可
- service nagios restart
- 注意在主機配置文件中 有下面語句的服務(wù)出了問題才會報警
- notifications_enabled 1 (1是報警 0為不報警)
- 注意申請139郵箱的時候短信要選長格式的
- 郵件到達通知 要改成24小時的
- vim templates.cfg
- define service{
- name generic-service ; The 'name' of this service template
- active_checks_enabled 1 ; Active service checks are enabled
- passive_checks_enabled 1 ; Passive service checks are enabled/accepted
- parallelize_check 1 ; Active service checks should be parallelized (disabling this can l
- ead to major performance problems)
- obsess_over_service 1 ; We should obsess over this service (if necessary)
- check_freshness 0 ; Default is to NOT check service 'freshness'
- notifications_enabled 1 ; Service notifications are enabled
- event_handler_enabled 1 ; Service event handler is enabled
- flap_detection_enabled 1 ; Flap detection is enabled
- failure_prediction_enabled 1 ; Failure prediction is enabled
- process_perf_data 1 ; Process performance data
- retain_status_information 1 ; Retain status information across program restarts
- retain_nonstatus_information 1 ; Retain non-status information across program restarts
- is_volatile 0 ; The service is not volatile
- check_period 24x7 ; The service can be checked at any time of the day
- max_check_attempts 3 ; Re-check the service up to 3 times in order to determine its final
- (hard) state
- normal_check_interval 10 ; Check the service every 10 minutes under normal conditions
- retry_check_interval 2 ; Re-check the service every two minutes until a hard state can be d
- etermined
- contact_groups admins ; Notifications get sent out to everyone in the 'admins' group
- notification_options w,u,c,r ; Send notifications about warning, unknown, critical, and recovery
- events
- notification_interval 10 (這個就是間隔多少時間發(fā)一次報警信息) ; Re-notify about service problems every hour
- notification_period 24x7 ; Notifications can be sent out at any time
- register 0 ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL SERVICE, JUST A TEM
- PLATE!
- }
- nagios相關(guān)錯誤解決方法
- 錯誤解決方法
- 一 當(dāng)新增加一臺監(jiān)控主機(舉例為129的load)監(jiān)控項
- 點擊Scheduling Queue--129load時 Status Information :這一項提示為CHECK_NRPE: Socket timeout after 10 seconds
- 檢查
- 1 首先在監(jiān)控主機上 執(zhí)行
- /usr/local/nagios/libexec/check_nrpe -H 192.168.1.129
- 看能不能得到NRPE的版本號
- 然后查看iptables是否有相關(guān)限制
- 2 查看文件權(quán)限
- cd /usr/local/nagios/etc/objects
- [root@localhost objects]# ll
- total 52
- -rw-r--r-- 1 root root 314 Feb 16 15:58 129.cfg
- -rwxrwxrwx 1 nagios nagios 7856 Feb 16 16:06 commands.cfg
- -rwxrwxrwx 1 nagios nagios 2166 Feb 16 13:58 contacts.cfg
- -rwxrwxrwx 1 nagios nagios 5403 Feb 16 13:58 localhost.cfg
- -rwxrwxrwx 1 nagios nagios 3124 Feb 16 13:58 printer.cfg
- -rwxrwxrwx 1 nagios nagios 3293 Feb 16 13:58 switch.cfg
- -rwxrwxrwx 1 nagios nagios 10812 Feb 16 13:58 templates.cfg
- -rwxrwxrwx 1 nagios nagios 3209 Feb 16 13:58 timeperiods.cfg
- -rwxrwxrwx 1 nagios nagios 4007 Feb 16 13:58 windows.cfg
- 看看新增加的這個監(jiān)控主機文件權(quán)限是不是nagios用戶可讀可寫 不可以的話參照其他文件修改如下
- [root@localhost objects]# ll
- total 52
- -rwxrwxrwx 1 nagios nagios 314 Feb 16 15:58 129.cfg
- -rwxrwxrwx 1 nagios nagios 7856 Feb 16 16:06 commands.cfg
- -rwxrwxrwx 1 nagios nagios 2166 Feb 16 13:58 contacts.cfg
- -rwxrwxrwx 1 nagios nagios 5403 Feb 16 13:58 localhost.cfg
- -rwxrwxrwx 1 nagios nagios 3124 Feb 16 13:58 printer.cfg
- -rwxrwxrwx 1 nagios nagios 3293 Feb 16 13:58 switch.cfg
- -rwxrwxrwx 1 nagios nagios 10812 Feb 16 13:58 templates.cfg
- -rwxrwxrwx 1 nagios nagios 3209 Feb 16 13:58 timeperiods.cfg
- -rwxrwxrwx 1 nagios nagios 4007 Feb 16 13:58 windows.cfg