r****o 发帖数: 1950 | 1 【 以下文字转载自 InterviewHackers 俱乐部 】
发信人: roufoo (五经勤向窗前读), 信区: InterviewHackers
标 题: 说几道没答好的系统/网络的面试题。
发信站: BBS 未名空间站 (Thu Mar 10 02:13:53 2011, 美东)
以下是我找工作期间遇到的系统/网络方面的没有答好的题目,现在列出这些,希望对
找工作的同学有帮助,也希望大家能多讨论。
1. 说说冯洛依曼体系结构和哈佛体系结构的区别。
2. 把router和switch集成在一个device里面有什么好处?
3. 编个小程序来实现page fault.
4. http协议里面如何同时下载一个大文件的多个部分(我答多进程,多线程好像都不对
)。
5. 把一个struct,内有一个int 和 char, 从计算机A发送到计算机B,会有什么潜在风
险?
6. 嵌入式系统调试中硬断点和软断点的区别。
7. socket通信中接收方如何判断数据已经传送完。
8. TCP SYN flooding攻击中,server如何判断哪些clients是恶意的,哪些不是。
9. OSPF中的状态机。
先贴这些,别的想起来再写。呵呵。 |
x*********n 发帖数: 28013 | |
r**u 发帖数: 1567 | 3 6. 嵌入式系统调试中硬断点和软断点的区别。
软断点可以被硬断点interrupt
硬断点不能被任何interrupt
7. socket通信中接收方如何判断数据已经传送完。
如果是传文件,会receive EOF,num of bytes recv = 0
Please correct me.
【在 r****o 的大作中提到】 : 【 以下文字转载自 InterviewHackers 俱乐部 】 : 发信人: roufoo (五经勤向窗前读), 信区: InterviewHackers : 标 题: 说几道没答好的系统/网络的面试题。 : 发信站: BBS 未名空间站 (Thu Mar 10 02:13:53 2011, 美东) : 以下是我找工作期间遇到的系统/网络方面的没有答好的题目,现在列出这些,希望对 : 找工作的同学有帮助,也希望大家能多讨论。 : 1. 说说冯洛依曼体系结构和哈佛体系结构的区别。 : 2. 把router和switch集成在一个device里面有什么好处? : 3. 编个小程序来实现page fault. : 4. http协议里面如何同时下载一个大文件的多个部分(我答多进程,多线程好像都不对
|
c**s 发帖数: 43 | 4
)。
HTTP GET 可以发一个Range header, flashget等就是这样分解下载大文件的。
风险?
int的话,有big endian, little endian的影响?
也可能发一半,没发全?
【在 r****o 的大作中提到】 : 【 以下文字转载自 InterviewHackers 俱乐部 】 : 发信人: roufoo (五经勤向窗前读), 信区: InterviewHackers : 标 题: 说几道没答好的系统/网络的面试题。 : 发信站: BBS 未名空间站 (Thu Mar 10 02:13:53 2011, 美东) : 以下是我找工作期间遇到的系统/网络方面的没有答好的题目,现在列出这些,希望对 : 找工作的同学有帮助,也希望大家能多讨论。 : 1. 说说冯洛依曼体系结构和哈佛体系结构的区别。 : 2. 把router和switch集成在一个device里面有什么好处? : 3. 编个小程序来实现page fault. : 4. http协议里面如何同时下载一个大文件的多个部分(我答多进程,多线程好像都不对
|
s*****y 发帖数: 897 | 5 5. Padding and aligement also?
【在 c**s 的大作中提到】 : : )。 : HTTP GET 可以发一个Range header, flashget等就是这样分解下载大文件的。 : 风险? : int的话,有big endian, little endian的影响? : 也可能发一半,没发全?
|
c***2 发帖数: 838 | 6 8:
1) Attacker won't finish up 3 way handshake
2) The rate of new connections is higher from attacker than from normal
client? |
p*****a 发帖数: 147 | 7
----------------------------------------
why is this?
【在 c***2 的大作中提到】 : 8: : 1) Attacker won't finish up 3 way handshake : 2) The rate of new connections is higher from attacker than from normal : client?
|
c***2 发帖数: 838 | 8 1) Spoofed ID addresses can not really establish the connections
2) If they do, they attack themselves since they also need resources to
finish up the connection and/or maintain the connections.
SYN flood is DOS by exhausting resource of target router or host.
【在 p*****a 的大作中提到】 : : ---------------------------------------- : why is this?
|