发布时间:2014-12-30 13:34:53
struct ethhdr、ether_header、iphdr、tcphdr、udphdr 结构************************eth的结构**************************************struct ethhdr {unsigned char h_dest[ETH_ALEN];unsigned char h_source[ETH_ALEN];__be16 h_proto;} __attribute__((packed));struct ether_header{u_int8_t ether.........【阅读全文】
发布时间:2014-12-11 11:10:11
1) net_ratelimit()用于保护内核网络调试信息的打印, 当它返回(TRUE)时则可以打印调试信息,返回零则禁止信息打印. 它的特性为当"极快地"调用net_ratelimit()时,它最多只允许连续打印前10条信息, 后继信息每隔5秒允许打印一次.这样可防止攻击者使内核不断产生调试信息来使系统过载的拒绝服务攻击.2) net_ratelimit.........【阅读全文】
发布时间:2014-11-07 15:58:38
《转自http://www.live-in.org/archives/885.html》Linux中vi、vim操作Linux中文本编辑常用vi、vim编辑器。它们功能强大,非常适合全键盘操作,有必要整理一下。现在多使用vim,因为它编辑文本有显示不同颜色区分。vim有三种模式:Command Mode(命令模式),.........【阅读全文】