加载中…
  
博文
标签:

转载

QUARTUS 15可参考此法
标签:

编程问题

it

vb6

vs2010

分类: FAQ

用了整整7小时解决掉下面这个问题:

 问题:

System.ArgumentException:参数错误。(异常来自HRESULT:0x800

(2013-11-17 18:16)
标签:

ssh

ftp

sftp

winscp

filezilla

it

分类: 工具软件
SFTP Windows客户端:
  • WinSCP 开源免费
  • FileZilla 开源免费


SFTP Windows服务器端:

  • FileZilla_Server-0_9_41.exe 开源免费

SSH Windows客户端:
  • puTTY . 开源免费
  • SecureCRT  商业付费软件,不过在WINDOWS中TREE时有乱码。


非对称密钥对生成工具,超小型:

puttygen.exe, pageant.exe


标签:

sniffer

filter

wireshark

分类: 网络sniffer工具用法
  1. 过滤TCP协议端口5000,且TCP数据中包含有连续的数据:0x00 00 02 00 00 00 00 01 的正确写法如下:
tcp.port==5000 and tcp contains 00-00-02-00-00-00-00-01
不能写为:   tcp.port==5000 and tcp.data contains 0000020000000001
也不能写为: tcp.port==5000 and tcp contains '00-00-02-00-00-00-00-01'
也不能写为: tcp.port==5000 and tcp contains 0x000002

Wireshark 1.8.3


130604:
可以用:ip.addr == 192.168.0.191 && tcp.port==5000 &&   tcp  contains a7-d8-c1
可以用:ip.addr == 192.168.0.191 && tcp.port==5000 &&   data contains a7-d8-c1
不能用:ip.addr == 192.168.0.191 && tcp.port==5000 &&   tcp.data contains a7-d8-c1
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有