1、查看當前系統每IP鏈接數html
netstat -an | grep 'ESTABLISHED' | awk '{print $4}' | awk -F ":" '{print $1}' | sort -n | uniq -cmysql
2、列出一下服務使用的端口linux
httpsql |
80網絡 |
httpsless |
443ssh |
ftptcp |
數據接口:20 ide 控制接口:21spa |
telnet |
23 |
ssh |
22 |
rsync |
873 |
dns |
5352 |
mysql |
3306 |
grep -Ew"^(http|https|ftp|telnet|ssh|rsync|dns|mysql)" /etc/services
awk --posix '$1~/^(http|https|ftp|telnet|ssh|rsync|dns|mysql)$/{print $0}' /etc/services
awk --posix -F "[ /]+" '$1~/^(http|https|ftp|telnet|ssh|rsync|dns|mysql)$/{print $1,$2}' /etc/services | sort | uniq
3、列出Linux系統下常見的幾種文件格式
uname -r #顯示內核名
ls /lib/modules/2.6.32-358.el6.i686/fs #顯示Linux支持的文件系統
4、在linux下,給eth0配置IP,網關和增長路由
IP:192.168.10.100 網關 192.168.10.1
路由: 到網段 10.10.0.0/255.255.255.0 經過ip 192.168.10.2 出去
ifconfig eth0 192.168.10.100 netmask 255.255.255.0
route add default gw 192.168.10.1
route add -net 10.10.0.0 netmask 255.255.255.0 gw 192.168.10.2
6、寫出172.16.0.10/25和192.168.10.2/23的掩碼地址、廣播地址和反掩碼
1、172.16.0.10/25
掩碼:255.255.255.128 廣播:172.16.0.127 反掩碼:0.0.0.127
2、192.168.10.2/23
掩碼:255.255.254.0 廣播:192.168.11.255 反掩碼:0.0.1.255
3、總結
假設借了n位,則就有2^n 個網段。以1)爲例。借了1位,2個子網。在將256(0-255)按子網數量劃分。則 172.16.0.0是網絡號 172.16.0.127 是廣播
超網是把許多子網合成一個網段。將IP和掩碼換成2進程相與獲得網絡號爲 192.168.10.0。而後主機位全0 --- 主機位全1 即爲地址段。
7、怎麼查某個端口對應的服務
less /etc/services #經過/ 或 ? 查找
cat /etc/services | grep -w '22'
8、tcpdump怎麼抓出IP是 10.10.0.10 tcp 80 端口的包
tcpdump tcp port 80 and host 10.10.0.10