摘要:作者:kf_701 写作时间:2005/4 email:kf_701@21cn.com 转载请保留原作者信息,谢谢。要求的专业知识: 一: 精通osi参考模型,精通网络五层:物理层,数据链路层,网络层,传输层,应用层。 精通每一层的协议,数据报格式。精通......
摘要:joe ruffolo和ron
terry一直致力于推广开源和linux,为此他们一直与学校保持着密切的联系,为了使学校的学生能够深入了解开源,了解linux
joe特意为学生们列出了一份阅读清单。笔者看了一下这些链接不是一些书,而是一些关于samba,
openldap的手册以及开源项目,内容都比较使用,大家无妨选择有兴趣的内容浏览一下。清单如下:joe ruffolo和ron
terr......
hacker成长的代码之路:嗅探(1)上一页 ... 3 * email : kf_701@21cn.com 4 * address : 合肥大学生公寓 【程序编程相关:
安装imap服务器】 【推荐阅读:
配置Linux网关和安装ipchains】 5 * school : ahau.edu 【扩展信息:
安装DNS服务器】 6 */ 7 8 /* the program is used to capture data from data 9 * link layer,it is simply,only output ip address 10 * and port,read this code,then you will understand 11 * how to use libpcap functions. 12 * ****best wishes to you !**** 13 * 14 * if you want to use it ,please compile like: 15 * $gcc -lpcap thisfile.c 16 */ 17 #include<stdio.h> 18 #include<unistd.h> 19 #include<string.h> 20 #include<stdlib.h> 21 #include<pcap.h> 22 23 #include<arpa/inet.h> 24 #include<sys/socket.h> 25 #include<netinet/in_systm.h> /* required for ip.h */ 26 #include<netinet/in.h> 27 #include<netinet/ip.h> 28 #include<netinet/udp.h> 29 #include<netinet/if_ether.h> 30 #include<net/if.h> 31 32 #define maxline 255 33 34 static void data_print(char *,int); 35 36 int main(int argc,char **argv) ...
下一页 摘要:当root口令被忘记的时候,可以把root口令设为空。设置空的方法就是使用lilo/grub启动linux时作相关的操作来修改,如下:一.lilo1.在出现lilo:提示时键入 linux single画面显示 lilo : linux single2.回车可直接进入linux命令行3. #vi /etc/shadow将第一行,即以root 开头的一行中 ,root:后和下一个“:”前的内容删除。......