網路監控 
實作 
by netman<netman@study-area.org>
主題大綱 
● Tcpdump 
● Wireshark 
● Ntop 
● Mrtg 
● Cacti 
● Nagios 
● OpenNMS
tcpdump
tcpdump 
● http://www.tcpdump.org/ 
● CLI 模式的封包截取工具 
● 使用 libpcap 作為封包處理函式庫 
● 大多數 Unix-based 作業系統均內建
截取參數 
-D 
顯示所有可截取的網卡 
-i [interface] 
選擇網卡 
any 表示所有的網卡 
-p 
不將網卡切入 promiscuous mode 
-F [file] 
由指定的檔案讀取 Filter Expression 
-s 
限制封包長度 (預設為 68 bytes) 
0 表示不限制,錄下完整封包
儲存參數 
-c [封包數] 
錄下指令數量的封包後停止 
-C [檔案大小] 
限制記錄檔案之大小 (搭配 -w 指定檔名) 
達到上限時將開新檔繼續儲存 
單位為 1,000,000 bytes 
-W [檔案數] 
限制 -C 參數儲存之檔案數量
檔案參數 
-w [file] 
將截取封包寫入至檔案 
-U 
搭配 -w 寫入檔案時,不作緩存 
-r [file] 
由指定檔案取得封包
顯視參數 
-A 
以 ASCII 字元顯示封包內容 
-e 
顯示 Link Layer 資訊 (例如MAC-Address) 
-n 
不作名稱解析 (主機名稱、服務名稱… etc) 
-v 
顯示較詳細的封包資訊 
-v 、 -vv 、 -vvv 三種等級 
-x / -xx 
將封包內容以 hex 格式顯示 
-X / -XX 
將封包內容以 hex 及 ASCII 格式顯示
時間參數 
-t 
不顯示時間戳記 
-tt 
顯示 UNIX timestamp 格式 
-ttt 
顯示每個封包之間隔 (micro seconds) 
-tttt 
顯示標準格式 (yyyy-mm-dd hh:mm:ss.ms)
協定參數 
Layer 2 
arp 
rarp 
stp 
vlan 
Layer 3 
ip 
ip6 
Layer 4 
tcp 
udp 
icmp
目標參數 
src/dst 
ether 
host 
net 
port
封包參數 
broadcast 
multicast
數值運算 
= : equal 
< : less 
> : greater
羅輯運算 
! : not 
&& : and 
|| : or
範例 
● 觀察eth0網頁連線 
tcpdump -i eth0 tcp port 80 
● 觀察 eth1 arp 封包 
tcpdump -i eth1 arp 
● 觀察對 168.95.1.1 之 DNS 查詢 
tcpdump host 168.95.1.1 and udp port 53 
● 錄下 POP3封包 
tcpdump -w pop3.pcap tcp port 110 
● 觀察 TCP SYN 封包 
tcpdump ‘tcp[tcpflags] == 2’
練習1 
● 請問如下是什麼指令引起的封包? 
● 從哪個來源發起至哪個目的地?
練習2 
● 請從下載的封包檔中提取管理員(root)的密碼
wireshark
Wireshark 
● http://www.wireshark.org/ 
● 早期名稱為 ethereal 
● GUI 界面的封包截取工具 
● 可作為 sniffer 截取封包來分析 
● 亦可重組封包取出資料區
下載 
http://www.wireshark.org/download.html
安裝 
yum -y install wireshark wireshark-gnome
Sample Captures 
http://wiki.wireshark.org/SampleCaptures
執行
配置
截取選項
截取
分析 
● Follow Stream
IP來源分析 
● MaxMind GeoIP Database 
http://geolite.maxmind.com/download/geoip/da 
tabase/ 
● How To Use GeoIP With Wireshark 
http://wiki.wireshark.org/HowToUseGeoIP
IP來源分析 
● 起用 GeoIP
Linux network monitoring hands-on pratice
統計 
● 總覽
統計 
● 協定層級
統計 
● 對談
另存為...
參考資源 
● User’s Guide 
http://www.wireshark.org/docs/wsug_html_chunked/ 
● Display Filter Reference 
http://www.wireshark.org/docs/dfref/ 
● Wiki 
http://wiki.wireshark.org/ 
● Manual 
http://www.wireshark.org/docs/man-pages/ 
● FAQ 
http://www.wireshark.org/faq.html
ntop
ntop 
● http://www.ntop.org/ 
● 即時的流量分析/統計工具 
● 功能 
– Mirror Traffic 
– NetFlow/sFlow 
– In-Line Analysis
下載 
http://www.ntop.org/download.html
安裝 
wget http://pkgs.repoforge.org/rpmforge-release/ 
rpmforge-release-0.5.2-2.el5.rf.i386.rpm 
rpm -ivh rpmforge-release-0.5.2-2.el5.rf.i386.rpm 
yum install ntop
設定 
● 編輯 /etc/ntop.conf 
– --http-server=3000 
● 可變更 http server port 
– --interface=eth0 
● 可變更聆聽之網路界面 
– --local-subnets=xx.xx.xx.xx/yy 
● 定義本地端網段 
– 以及其他開放項目都要增加=
設定 
● 編輯 /etc/init.d/ntop (CentOS Only) 
– 把這行 
daemon $prog -d -L @/etc/ntop.conf 
– 修改為: 
daemon $prog @/etc/ntop.conf -d -L
啟動 
● ntop -A 
– 輸入登入密碼 
– Ctrl+C 停止 
● service ntop start 
● chkconfig ntop on
登入 
http://[IP]:3000/
參考資源 
● Ntop Blog 
http://www.ntop.org/blog/ 
● Ntop Overview 
http://www.ntop.org/ntop-overview.pdf 
● Ntop Presentation 
http://www.ntop.org/OpenSourceConf_Athens2 
008.pdf 
● Manpage 
http://www.ntop.org/ntop-man.html
mrtg
mrtg 
● http://www.mrtg.org/ 
● Multi Router Traffic Grapher 
● 利用SNMP、或客製指令抓取資料,並產生趨 
勢圖表 
● 可產生 日/週/月/年 下之平均數據 
● 常用來紀錄 
– 網路界面流量 
– 主機負載 (CPU/Memory/ … etc) 
– 磁碟使用率In-Line Analysis
安裝 
yum install mrtg net-snmp net-snmp-utils
設定 
● 修改 /etc/snmp/snmpd.conf 
● 在如下句子下修改: 
# YOU SHOULD CHANGE THE 
"COMMUNITY" TOKEN BELOW TO A NEW 
KEYWORD ONLY 
● 主要修改: 
com2sec local localhost netadmin 
com2sec mynetwork 10.10.10.0/24 netadmin
設定 
● 取消下行註解 
group MyRWGroup any local 
group MyROGroup any mynetwork 
view all included .1 80 
access MyROGroup "" any noauth 0 
all none none 
access MyRWGroup "" any noauth 0 
all all all
設定 
● 重新運行 snmpd 
service snmpd restart 
chkconfig snmpd on 
● 并以 snmpwalk 進行測試 
snmpwalk localhost -c netadmin -v 1
設定 
● 產生mrtg設定檔 
cd /etc/mrtg 
cfgmaker netadmin@[IP] >> mrtg.cfg 
● 執行 
LANG=C mrtg /etc/mrtg/mrtg.cfg 
● 執行三次 
● 產生mrtg首頁 
indexmaker --columns=1  
--output=/var/www/mrtg/index.html  
/etc/mrtg/mrtg.cfg
觀察結果 
● 起動 apache: 
service httpd restart 
chkconfig httpd on 
● 用瀏覽器察看: 
http://[ip]/mrtg 
● 或需修改: 
/etc/httpd/conf.d/mrtg.conf
cacti
cacti 
● http://www.cacti.net/ 
● 利用 php + mysql + rrdtool 畫出各種圖表的網 
管軟體 
● 常用來取代傳統的 mrtg 
● 可為各常用設備定義 template,套用方便
需求 
● php 
– 執行網頁界面 
● mysql 
– 存放網頁界面資料庫 
● rrdtool 
– 處理 rrd 資料 
● net-snmp 
– 抓取 snmp 資料
下載 
http://www.cacti.net/download_cacti.php
安裝 
yum -y install cacti mysql-server
資料庫處理 
● 啟動 MySQL 
– service mysqld start 
– chkconfig mysqld on 
● 建立 cacti 資料庫、帳號 
– mysql 
● mysql> create database cacti; 
● mysql> grant all on cacti.* to cacti@localhost 
identified by 'password'; 
● mysql> quit 
● 匯入資料庫 
– mysql cacti -u cacti -p < 
/var/www/cacti/cacti.sql
● 編輯設定檔 
– vim /var/www/cacti/include/config.php 
● $database_type = "mysql"; 
● $database_default = "cacti"; 
● $database_hostname = "localhost"; 
● $database_username = "cacti"; 
● $database_password = "password"; 
● $database_port = "3306"; 
● $url_path = “/cacti/”; 
● 重新起點 apache 
service apache restart
進入安裝界面 
http://[IP]/cacti/install/
選擇 New Install
選擇 Finish
登入 
● http://[IP]/cacti/ 
● 預設帳密為 admin/admin,登入後需改密碼
新增步驟 
● 新增主機 
– Devices → Add 
● 填入Description、Hostname 
● 選擇Host Template 
● 設定 SNMP Options(community) 
● Create
新增主機
新增步驟 
● 建立圖表 
– Devices → 點進該設備 → Create Graphs for 
this Host 
● 勾選欲建立之圖表後 
● Create
建立圖表 
建立圖表
新增步驟 
● 放置圖表 
– Devices → 勾選選擇該設備 (最右邊) 
● 下拉選單: 
– Place on a Tree 
● Go & Continue
放置圖表
● 管理圖表 
– Graph Trees → Add 
● 可建出各類設備之樹狀結構 
– Graph Management 
● 勾選欲置放之圖表 
● Choose an action: Place on a Tree 
– Destination Branch (如有子節點) 
– Yes
● 觀看圖表 
– 切換至 Graphs 標簽 
● 展開 Graph Tree 
● 選擇主機
觀看圖表
取得Host Template 
http://forums.cacti.net/forum-12.html
http://www.debianhelp.co.uk/cactitemplates.htm
匯入 Template
poller 
● cmd.php 
– 以 php 開發 
– cacti 預設的 poller script 
– 偵測主機多時效率不佳 
● spine (cactid) 
– 使用 C 語言開發 
– 以multi-process + multi-thread執行,效率較好
spine (cactid) 
http://www.cacti.net/spine_download.php
安裝spine 
● yum install cacti-spine
設定spine 
● 編輯設定檔 
– vim /etc/spine.conf 
● DB_Host localhost 
● DB_Database cacti 
● DB_User cacti 
● DB_Pass password 
● DB_Port 3306
使用 spine 
設定 spine 路徑(settings → Path: /usr/bin/spine)
更改 Poller Type
opennms
opennms 
● http://www.opennms.org/ 
● Open Source / Free 的監控工具 
● 網路狀態監控工具 
● 可發出即時 Alert 
● 常用於觀察 
● 主機服務 
● 網路節點狀態
安裝 
yum install opennms opennms-plugins 
opennms-plugins-nrpe 
* or 參考: 
http://eggchang.pixnet.net/blog/post/32659238
安裝與設定 PostgreSQL 
● 安裝 postgresql 
yum -y install postgresql postgresql-server 
postgresql-jdbc 
● 讓 postgresql 於開機時自動執行 
chkconfig --level 345 postgresql on 
● 第一次啟動 postgresql 
service postgresql start
● 修改 postgresql 啟動參數 
cd /var/lib/pgsql/data 
mv pg_hba.conf pg_hba.conf.bak 
sed 's/ident sameuser/trust/g' 
pg_hba.conf.bak > pg_hba.conf 
● 重新啟動 postgresql 
service postgresql restart
安裝與設定 JDK 
● 下載 jdk 
wget http://download.oracle.com/otn-pub/ 
java/jdk/6u22-b04/jdk-6u22-linux-i586- 
rpm.bin 
● 安裝 JDK 
bash jdk-6u22-linux-i586-rpm.bin
● 設定環境變數 
cat << EOF > /etc/profile.d/java.sh 
export JAVA_HOME=/usr/java/default 
export PATH=$JAVA_HOME/bin:$PATH 
EOF 
cat << EOF > /etc/profile.d/java.csh 
set JAVA_HOME=/usr/java/default 
set PATH=$JAVA_HOME/bin:$PATH 
EOF 
source /etc/profile.d/java.sh
下載與安裝 OpenNMS 
● 安裝 OpenNMS 的 yum repositories 
rpm -ivh 
http://yum.opennms.org/repofiles/open 
nms-repo-stable-rhel5.noarch.rpm 
● 建立與設定資料庫 
sudo -u postgres createdb -U postgres 
-E UNICODE opennms 
yum -y install iplike
● 安裝 OpenNMS 
yum -y install opennms mib2opennms 
opennms-* 
● 設定 OpenNMS 
/opt/opennms/bin/runjava -s 
/opt/opennms/bin/install -dis 
chkconfig opennms on 
● 啟動 OpenNMS 
service opennms start
http://[IP]:8980/opennms/
參考資源 
● OpenNMS Documentation 
– http://www.opennms.org/documentation 
● Official OpenNMS Documentation 
– http://support.opennms.com/knowledgebase/officialdocs 
● OpenNMS Wiki 
– http://wiki.opennms.org/index.php/Main_Page 
● Installation:Yum 
– http://www.opennms.org/wiki/Installation:Yum 
● OpenNMS Documentation Overview 
– http://www.opennms.org/wiki/Docu-overview 
● OpenNMS FAQ 
– http://www.opennms.org/wiki/FAQ
nagios
Nagios 
● http://www.nagios.org/ 
● Open Source / Free 的監控工具 
● 網路狀態監控工具 
● 可發出即時 Alert 
● 常用於觀察 
– 主機服務 
– 網路節點狀態
安裝 
● YUM 
yum install nagios*
系統設定 
● 建立httpd帳號 
htpasswd -c /etc/nagios/htpasswd.users 
nagiosadmin 
htpasswd /etc/nagios/htpasswd.users 
nagiosuser 
● 啟動服務 
service httpd restart 
service nagios start 
chkconfig httpd on 
chkconfig nagios on
測試連線 
● 檢查設定檔語法 
nagios -v /etc/nagios/nagios.cfg 
● http://127.0.0.1/nagios/ 
– 以 nagiosadmin 登入
設定 
● 修改管理員信箱 
vi /etc/nagios/objects/contacts.cfg 
define contact{ 
email user@domain ;
設定 
● 設定 nrpe 
echo 'nrpe 5666/tcp' >> /etc/services 
serivce nrpe start 
chkconfig nrpe on
設定 
● 測試 nrpe 
/usr/lib/nagios/plugins/check_nrpe -H 
localhost -c check_users 
/usr/lib/nagios/plugins/check_nrpe -H 
localhost -c check_load 
/usr/lib/nagios/plugins/check_nrpe -H 
localhost -c check_total_procs 
/usr/lib/nagios/plugins/check_nrpe -H 
localhost -c check_zombie_procs
設定 
● 測試硬碟空間 
vi /etc/nagios/nrpe.cfg 
allowed_hosts=127.0.0.1,ip.ip.ip.ip 
command[check_root_space]=/usr/l 
ib/nagios/plugins/check_disk -w 
20% -c 10% -p /dev/VG/root_LV 
serive nrpe restart 
/usr/lib/nagios/plugins/check_nrpe -H 
localhost -c check_root_space
設定 
● 建立主機組態 
cp /etc/nagios/objects/windows.cfg 
/etc/nagios/objects/linux.cfg 
vi /etc/nagios/objects/linux.cfg 
● use linux-server 
● host_name linuxserver 
● Address 10.10.2.1 
● hostgroup_name linux-servers
設定 
● vi /etc/nagios/objects/linux.cfg 
– 把全部 host_name 從 winserver 修改 
為 linuxserver (前面定義的) 
– 刪除多餘的 service { … } 
define service{ 
use generic-service 
host_name linuxserver 
service_description Online Users 
check_command check_nrpe!check_users 
}
設定 
● 定義 nrpe 命令 
vi /etc/nagios/objects/commands.cfg 
# 'check_nrpe' command definition 
define command{ 
command_name check_nrpe 
command_line $USER1$/check_nrpe -H 
$HOSTADDRESS$ -c $ARG1$ 
}
設定 
● 修改 /etc/nagios/nagios.cfg : 
cfg_file=/etc/nagios/objects/linux.cfg 
● 檢查組態 
nagios -v /etc/nagios/nagios.cfg 
● 重新執行服務 
service nagios restart
參考資源 
● OpenNagios 
– http://software.opensuse.org/ymp/openS 
USE:11.3/standard/nagios.ymp 
● Nagios Plugins 
– http://software.opensuse.org/ymp/openS 
USE:11.3/standard/nagios-plugins.ymp 
● Nagios Addons Extras 
– http://software.opensuse.org/ymp/openS 
USE:11.3/standard/nagios-plugins-extras. 
ymp
Q & A

More Related Content

PDF
Linux Network Monitoring
PDF
Linux system security
PDF
Linux基础
PPT
使用Nginx轻松实现开源负载均衡
DOC
Nginx+常见应用技术指南
PPTX
线上问题排查交流
DOC
康盛创想项目部Linux 服务器部署标准(最新版)
PDF
Gdb principle
Linux Network Monitoring
Linux system security
Linux基础
使用Nginx轻松实现开源负载均衡
Nginx+常见应用技术指南
线上问题排查交流
康盛创想项目部Linux 服务器部署标准(最新版)
Gdb principle

What's hot (20)

PDF
再生龍於雲端環境之應用
DOC
X64服务器 lamp服务器部署标准 new
PDF
Apache trafficserver
PPTX
《保哥線上講堂》打造一個具有 Linux 溫度的 Windows 命令提示字元工具
PDF
Golang 高性能实战
PPT
使用Nginx轻松实现开源负载均衡
PPT
使用Nginx轻松实现开源负载均衡
PPT
高性能Web服务器Nginx及相关新技术的应用实践
PDF
聊聊我接触的集群管理
PPT
使用Nginx轻松实现开源负载均衡——对外版
PPTX
lua & ngx_lua 的介绍与应用
DOC
Mysql proxy+mysql-mmm
PPT
PHP Optimization for Millions Visits Level
PDF
2012 php conf slide PIXNET 如何使用 php
PDF
淘宝主备数据库自动切换
PPTX
使用Rpm&yum进行基础软件管理
DOC
Apache+php+mysql在Linux下的安装与配置
PPTX
Track2 -刘继伟--openstack in gamewave
PPT
系统性能分析和优化.ppt
PPT
构建ActionScript游戏服务器,支持超过15000并发连接
再生龍於雲端環境之應用
X64服务器 lamp服务器部署标准 new
Apache trafficserver
《保哥線上講堂》打造一個具有 Linux 溫度的 Windows 命令提示字元工具
Golang 高性能实战
使用Nginx轻松实现开源负载均衡
使用Nginx轻松实现开源负载均衡
高性能Web服务器Nginx及相关新技术的应用实践
聊聊我接触的集群管理
使用Nginx轻松实现开源负载均衡——对外版
lua & ngx_lua 的介绍与应用
Mysql proxy+mysql-mmm
PHP Optimization for Millions Visits Level
2012 php conf slide PIXNET 如何使用 php
淘宝主备数据库自动切换
使用Rpm&yum进行基础软件管理
Apache+php+mysql在Linux下的安装与配置
Track2 -刘继伟--openstack in gamewave
系统性能分析和优化.ppt
构建ActionScript游戏服务器,支持超过15000并发连接
Ad

Viewers also liked (20)

PDF
Linux fundamental - Chap 02 perm
PDF
Docker on Windows
PPT
Using Selenium to Test Native Apps (Wait, you can do that?)
PDF
Linux fundamental - Chap 16 System Rescue
PDF
Chap 17 advfs
PDF
Chap 18 net
PPT
Linux Commands
ODP
Ras pioverview
PDF
Linux pipe & redirection
PPT
Unix tutorial-08
PDF
Linux fundamentals
PPTX
Basics of-linux
PPT
Power point (asking permission)
PPTX
Unix - Filters/Editors
PDF
Chap 19 web
PDF
Linux fundamental - Chap 13 account management
PDF
Linux fundamental - Chap 05 filter
PDF
Linux fundamental - Chap 09 pkg
PDF
Linux fundamental - Chap 14 shell script
PDF
Linux-Permission
Linux fundamental - Chap 02 perm
Docker on Windows
Using Selenium to Test Native Apps (Wait, you can do that?)
Linux fundamental - Chap 16 System Rescue
Chap 17 advfs
Chap 18 net
Linux Commands
Ras pioverview
Linux pipe & redirection
Unix tutorial-08
Linux fundamentals
Basics of-linux
Power point (asking permission)
Unix - Filters/Editors
Chap 19 web
Linux fundamental - Chap 13 account management
Linux fundamental - Chap 05 filter
Linux fundamental - Chap 09 pkg
Linux fundamental - Chap 14 shell script
Linux-Permission
Ad

Similar to Linux network monitoring hands-on pratice (20)

PPT
Построение гиперболического параболоида
PPTX
20121111 linux intro
PPT
use Nagios on openSUSE 11.4
PDF
台科大網路鑑識課程 封包分析及中繼站追蹤
PPTX
滲透測試 Talk @ Nisra
PDF
Some things before network attack
PPT
20030623 linuxbasic and-security
PDF
從「會動就好」到「持續營運」[2023/06/24] @Agile.Taichung
PPT
Monitor is all for ops
PDF
Linux firewall
PPT
Module 08 防火牆
PPT
網路組-Ubuntu介紹
PPTX
SDN ryu 專題安裝
PDF
突破困境:資安開源工具之應用分享 [2019/03/21] @臺灣資安大會
PDF
光載無限監控平台的變革與演進
PDF
LibreNMS 資安應用經驗分享 [2019/07/11] @國際資訊安全組織臺灣高峰會
PPT
傅譯賢成功案例
PDF
2010 cyberoam techsheet-s
PPTX
Ch5 network basic(2013 ncu-nos_nm)
PDF
2011 q2 drbl-clonezilla.advanced_v9
Построение гиперболического параболоида
20121111 linux intro
use Nagios on openSUSE 11.4
台科大網路鑑識課程 封包分析及中繼站追蹤
滲透測試 Talk @ Nisra
Some things before network attack
20030623 linuxbasic and-security
從「會動就好」到「持續營運」[2023/06/24] @Agile.Taichung
Monitor is all for ops
Linux firewall
Module 08 防火牆
網路組-Ubuntu介紹
SDN ryu 專題安裝
突破困境:資安開源工具之應用分享 [2019/03/21] @臺灣資安大會
光載無限監控平台的變革與演進
LibreNMS 資安應用經驗分享 [2019/07/11] @國際資訊安全組織臺灣高峰會
傅譯賢成功案例
2010 cyberoam techsheet-s
Ch5 network basic(2013 ncu-nos_nm)
2011 q2 drbl-clonezilla.advanced_v9

More from Kenny (netman) (18)

TXT
rpi_audio configuration steps
PDF
Rpi audio
PDF
Importance of linux system fundamental in technical documentation reading
PDF
Ha opensuse
PDF
About the Course
PDF
Linux fundamental - Chap 15 Job Scheduling
PDF
Linux fundamental - Chap 12 Hardware Management
PDF
Linux fundamental - Chap 11 boot
PDF
Linux fundamental - Chap 10 fs
PDF
Linux fundamental - Chap 08 proc
PDF
Linux fundamental - Chap 07 vi
PDF
Linux fundamental - Chap 06 regx
PDF
Linux fundamental - Chap 04 archive
PDF
Linux fundamental - Chap 03 file
PDF
Linux fundamental - Chap 01 io
PDF
Linux fundamental - Chap 00 shell
PDF
加密應用(GPG)
PDF
金鑰管理 (PKI)
rpi_audio configuration steps
Rpi audio
Importance of linux system fundamental in technical documentation reading
Ha opensuse
About the Course
Linux fundamental - Chap 15 Job Scheduling
Linux fundamental - Chap 12 Hardware Management
Linux fundamental - Chap 11 boot
Linux fundamental - Chap 10 fs
Linux fundamental - Chap 08 proc
Linux fundamental - Chap 07 vi
Linux fundamental - Chap 06 regx
Linux fundamental - Chap 04 archive
Linux fundamental - Chap 03 file
Linux fundamental - Chap 01 io
Linux fundamental - Chap 00 shell
加密應用(GPG)
金鑰管理 (PKI)

Linux network monitoring hands-on pratice