CSDN首页 空间 新闻 论坛 Blog 下载 读书 网摘 搜索 .NET Java 视频 接项目 求职 在线学习 买书 程序员 通知
花落谁家,你作主! 盛大widget设计大赛英雄榜
CSDN社区
搜索 收藏 打印 关闭
CSDN社区 >  Linux/Unix社区 >  系统维护与使用区

几道考试题

楼主xhuangp(老三)2002-06-25 17:20:43 在 Linux/Unix社区 / 系统维护与使用区 提问

1>Explain   what   a   Network   Firewall   is  
   
  2>Explain   what   an   Application-Proxy   Firewall   is  
   
  3>what   is   IP   Spoofing  
   
  4>Why   is   the   internet   insecure?  
   
  4>what   is   ARP  
   
  5>what   is   the   internet   control   message   protocol  
   
  6>what   is   the   Transmission   Control   Protocol  
   
  且请提供一些掺考资料.  
   
  问题点数:100、回复次数:7Top

1 楼redhat7(佩玉)回复于 2002-06-25 17:31:28 得分 0

这都是概念,随便买一本什么网络方面的书,上面都有详细的介绍,呵呵  
  1。网络防火墙  
  2。应用程序代理防火墙  
  3。。。Top

2 楼atlantis13579(更深的蓝)(^_^)回复于 2002-06-25 21:31:53 得分 25

1>  
  A   firewall   is   a   system   that   controls   the   flow   of   network   trafic   between   a   local   area   network   (LAN)   and   the   internet.     Firewalls   are   used   first   and   foremost   to   enforce   the   security   policy   of   a   particular   network   site.     More   specifically,   firewalls   can   provide   a   more   efficient   method   of   securing   hosts   on   a   network   than   host   security   (securing   each   individual   host   separately)   could   provide.     On   networks   protected   by   a   firewall,   each   host   does   not   need   to   be   100%   secure,   since   the   firewall   will   generally   make   access   to   those   hosts   impossible.     Even   if   each   host   on   an   internal   network   were   100%   secure,   a   firewall   would   still   have   the   benefit   of   eliminating   the   unwanted   traffic   generated   by   all   the   unsuccessful   attacks   which   would   be   present.     In   addition   to   protecting   network   resources   from   crackers1,   firewalls   can   log   internet   traffic,   eavesdrop   on   communication   (if   it   is   deemed   ethical   in   the   given   circumstances),   or   create   a   virtual   private   network   (VPN)2.    
          Firewalls   are   a   great   asset   in   securing   a   LAN,   but   it   is   important   to   realize   that   there   are   a   number   of   things   that   firewalls   cannot   protect   against.     For   example,   firewalls   cannot   prevent   attacks   that   occur   from   within   the   network.     Firewalls   cannot   protect   against   undiscovered   threats.     They   can   only   prevent   against   known   threats,   and   it   is   possible   for   a   cracker   to   discover   a   new   threat   (such   as   a   bug   in   a   server   program)   and   take   advantage   of   it,   but   if   the   exploit   was   not   known   when   the   firewall   was   built,   then   there   is   no   guarentee   that   it   will   be   prevented.     Also,   firewalls   cannot   protect   against   viruses.     For   these   reasons,   firewalling   is   only   one   of   many   important   techniques   in   achieving   network   security.    
   
   
  2>  
  ............Top

3 楼roys(roys)回复于 2002-06-25 21:57:51 得分 20

ARP   (Address   Resolution   Protocol)    
   
  地址解析协议  
   
  ARP是将IP地址与网络物理地址一一对应的协议。例如,在IP   4中,地址长度是32位。在以太网中,设备的地址是48位(物理机器地址也称为介质访问控制地址)。一张称为ARP的表,用来支持在MAC地址和IP地址之间的一一对应关系。它提供两者的相互转换。  
   
   
  当传送过来的包要传向一个LAN的主机时,当它到达网关时,网关要求ARP程序找到物理主机或与IP地址相对应的MAC地址。ARP程序在缓存中寻找,如果找到地址,就提供此地址,以便让此包转换成相应的长度和格式,以传送到此主机。如果未找到,ARP程序就在网上广播一个特殊格式的消息,看哪个机器知道与这个IP地址相关的MAC地址。如果一台机器发现那是自己的IP地址,它就发送回应,这样就指出了相应的地址。ARP程序就更新自己的缓存然后发送此包到回应的MAC地址。  
   
  因为不同协议的相应处理方法不同,所以有不同网络的地址解析请求。也有反向地址解析协议(RARP)供不知道IP地址的主机从ARP缓存中获得IP地址。  
   
  Top

4 楼roys(roys)回复于 2002-06-25 21:59:57 得分 20

Internet控制信息协议(ICMP)  
    例如,为报告在数据报过程中的错误。为了这个目的才使用了ICMP,它使用IP做于底层支持,好象它是一个高层协议,而实际上它是IP的一部分,必须由其它IP模块实现。  
   
  ICMP消息在以下几种情况下发送:当数据报不能到达目的地时,当网关的已经失去缓存功能,当网关能够引导主机在更短路由上发送  
   
  Top

5 楼xhuangp(老三)回复于 2002-06-25 22:16:50 得分 0

atlantis13579(更深的蓝),  
  roys(roys)   :  
   
  thanks   you   very   much!  
  Top

6 楼zhenshi(真世)回复于 2002-06-25 23:41:49 得分 25

3IP   spoof即IP欺骗,是一台主机设备冒充另外一台主机的IP地址,与其它主机进行通信,从而达到某种目的技术。      
   
  4因为TCP/IP就是建立在相互信任基础上的。  
                  
  6TCP协议是建立在IP协议之上的,可靠的,按照顺序发送的协议。  
   
  Top

7 楼NetBird_China(沉默的刀客)回复于 2002-06-26 08:53:24 得分 10

www.google.com,上面尽管搜吧Top

相关问题

  • 几道c语言考试题,急救!
  • 几道考试题目请教高手
  • 一道考试题
  • 一道96程序员考试题,请教几个问题
  • 我不是学计算机的,有几道期末考试题请教:
  • 我不是学计算机的,有几道期末考试题请教:
  • 一道简单的考试题
  • 一道SCJP的考试题,迷惑!
  • 高分请教一道考试题
  • 月薪1W的一道考试题~

关键词

  • 协议
  • 主机
  • mac
  • 网关
  • 物理
  • security
  • ip
  • internet
  • 网络
  • 地址

得分解答快速导航

  • 帖主:xhuangp
  • atlantis13579
  • roys
  • roys
  • zhenshi
  • NetBird_China

相关链接

  • CSDN Blog
  • 技术文档
  • 代码下载
  • 第二书店
  • 读书频道

广告也精彩

反馈

请通过下述方式给我们反馈
反馈
提问
网站简介|广告服务|VIP资费标准|银行汇款帐号|网站地图|帮助|联系方式|诚聘英才|English|问题报告
北京创新乐知广告有限公司 版权所有, 京 ICP 证 070598 号
世纪乐知(北京)网络技术有限公司 提供技术支持
Copyright © 2000-2008, CSDN.NET, All Rights Reserved
GongshangLogo