码迷,mamicode.com
首页 > 2014年06月21日 > 全部分享
[转]两台linux建立GRE隧道
原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://333234.blog.51cto.com/323234/931805 1.拓扑图: 备注:因为应用原因,需要在linux2上添加一个公网地址,并且在中间路由设备不受控制的情况下,L...
分类:系统相关   时间:2014-06-21 15:07:02    阅读次数:432
[转] SSL/TLS Strong Encryption: An Introduction
As an introduction this chapter is aimed at readers who are familiar with the Web, HTTP, and Apache, but are not security experts. It is not intended ...
分类:其他好文   时间:2014-06-21 15:08:28    阅读次数:259
[转]Rapidly detecting large flows, sFlow vs. NetFlow/IPFIX
Figure 1: Low latency software defined networking control loop The articles SDN and delay and Delay and stability describe the critical importance of ...
分类:Windows程序   时间:2014-06-21 15:09:53    阅读次数:609
Jquery延迟函数
1.setInterval(function(){},[time])示例:这是一个模拟进度条的代码,结束后转向另一页面。 0' ...
分类:Web程序   时间:2014-06-21 15:12:28    阅读次数:286
冷门JS技巧
前端已经被玩儿坏了!像console.log()可以向控制台输出图片等炫酷的玩意已经不是什么新闻了,像用||操作符给变量赋默认值也是人尽皆知的旧闻了,今天看到Quora上一个帖子,瞬间又GET了好多前端技能,一些属于技巧,一些则是闻所未闻的冷知识,一时间还消化不过来。现分类整理出来分享给大家,也补充...
分类:Web程序   时间:2014-06-21 15:11:10    阅读次数:253
Linux pipe函数
1. 函数说明pipe(建立管道):1) 头文件 #include2) 定义函数: int pipe(int filedes[2]);3) 函数说明: pipe()会建立管道,并将文件描写叙述词由參数filedes数组返回。 filedes[0]为管道里的读取端 filedes[1]则为管道的写入端...
分类:系统相关   时间:2014-06-21 15:13:55    阅读次数:329
[转]An overview of Openvswitch implementation
This is NOT a tutorial on how to use openvswitch, this is for developers who want to know the implementation details of openvswitch project, thus, I a...
分类:其他好文   时间:2014-06-21 15:15:15    阅读次数:217
[转]深入理解 GRE tunnel
我以前写过一篇介绍 tunnel 的文章,只是做了大体的介绍。里面多数 tunnel 是很容易理解的,因为它们多是一对一的,换句话说,是直接从一端到另一端。比如 IPv6 over IPv4 的 tunnel,也就是 SIT,它的原理如下图所示: 显然,除了端点的 host A 和 host B之外...
分类:其他好文   时间:2014-06-21 15:16:31    阅读次数:228
LeetCode:Reverse Integer
Reverse digits of an integer.Example1:x = 123, return 321Example2:x = -123, return -321click to show spoilers.Have you thought about this?Here are som...
分类:其他好文   时间:2014-06-21 15:20:39    阅读次数:191
[转]Linux操作系统tcpdump抓包分析详解
PS:tcpdump是一个用于截取网络分组,并输出分组内容的工具,简单说就是数据包抓包工具。tcpdump凭借强大的功能和灵活的截取策略,使其成为Linux系统下用于网络分析和问题排查的首选工具。 tcpdump提供了源代码,公开了接口,因此具备很强的可扩展性,对于网络维护和入侵者都是非常有用的工具...
分类:系统相关   时间:2014-06-21 15:19:22    阅读次数:321
为应用程序设置一个图标 (窗口左上角 程序图标)
1.准备相应的图标文件 这里举例pr.ico2.创建img文件夹保存pr.ico文件3.创建rc文件,并输入以下内容 IDI_ICON1 ICON DISCARDABLE "/img/pr.ico"4.在项目文件.pro中添加如下内容 RC_FILE = pr.rc5.make6.你会发现应用程序的...
分类:其他好文   时间:2014-06-21 15:17:57    阅读次数:162
[转]Comparing sFlow and NetFlow in a vSwitch
As virtualization shifts the network edge from top of rack switches to software virtual switches running on the hypervisors; visibility in the virtual...
分类:Web程序   时间:2014-06-21 15:21:57    阅读次数:414
ISE笔记
【1】双击项目中的文本文件时,调用自定义编辑器打开,ipcore生成器等不受影响。edit->perferences->ISE general->editersediter下拉列表选择custom,后面填入geany $1不过并不是内嵌的(geany也不支持),而是会打开新的窗口。
分类:其他好文   时间:2014-06-21 15:23:24    阅读次数:197
Observer模式
观察者模式(有时又被称为发布/订阅模式)是软件设计模式的一种。在此种模式中,一个目标对象管理所有相依于它的观察者对象,并且在它本身的状态改变时主动发出通知。这通常透过呼叫各观察者所提供的方法来实现。此种模式通常被用来实作事件处理系统。抽象目标类别 此抽象类别提供一个接口让观察者进行添附与解附作...
分类:其他好文   时间:2014-06-21 15:26:00    阅读次数:463
Openvswitch手册(2)
我们这一节主要来看Controller Controller有两种: Primary Controller: 真正控制vswitch的flow table,vswitch会保持和controller的连接,如果失败,取决于bridge的fail mode。一个vswitch可以连接多个Control...
分类:其他好文   时间:2014-06-21 15:24:44    阅读次数:270
[转]Creating an IP Tunnel using GRE on Linux
Creating an IP Tunnel using GRE on Linux Contents[hide] · 1 IP Tunelling · 2 Starting Configuration · 3 Tunnelling Objective ...
分类:系统相关   时间:2014-06-21 15:27:26    阅读次数:598
tcpdump
一篇tcpdump文章的翻译 分类: tcp/ip 2011-02-26 13:26 1064人阅读 评论(0) 收藏 举报 tcpdst网络工具securityfilter tcpdump是信息安全行业最好的网络分析工具,希望全面理解tcp/ip的人必须要很好的掌握它。很多人喜欢用更高层的分析工具...
分类:其他好文   时间:2014-06-21 15:28:51    阅读次数:172
1032条   上一页 1 ... 13 14 15 16 17 18 19 ... 61 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!