赞
踩
- 提醒:三台模拟机都需要关闭防火墙和清空iptables防火墙中的规则
systemctl stop firewalld或者systemctl disable --now firewalld
setenforce 0
iptables -F && iptables -t nat -F #安装并启动以后查看,如果有就清除再添加新规则
systemctl enable --now firewalld
setenforce 0
yum install -y iptables iptables-servce
iptables -F && iptables -t nat -F
一个IP地址做SNAT转换,一般可以让内网 100到200 台主机实现上网。
systemctl stop firewalld或者systemctl enable --now firewalld
setenforce 0
iptables -F && iptables -t nat -F #安装并启动以后查看,如果有就清除再添加新规则
tcpdump tcp -i ens33 -t -s 0 -c 100 and dst port ! 22 and src net 192.168.80.0/24 -w ./target.cap
tcp: ip icmp arp rarp 和 tcp、udp、icmp这些协议选项等都要放到第一个参数的位置,用来过滤数据包的类型
-i ens33: 只抓经过接口ens33的包
-t:不显示时间戳
-s 0:抓取数据包时默认抓取长度为68字节。加上-s 0 后可以抓到完整的数据
-c 100:只抓取100个数据包
dst port !22:不抓取目标端口是22的数据包
src net 192.168.1.0/24 :数据包的源网络地址为192.168.1.0/24
-w ./target.cap : 保存成cap文件,方便用ethereal(即wireshark)分析
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。