带宽调度器AppBand可以为Windows应用程序分配网络带宽并指定数据收发的优先级,用软件的方式实现桌面应用的简单QOS调度。(1)
P2P方式的下载软件(BT/eMule/迅雷等)或者在线播放占用了绝大部分单机带宽,而浏览器、游戏程序往往在争夺带宽中落于下风。在P2P下载的同时打不开网页或者游...
分类:
移动开发 时间:
2014-04-28 08:39:17
阅读次数:
628
1) 获取远程主机的端口信息和识别主机操作系统(Get info about remote host
ports and OS detection)nmap -sS -P0 -sV -O 可以是独立IP, 一个主机名 或一个子网-sS TCP
SYN扫描(也叫半开或隐蔽扫描)-P0 选项允许你...
分类:
其他好文 时间:
2014-04-28 01:10:16
阅读次数:
650
Page 30Perceptual blocks are obstacles that
prevent the problem-solver from clearly perceiving either the problem itself or
the information needed to ...
分类:
其他好文 时间:
2014-04-28 00:54:37
阅读次数:
403
记录自己的第一个比较长的汇编代码,
看学完后,回过头再来看的感觉是什么。没新意的想法写出来的代码,只是没有纯dos环境。通过debug倒是看到全部的结果,不过是一个个显示
。题目是王爽汇编实验9.本是自己记录,当然,大家有什么看法,欢迎随便说说。assume cs:code, ss:stacksgd...
分类:
其他好文 时间:
2014-04-27 23:24:06
阅读次数:
492
Page 6:Natural tendency in problem solving is
to pick the first solution that comes to mind and run with it. The disadvantage
of this approach is you ...
分类:
其他好文 时间:
2014-04-27 21:27:40
阅读次数:
510
Netstat 状态分析Netstat状态分类用netstat
-an命令查看!再stat下面有一些英文,简单说一下这些英文具体都代表什么:LISTEN:(Listening for a
connection.)侦听来自远方的TCP端口的连接请求SYN-SENT:(Active; sent SYN....
分类:
Web程序 时间:
2014-04-27 21:05:38
阅读次数:
1249
一、生产服务器netstattcp连接状态................................................................................21.1生产服务器某个业务LVS负载均衡上连接状态数量.........................
分类:
Web程序 时间:
2014-04-27 20:59:53
阅读次数:
3044
编程过程中,有时候需要判断主机是否在线,最简单的方法就是使用Windows的Ping命令看看能否ping通。看到网上很多文章,说用C#去调用windows的ping.exe,然后解析返回的字符串。我觉得这种方式太麻烦了,就做一下简单判断,不想弄那么麻烦。
查了一下,C#专门提供了一个Ping类,与Windows下的ping命令类似:
命令空间: System.Net.NetworkInform...