自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(23)
  • 资源 (35)
  • 收藏
  • 关注

原创 线程顺序执行(phtread)

编写一个程序,开启3个线程,这3个线程的ID分别为A、B、C,每个线程将自己的ID在屏幕上打印10遍,要求输出结果必须按ABC的顺序显示;如:ABCABC….依次递推。程序代码如下:#include#includeusing namespace std;#ifdef __cplusplusextern "C"{#endif#include

2012-04-24 20:24:49 510

原创 ”USB Device not Recognized" 问题

今天晚上,插个ipod进行充电时,结果搞出了个”USB Device not Recognized" 问题。最后通过查找网上资料,把笔记本的直插电源和电池都拆掉,使其BIOS断电,重新开机就没有问题了。

2012-02-28 22:35:59 2636

转载 eight characteristics for software

Affordability, to ensure that the total ownership costs of software acquisition and evolution aren't prohibitively highExtensibility, to support successions of quick updates and additions to addre

2011-12-21 20:08:56 406

原创 ld.exe问题

今天出现了编译的时候,把项目src中的文件都编译成.o文件后,把所有的.o文件整合成为可执行文件的时候,出现了ld: Dwarf Error: mangled line number section. 错误提示。后来发现原因是由于调用其他的lib,但是某个lib是使用gcc-4.6版本编译的。而当前使用gcc-4.1版本。故使用gcc-4.1重新生成新的lib后,就不会出现问题了。

2011-12-21 13:16:55 8244 2

原创 写好rose图

画了两天的rose图,结果发现挺糟糕的,没有很好的理解自己的思路,想到那里写到那里,一些解释的地方也没有,应该认为你的东西是要给别人看的,是要让别人懂得你写的东西,还有在用词方面需要好好考虑,如何使用更有意义的词语表达出来。让别人能够更好的理解你的东西。还有对于整体结构也要安排好,达到精益求精。

2011-10-20 23:25:39 527

原创 工作日记2

理清你当前任务,需要完成什么问题,并对这个问题做出分析,理一个思路出来,最好能使用rational rose画出活动图。平常遇到问题的时候,首先你应该先自己想一下,什么问题,问题出在哪里,可能出现该问题的地方。并尝试去解决,如再解决不了,再向你的boss请教,但这个过程中你可以把

2011-10-18 22:51:03 263

原创 ECUT单元测试

今天进一步了解ECUT的使用,以及对ECUT 的单元测试和集成测试的理解,单元测试不能从名字上理解为某个单元的测试,这是因为在测试某个单元的时候,会使用到其他单元,所以这个时候也会对其他的单元进行测试,但是单元测试有一个比较明显的目标,就是要测试我们所需要的单元,测试其他单元只是

2011-10-17 23:14:40 619

转载 全球经济学杂志排名

1 American Economic Review      2 Econometrica                                                    3 Journal of Political Economy

2011-08-27 21:19:44 2739

原创 关于gentoo 报EAPI问题

emerge software时发现报如下错误:the current version of portage supports EAPI ’3′. You must upgrade to a newer version of portage before EAPI mas

2011-08-20 00:11:33 806

原创 111 History Grading

#include#include#include  #includeusing namespace std;const int len = 20;int source[len];int target[len];int index[len];#include#include#include  #includeusing namespace std;const int len = 20;int source[len];int target[len];int index[len];int max_len[len]

2011-05-11 18:19:00 339

原创 572 - Oil Deposits

<br /><br />#include<iostream><br />#include<queue><br />#include<string><br />#include<cstring><br />#include<stdlib.h><br /> <br />using namespace std;<br /> <br />#define M 100<br /> <br />int rows,cols;<br />char package[M][M];<br />int flag[M][M];<br

2010-09-29 13:31:00 279

原创 469 - Wetlands of Florida

<br /><br />#include<iostream><br />#include<queue><br />#include<string><br />#include<cstring><br />#include<ctype.h><br />#include<stdlib.h><br />using namespace std;<br /> <br />#define M 105<br /> <br />char state[M][M];<br />int flag[M][M];<br />int

2010-09-28 21:30:00 321

原创 459 - Graph Connectivity

<br /><br />#include<iostream><br />#include<queue><br />#include<string><br />#include<cstring><br />using namespace std;<br /> <br />#define M 30<br /> <br />int graph[M][M];<br />int flag[M];<br /> <br />queue <int> myqueue;<br /> <br />void input(int &

2010-09-27 09:48:00 422

原创 352 The Seasonal War

<br /><br />#include<iostream><br />#include<queue><br />#include<stdlib.h><br />using namespace std;<br /> <br />#define M  30<br /> <br />char flag[M][M];<br />char war[M][M];<br />int num;<br /> <br />typedef struct<br />{<br />int x;<br />int y;<br />}

2010-09-25 18:41:00 541

原创 260 Il Gioco dell'X

<br />#include<iostream><br />using namespace std;<br />#define MAX 210<br />int pawn[MAX][MAX];<br />int flag[MAX][MAX];<br />int fail[MAX][MAX];<br />int ok;<br />int num;<br />int adj[12]={1,0,1,1,0,-1,0,1,-1,-1,-1,0};<br />void input()<br />{<br /> int

2010-09-17 11:56:00 757

原创 Linux 内存绑定在局部存储器的实现

3.2.1 Linux 内存绑定在局部存储器的实现总体步骤总体步骤:l         采用方案三,在在原来分析的基础上,以及已知Linux系统内存的初始化的情况,对内核代码进行修改,主要包括确定新区的范围,建立新区,重新对分配内存的分配机制进行设置。l         新区划分后,对新建的两个区进行一定程度上的延迟;l         建立系统调用,系统调用将提供用户进行手动

2010-05-26 11:21:00 475

原创 Linux 内存绑定在局部存储器的实现

3.2.1 Linux 内存绑定在局部存储器的实现总体步骤总体步骤:l         采用方案三,在在原来分析的基础上,以及已知Linux系统内存的初始化的情况,对内核代码进行修改,主要包括确定新区的范围,建立新区,重新对分配内存的分配机制进行设置。l         新区划分后,对新建的两个区进行一定程度上的延迟;l         建立系统调用,系统调用将提供用户进行手动

2010-05-26 11:20:00 284

原创 Linux 内存绑定在局部存储器的实现

3.2.1 Linux 内存绑定在局部存储器的实现总体步骤总体步骤:l         采用方案三,在在原来分析的基础上,以及已知Linux系统内存的初始化的情况,对内核代码进行修改,主要包括确定新区的范围,建立新区,重新对分配内存的分配机制进行设置。l         新区划分后,对新建的两个区进行一定程度上的延迟;l         建立系统调用,系统调用将提供用户进行手动

2010-05-26 11:18:00 467

原创 Linux 内存绑定在局部存储器的实现

3.2.1 Linux 内存绑定在局部存储器的实现总体步骤总体步骤:l         采用方案三,在在原来分析的基础上,以及已知Linux系统内存的初始化的情况,对内核代码进行修改,主要包括确定新区的范围,建立新区,重新对分配内存的分配机制进行设置。l         新区划分后,对新建的两个区进行一定程度上的延迟;l         建立系统调用,系统调用将提供用户进行手动

2010-05-26 11:17:00 353

原创 Linux 内存绑定在局部存储器的实现

3.2.1 Linux 内存绑定在局部存储器的实现总体步骤总体步骤:l         采用方案三,在在原来分析的基础上,以及已知Linux系统内存的初始化的情况,对内核代码进行修改,主要包括确定新区的范围,建立新区,重新对分配内存的分配机制进行设置。l         新区划分后,对新建的两个区进行一定程度上的延迟;l         建立系统调用,系统调用将提供用户进行手动

2010-05-26 11:15:00 593

原创 内存映射

内存映射     运行可执行文件时,先被映射到进程的虚拟地址空间中,形成vm_area_struct结构链表,接着程序的一部分被操作系统装入到物理内存。这种将映像连接到进程虚拟地址空间的方法称为"内存映射"。通过内存映射,文件的内容被直接链接到进程的虚拟地址空间。    随着vm_area_struct结构的生成,这些结构所描述的虚拟内存区域上的标准操作函数也由linu

2010-03-02 20:39:00 590

原创 Linux vmalloc的实现

内核版本:2.6.28linux如何利用伙伴系统,slab分配器分配内存,用这些方法得到的内存在物理地址上都是连续的, 然而,有些时候,每次请求内存时,系统都分配物理地址连续的内存块是不合适的,可以利用小块内存“连接”成大块可使用的内存.这在操作系统设计中也被称为 “内存拼接”,显然,内存拼接在需要较大内存,而内存访问相比之下不是很频繁的情况下是比较有效的.  在linux内核中用

2010-03-02 14:06:00 4871

原创 C++成员初始化列表

First: class foo{   private :    int a, b; }; 1、foo(){}和foo(int i = 0){}都被认为是默认构造函数,因为后者是默认参数。两者不能同时出现。2、构造函数列表的初始化方式不是按照列表的的顺序,而是按照变量声明的顺序。比如foo里面,a在b之前,那么会先构造a再构造b。所以无论foo():a(b + 1)

2010-02-01 01:17:00 656 1

TCP_IP进行网际互联第一卷_原理、协议与结构(第四版)

TCP_IP进行网际互联第一卷 原理、协议与结构(第四版)

2011-07-26

MATLAB遗传算法工具箱及应用

MATLAB遗传算法工具箱及应用第一章 遗传算法概述 1 1.1 遗传算法的概念 1 1.2 遗传算法的特点 3 1.2.1 遗传算法的优点 3 1.2.2 遗传算法的不足之处 4 1.3 遗传算法与传统方法的比较 4 1.4 遗传算法的基本用语 6 1.5 遗传算法的研究方向 7 1.6 基于遗传算法的应用 8 第二章 基本遗传算法及改进 11 2.1 遗传算法的运行过程 11 2.1.1 完整的遗传算法运算流程 11 2.1.2 遗传算法的基本操作 13 2.2 基本遗传算法 14 2.2.1 基本遗传算法的数学模型 14 2.2.2 基本遗传算法的步骤 14 2.2.3 遗传算法的具体例证 16 2.3 改进的遗传算法 22 2.3.1 改进的遗传算法一 23 2.3.2 改进的遗传算法二 24 2.3.3 改进的遗传算法三 25 2.3.4 改进的遗传算法四 28 2.4 多目标优化中的遗传算法 30 2.4.1 多目标优化的概念 30 2.4.2 多目标优化问题的遗传算法 31 第三章 遗传算法的理论基础 34 3.1 模式定理 34 3.2 积木块假设 36 3.3 欺骗问题 37 3.4 遗传算法的未成熟收敛问题及其防止 39 3.4.1 遗传算法的未成熟收敛问题 39 3.4.2 未成熟收敛的防止 40 3.5 性能评估 41 3.6 小生境技术和共享函数 43 第四章 遗传算法的基本原理与方法 45 4.1 编码 45 4.1.1 编码方法 46 4.1.2 编码评估策略 48 4.2 选择 48 4.3 交叉 52 4.4 变异 55 4.5 适应度函数 57 4.5.1 适应度函数的作用 57 4.5.2 适应度函数的设计主要满足的条件 58 4.5.3 适应度函数的种类 58 4.5.4 适应度尺度的变换 59 4.6 控制参数选择 60 4.7 约束条件的处理 61 第五章 遗传算法工具箱函数 62 5.1 工具箱结构 62 5.1.1 种群表示和初始化 63 5.1.2 适应度计算 63 5.1.3 选择函数 63 5.1.4 交叉算子 64 5.1.5 变异算子 64 5.1.6 多子群支持 64 5.2 遗传算法中的通用函数 64 5.2.1 函数 bs2rv 64 5.2.2 函数 crtbase 66 5.2.3 函数 crtbp 66 5.2.4 函数 crtrp 67 5.2.5 函数 migrate 68 5.2.6 函数 mut 69 5.2.7 函数 mutate 71 5.2.8 函数 mutbga 72 5.2.9 函数 ranking 74 5.2.10 函数 recdis 76 5.2.11 函数 recint 77 5.2.12 函数 reclin 78 5.2.13 函数 recmut 79 5.2.14 函数 recombin 81 5.2.15 函数 reins 81 5.2.16 函数 rep 84 5.2.17 函数 rws 84 5.2.18 函数 scaling 85 5.2.19 函数 select 86 5.2.20 函数 sus 88 5.2.21 函数 xovdp 88 5.2.22 函数 xovdprs 89 5.2.23 函数 xovmp 90 5.2.24 函数 xovsh 91 5.2.25 函数 xovshrs 92 5.2.26 函数 xovsp 93 5.2.27 函数 xovsprs 94 第六章 遗传算法工具箱的应用 95 6.1 安装 95 6.2 种群的表示和初始化 95 6.3 目标函数和适应度函数 96 6.4 选择 97 6.5 交叉 99 6.6 变异 101 6.7 重插入 101 6.8 遗传算法的终止 102 6.9 数据结构 102 6.10 多种群支持 104 6.11 示范脚本 105 第七章 遗传算法应用举例 107 7.1 简单一元函数优化实例 107 7.2 多元单峰函数的优化实例 111 7.3 多元多峰函数的优化实例 115 7.4 收获系统最优控制 118 7.5 装载系统的最优问题 122 7.6 离散二次线性系统最优控制问题 125 7.7 目标分配问题 128 7.8 双积分的优化问题 130 7.9 雷达目标识别问题 131 7.10 图像分割问题 134 7.11 一些测试函数对应的优化问题 136 7.11.1 轴并行超球体的最小值问题 136 7.11.2 旋转超球体的最小值问题 137 7.11.3 Rosenbrock’s Valley最小值问题 138 7.11.4 Rastrigin函数的最小值问题 139 7.11.5 Schwefel函数的最小值问题 140 7.11.6 Griewangk函数的最小值问题 141 7.11.7 不同权的总和最小值问题 142 7.12 多目标优化问题 142 第八章 使用MATLAB遗传算法工具 146 8.1 遗传算法与直接搜索工具箱概述 146 8.1.1 工具箱的特点 146 8.1.2 编写待优化函数的M文件 148 8.2 使用遗传算法工具初步 149 8.2.1 遗传算法使用规则 149 8.2.2 遗传算法使用方式 150 8.2.3 举例:Rastrigin函数 151 8.2.4 遗传算法的一些术语 156 8.2.5 遗传算法如何工作 157 8.3 使用遗传算法工具求解问题 160 8.3.1 使用遗传算法工具GUI 160 8.3.2 从命令行使用遗传算法 172 8.3.3 遗传算法举例 177 8.4 遗传算法参数和函数 192 8.4.1 遗传算法参数 192 8.4.2 遗传算法函数 203 8.4.3 标准算法选项 207 第九章 使用MATLAB直接搜索工具 208 9.1 直接搜索工具概述 208 9.2 直接搜索算法 209 9.2.1 何谓直接搜索 209 9.2.2 执行模式搜索 209 9.2.3 寻找函数最小值 210 9.2.4 模式搜索术语 212 9.2.5 模式搜索如何工作 214 9.3 使用直接搜索工具 218 9.3.1 浏览模式搜索工具 218 9.3.2 从命令行运行模式搜索 226 9.3.3 模式搜索举例 229 9.3.4 参数化函数 243 9.4 模式搜索参数和函数 245 9.4.1 模式搜索参数 245 9.4.2 模式搜索函数 253

2011-06-14

Face Recognition With Radial Basis Function (RBF) Neural Networks 源代码

"Face Recognition With Radial Basis Function (RBF) Neural Networks" 的作者M.J.Er,S.Q.Wu, J.W.Lu and H.L.Toh in 2002. 所写的

2011-06-11

Algorithm And Complexity 《算法和复杂度》(英文版)

这本书是关于算法和复杂性,因此它在解决问题的方法上 计算机和费用(通常是运行时间),使用这些方法。 计算需要时间。有些问题需要很长的时间其他人就可以迅速完成。一些问题 似乎需要很长时间,然后有人发现一个更快的方法,研究的数额计算端口的是需要的,以便执行某些类型的计算是研究计算复杂性的关键。

2011-05-18

Digital Image Processing: PIKS Inside, Third Edition

The book is intended to be an “industrial strength” introduction to digital image processing to be used as a text for an electrical engineering or computer science course in the subject. Also, it can be used as a reference manual for scientists who are engaged in image processing research, developers of image processing hardware and software systems, and practicing engineers and scientists who use image pro- cessing as a tool in their applications. Mathematical derivations are provided for most algorithms. The reader is assumed to have a basic background in linear system theory, vector space algebra, and random processes. Proficiency in C language pro- gramming is necessary for execution of the image processing programming exer- cises using PIKS.

2011-03-15

Professional Linux Network Programming

Linux Network Programming comes as a natural progression for the developer who is familiar with Linux, and is interested in getting a feel of building Networked Applications. The book is deliberately structured to be application-heavy. It provided an insight into Internet protocols, discusses standard Networking Functions, explains Session concepts and their applications through elaborate examples, and describes the aspects and use of Sockets for Network Programming. After a discourse on Asynchronous Client-Server Connections, which investigates the concepts and practical utilities of forking and threading, the book traverses through the design and implementation of a standard Networking Protocol. A comprehensively detailed application forms an ending Case Study, that programmers may directly implement for their own use. The book signs off with a peek into adaptations that would need to be made in the future, with a probing discussion on IPv6, and a treatise on porting existing applications to it. Although the book does not assume any more than a basic understanding of Networks, and should be most useful for professional developers learning to build their first Networked Applications, even the experienced developer can expect to be updated with the intricacies of contemporary Networked Application development.

2011-02-28

Introduction to statistical pattern recognition 2nd

经典的统计模式识别以及线性判别分析的教科书,对它的引用经久不衰,书中的很多知识仍是现在的研究热点

2010-11-24

Recent_Advances_in_Face_Recognition

The main idea and the driver of further research in the area of face recognition are security applications and human-computer interaction. Face recognition represents an intuitive and non-intrusive method of recognizing people and this is why it became one of three identification methods used in e-passports and a biometric of choice for many other security applications. This goal of this book is to provide the reader with the most up to date research performed in automatic face recognition. The chapters presented use innovative approaches to deal with a wide variety of unsolved issues

2010-08-05

Face Recognition

This book will serve as a handbook for students, researchers and practitioners in the area of automatic (computer) face recognition and inspire some future research ideas by identifying potential research directions. The book consists of 28 chapters, each focusing on a certain aspect of the problem. Within every chapter the reader will be given an overview of background information on the subject at hand and in many cases a description of the authors' original proposed solution. The chapters in this book are sorted alphabetically, according to the first author's surname. They should give the reader a general idea where the current research efforts are heading, both within the face recognition area itself and in interdisciplinary approaches

2010-08-05

linux系统编程 中文版

该资源是linux system programming (ROBERT LOVE)这本书的中文版,对linux编程的人来说,这本说很齐全,包括了文件,内存,进程等。

2010-07-25

pattern recognition fourth-edition

This book is the outgrowth of our teaching advanced undergraduate and graduate courses over the past 20 years. These courses have been taught to different audiences, including students in electrical and electronics engineering, computer engineering, computer science, and informatics, as well as to an interdisciplinary audience of a graduate course on automation. This experience led us to make the book as self-contained as possible and to address students with different backgrounds. As prerequisitive knowledge, the reader requires only basic calculus, elementary linear algebra, and some probability theory basics. A number of mathematical tools, such as probability and statistics as well as constrained optimization, needed by various chapters, are treated in fourAppendices. The book is designed to serve as a text for advanced undergraduate and graduate students,and it can be used for either a one- or a two-semester course. Furthermore,it is intended to be used as a self-study and reference book for research and for the practicing scientist/engineer. This latter audience was also our second incentive for writing this book, due to the involvement of our group in a number of projects related to pattern recognition

2010-07-16

Linux Networking Cookbook

If you want a book that lays out the steps for specific Linux networking tasks, one that clearly explains the commands and configurations, this is the book for you. Linux Networking Cookbook is a soup-to-nuts collection of recipes that covers everything you need to know to perform your job as a Linux network administrator. You'll dive straight into the gnarly hands-on work of building and maintaining a computer network

2010-07-16

Linux共享内存的研究与实现

Linux系统提供了多种IPC机制,如信号、管道、信号量、消息队列、共享内存和套接字等,其中以共享 内存效率最高.

2010-01-31

编译原理课后习题答案 第三版

编译原理 第3版 蒋立源,康慕宁 西北工业大学出版社

2009-06-27

计算机网络重点归纳【网络层、链路层、传输层】

计算机网络重点归纳【网络层、链路层、传输层】,更好的理解网络的相关概念

2009-04-23

操作系统考试要点与真题精解

操作系统考试要点与真题精解,掌握操作系统的有关概念,以及进一步的研究

2009-04-23

php项目(图书馆管理系统)

能更好的学习如何开发项目,该项目包括全部代码,而且还提供了开发的流程图,轻松上手!

2008-12-03

TA_Lib-0.4.10-cp36-cp36m-win_amd64.whl

window安装ta-lib 所要求C++ 14.0问题,直接使用pip install TA_Lib-0.4.10-cp36-cp36m-win_amd64.whl 安装。 实现ta-lib的安装

2018-03-15

企业应用架构模式(中文高清版)

企业应用架构模式(中文高清版), Flowler经典书籍

2014-10-15

DB2_V972_books_zh_CN

DB2_V972_books_zh_CN,DB29.72中文版说明书

2013-07-23

DB2_V972_books_en_US

DB2_V972_books_en_US, DB2说明文档与开发文档

2013-07-23

Hadoop开发者第四期

《HADOOP 开发者》利于云计算开发人员入门使用

2012-03-09

hadoop开发者第三期

《HADOOP 开发者》利于云计算开发人员入门使用

2012-03-09

Hadoop开发者第二期

《HADOOP 开发者》利于云计算开发人员入门使用

2012-03-09

Hadoop开发者第一期

《HADOOP 开发者》利于云计算开发人员入门使用

2012-03-09

信息检索导论

信息检索领域的权威书籍,Christopher D. Manning等著,中文版由王斌翻译,中英对照,更能提高自己的理解程度

2012-03-05

Linux网络编程 宋敬彬 孙海滨 书源代码

Linux网络编程 宋敬彬 孙海滨 书源代码

2012-03-04

Linux Shell Scripting Cookbook + Code

《Linux Shell脚本攻略》通过细致剖析实际应用中的110多个案例。使许多看似复杂的Linux shell脚本任务迎刃而解。   作者在Linux shell脚本方面的经验,使他能够以一种相当清晰且友好的方式有效地分享他的知识。《Linux Shell脚本攻略》会帮助读者利用少量命令的组合完成诸如文本处理、文件管理、备份等复杂的数据管理工作。

2012-02-17

c++ primer 第四版 课后习题答案

c++ primer 第四版 课后习题答案,并且答案讲解详细,对学习c++primer的同学有一定的帮助。

2012-02-11

Debugging with gdb

Debugging with gdb, GDB2011官方文档

2011-10-26

MATLAB神经网络30个案例分析 源代码

MATLAB神经网络30个案例分析 源代码

2011-10-23

TCP/IP详解 1,2,3卷

《TCP/IP详解卷1:协议》描述了属于每一层的各个协议以及它们如何在不同操作系统中运行。作者LawrenceBerkeley实验室的tcpdump程序来捕获不同操作系统和TCP/IP实现之间传输的不同分组。对tcpdump输出的研究可以帮助理解不同协议如何工作。《TCP/IP详解卷1:协议》是网络构建原型——4.4BSD的建造者的倾力之作,《TCP/IP解析》中的第1卷,主要讲述TCP/IP协议方面的内容。与其他的TCP/IP书藉的最大不同在于,本书不仅仅讲述了RFCS的标准协议,而且结合大量实例讲述了TCP/IP协议包的定义原因及在各种不同的操作系统中(如Sunos4.1.3、Soloris2.2、AIX3.2.2)的应用与工作方式,这样可以以动态方式讲述TCP/IP的知识,使读者可以轻松掌握TCP/IP的知识:路由协议、寻址协议、组控制协议、简单邮件传输协议等。全书内容实用性强,是在校生学习TCP/IP知识的良师益友。

2011-10-17

Designing and Implementing Linux Firewalls and QoS using netfilter

Implementing Packet filtering, NAT, bandwidth shaping, packet prioritization using netfilter/iptables, iproute2, Class Based Queuing (CBQ) and Hierarchical Token Bucket (HTB) Designing and implementing 5 real-world firewalls and QoS scenarios ranging from small SOHO offices to a large scale ISP network that spans many cities Building intelligent networks by marking, queuing, and prioritizing different types of traffic

2011-10-01

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除