首页 > 其他 > 详细

一些小技艺

时间:2016-05-24 00:12:58      阅读:205      评论:0      收藏:0      [点我收藏+]

1. generate RSA key

 ssh-keygen -t rsa -C "dizhonghu@gmail.com" 

 

2. tcpdump 

tcpdump -n host 173.39.168.250 or host 192.168.0.5
tcpdump tcp and port 1270
tcpdump tcp and port 1270 -s 0 -w tcp.dat
tcpdump -i eth0 -vnn host 10.224.166.211 -w test.cap

 

3. wireshark filter

ip.src==10.224.173.43 && udp.srcport==7901
ip.dst==10.224.173.43
ip.src==10.224.173.43 && udp.srcport==7901 && ip.dst==10.224.173.91 && udp.dstport==58504
(ip.src==10.224.173.43 && ip.dst==10.224.173.91)||(ip.src==10.224.173.91  && ip.dst==10.224.173.43)
(ip.src==10.224.173.43 && udp.srcport ==1202 && ip.dst==10.224.173.91 && udp.dstport==17237)||(ip.src==10.224.173.91 && udp.srcport==17237 && ip.dst==10.224.173.43&& udp.dstport ==1202)
(ip.src == 10.224.82.94) || (ip.src == 10.224.55.66) || (ip.dst == 10.224.82.94 )||( ip.dst == 10.224.55.66)

 

 4. vi shortcut

技术分享 

 

5. iTerm shortcut

技术分享 

 

 6. opensource lisence

 技术分享

 

7. UML

技术分享 

 

一些小技艺

原文:http://www.cnblogs.com/awiki/p/5521792.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!