项目中常用网络命令

IP欺骗

iptables -t nat -L
 
 修改 
 echo "1" >/proc/sys/net/ipv4/ip_forward

 #ip欺骗
 iptables -t nat -A POSTROUTING -s 192.168.1.13   -j MASQUERADE


 #端口映射
 ssh -CNfg -L 9080:localhost:9443 10.10.10.11


#路由策略
route add -net 10.66.217.0/24 gw 10.66.216.254 eth0


 #检测磁盘速度 读取速度
hdparm -t /dev/sda6


#测试写入文件速度
dd if=/dev/zero  bs=1024 count=1000000 of=/root/1GB.file


#DNS配哦这

/etc/resolv.conf 里面
nameserver 202.197.64.6
nameserver 202.197.64.22


你可能感兴趣的:(项目中常用网络命令)