码迷,mamicode.com
首页 > 其他好文 > 详细

一些小技艺

时间:2016-05-24 00:14:21      阅读:165      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!