宁波大学计算机网络实验答案
计算机网络实验试题及答案
计算机网络实验试题及答案实验试题一:网络拓扑结构设计试题描述:请设计一个具有以下要求的网络拓扑结构:1. 总共有5个子网,每个子网包含10台主机和1台路由器;2. 每个子网之间通过交换机连接;3. 路由器之间通过WAN连接;4. 所有主机可以互相通信。
答案:为满足上述要求,我们可以采用以下网络拓扑结构设计:(文字描述网络拓扑结构,可以使用图形描述)实验试题二:IP地址规划试题描述:假设你需要为一个大型公司规划IP地址,该公司具有1000台主机,同时拥有5个子网,每个子网下主机数量不等。
请规划IP地址并确定每个子网的网络地址、子网掩码以及广播地址。
答案:为了规划IP地址,我们可以采用如下的地址规划方案:(给出详细的IP地址规划方案,包括每个子网的网络地址、子网掩码和广播地址)实验试题三:网络安全策略试题描述:为了保障网络安全,你需要制定一套网络安全策略。
请列举出至少5条网络安全策略,并对每条策略进行简要解释。
答案:为了确保网络安全,我们可以采取如下的网络安全策略:1. 强密码策略:要求所有用户设置强密码,包括字母、数字和特殊字符的组合,定期更换密码,增加破解难度。
2. 防火墙配置:使用防火墙限制对网络的非授权访问,并设置规则阻止潜在的恶意流量。
3. 限制访问权限:对各个用户和用户组设置适当的权限,确保只有授权人员能够访问敏感数据和系统资源。
4. 定期更新及漏洞修复:及时安装操作系统和应用程序的更新补丁,修复已知漏洞,防止黑客利用漏洞入侵系统。
5. 网络监控和日志记录:使用网络监控工具实时监测网络流量,及时发现异常行为,同时记录网络日志以便后期分析和溯源。
实验试题四:网络协议分析试题描述:请分析以下网络通信场景,描述通信过程中涉及到的网络协议以及其功能:1. 用户通过浏览器访问一个网页;2. 电子邮件发送和接收;3. 文件传输。
答案:1. 用户通过浏览器访问一个网页:- 使用HTTP(超文本传输协议)向服务器发送请求,获取网页内容;- 使用DNS(域名系统)解析域名,将域名转换为IP地址,以便建立与服务器的通信连接。
计算机网络实验三参考答案
1. What is the IP address and TCP port number used by the client computer (source) that is transferring the file to ? To answer this questio n, it’s probably easiest to select an HTTP message and explore the details of the TCP packet used to carry this HTTP message, using the “details of the selected packet header window” (refer to Figure 2 in the “Getting Started with Wireshark” Lab if you’re uncertain about the Wireshark windows).Ans: IP address:192.168.1.102 TCP port:11612. What is the IP address of ? On what port number is it sending and receiving TCP segments for this connection?Ans: IP address:128.119.245.12 TCP port:80If you have been able to create your own trace, answer the following question:3. What is the IP address and TCP port number used by your client computer(source) to transfer the file to ?ANS: IP address :10.211.55.7 TCP port:492654. What is the sequence number of the TCP SYN segment that is used to initiate the TCP connection between the client computer and ? What is it in the segment that identifies the segment as a SYN segment?ANS: sequence number: 0 Syn Set = 1 identifies the segment as a SYN segment5. What is the sequence number of the SYNACK segment sent by to the client computer in reply to the SYN? What is the value of the ACKnowledgement field in the SYNACK segment? How did determine that value? What is it in the segment that identifies the segment as a SYNACK segment?ANS: The sequence number: 0ACKnowledgement number : 1 which is sequence number plus 1Both the sequence flag and the ACKnowledgement flag been set as 1, identifies the segment as SYNACK segment.6. What is the sequence number of the TCP segment containing the HTTP POST command? Note that in order to find the POST command, you’ll need to dig into the packet content field at the bottom of the Wireshark window, looking for a segment with a “POST” within its DATA field.Ans: The sequence number : 17. Consider the TCP segment containing the HTTP POST as the first segment in the TCP connection. What are the sequence numbers of the first six segments in the TCP connection (including thesegment containing the HTTP POST)? At what time was each segment sent? When was the ACK for each segment received? Given the difference between when each TCP segment was sent, and when its acknowledgement was received, what is the RTT value for each of the six segments? What is the EstimatedRTT value (see page 249 in text) after the receipt of each ACK? Assume that the value of the EstimatedRTT is equal to the measured RTT for the first segment, and then is computed using the EstimatedRTT equation on page 249 for all subsequent segments.Note: Wireshark has a nice feature that allows you to plot the RTT for each of the TCP segments sent. Select a TCP segment in the “listing of captured packets” window that is being sent from the client to the server. Then select: Statistics->TCP Stream Graph- >Round Trip Time Graph.Segment 1 Segment 2 Segment 3Segment 4Segment 5Segment 6After Segment 1 : EstimatedRTT = 0.02746After Segment 2 : EstimatedRTT = 0.875 * 0.02746 + 0.125*0.035557 = 0.028472 After Segment 3 : EstimatedRTT = 0.875 * 0.028472 + 0.125*0.070059 = 0.033670 After Segment 4 : EstimatedRTT = 0.875 * 0.033670 + 0.125*0.11443 = 0.043765 After Segment 5 : EstimatedRTT = 0.875 * 0.043765 + 0.125*0.13989 = 0.055781 After Segment 6 : EstimatedRTT = 0.875 * 0.055781 + 0.125*0.18964 = 0.072513 8. What is the length of each of the first six TCP segments?(see Q7)9. What is the minimum amount of available buffer space advertised at the received for the entire trace? Does the lack of receiver buffer space ever throttle thesender?ANS:The minimum amount of buffer space (receiver window) advertised at for the entire trace is 5840 bytes;This receiver window grows steadily until a maximum receiver buffer size of 62780 bytes.The sender is never throttled due to lacking of receiver buffer space by inspecting this trace.10. Are there any retransmitted segments in the trace file? What did you check for (in the trace) in order to answer this question?ANS: There are no retransmitted segments in the trace file. We can verify this by checking the sequence numbers of the TCP segments in the trace file. All sequence numbers are increasing.so there is no retramstmitted segment.11. How much data does the receiver typically acknowledge in an ACK? Can youidentify cases where the receiver is ACKing every other received segment (seeTable 3.2 on page 257 in the text).ANS: According to this screenshot, the data received by the server between these two ACKs is 1460bytes. there are cases where the receiver is ACKing every other segment 2920 bytes = 1460*2 bytes. For example 64005-61085 = 292012. What is the throughput (bytes transferred per unit time) for the TCP connection? Explain how you calculated this value.ANS: total amount data = 164091 - 1 = 164090 bytes#164091 bytes for NO.202 segment and 1 bytes for NO.4 segmentTotal transmission time = 5.455830 – 0.026477 = 5.4294So the throughput for the TCP connection is computed as 164090/5.4294 = 30.222 KByte/sec.13. Use the Time-Sequence-Graph(Stevens) plotting tool to view the sequence number versus time plot of segments being sent from the client to the server. Can you identify where TCP’s slow start phase begins and ends, and where congestion avoidance takes over? Comment on ways in which the measured data differs from the idealized behavior of TCP that we’ve studied in the text.ANS: Slow start begins when HTTP POST segment begins. But we can’t identify where TCP’s slow start phase ends, and where congestion avoidance takes over.14. Answer each of two questions above for the trace that you have gathered when you transferred a file from your computer to ANS: Slow start begins when HTTP POST segment begins. But we can’t identify where TCP’s slow start phase ends, and where congestion avoidance takes over.。
大工20春《计算机网络实验》实验报告答案
大工20春《计算机网络实验》实验报告答案一、实验目的本次计算机网络实验旨在通过实际操作和观察,深入理解计算机网络的基本原理和技术,掌握网络配置、数据传输、网络协议分析等方面的知识和技能,提高解决实际网络问题的能力。
二、实验环境本次实验使用的设备包括计算机、交换机、路由器等网络设备,以及网络模拟软件和协议分析工具。
操作系统为 Windows 10,网络模拟软件为 Packet Tracer,协议分析工具为 Wireshark。
三、实验内容与步骤(一)网络拓扑结构设计根据实验要求,设计了一个包含多个子网的网络拓扑结构。
该拓扑结构包括一个核心交换机连接多个子网,每个子网通过路由器与其他子网或外网进行通信。
(二)IP 地址规划与配置为每个网络设备分配了合适的 IP 地址,并进行了子网掩码和网关的设置。
在配置过程中,注意了 IP 地址的唯一性和合法性,避免了地址冲突和网络故障。
(三)交换机配置对核心交换机进行了 VLAN 的划分和配置,将不同的端口划分到不同的 VLAN 中,实现了网络的逻辑隔离和流量控制。
同时,还配置了交换机的端口安全和 STP 协议,提高了网络的安全性和稳定性。
(四)路由器配置对路由器进行了路由协议的配置,包括静态路由和动态路由(如RIP、OSPF 等)。
通过配置路由协议,实现了不同子网之间的通信和数据转发。
(五)网络服务配置在服务器上配置了 DNS 服务、DHCP 服务和 Web 服务等。
通过DNS 服务,实现了域名到 IP 地址的解析;通过 DHCP 服务,为客户端自动分配 IP 地址等网络参数;通过 Web 服务,提供了网页浏览功能。
(六)网络性能测试使用 Ping 命令和 Tracert 命令对网络的连通性和延迟进行了测试,使用 Wireshark 工具对网络数据包进行了捕获和分析,评估了网络的性能和协议的执行情况。
四、实验结果与分析(一)网络连通性测试结果通过 Ping 命令对不同子网的设备进行了连通性测试,结果表明所有设备之间都能够正常通信,没有出现丢包和延迟过高的情况。
宁波大学数电实验参考答案
宁波大学数电实验参考答案(仅供参考)实验一EDA 工具软件的使用异或门B A B A F ______+=同或门AB B A F +=______实验二EDA 开发平台使用1、设计一个一位半加器library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity banjia isport(a,b:in std_logic;s,c:out std_logic);end banjia;architecture behav of banjia is begins<=a xor b;c<=a and b;end behav;2、二进制全加器library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity fadder isport(a:in std_logic;b:in std_logic;c:in std_logic;s:out std_logic;d:out std_logic);end fadder;architecture behav of fadder isbegins<=a xor b xor c;d<=(a and b)or(a and c)or(b and c);end behav;实验五MSI组合电路的HDL设计1、3—8译码器library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity decoder38isport(x:in std_logic_vector(2downto0);y:out std_logic_vector(7downto0) );end decoder38;architecture behav of decoder38isbeginprocess(x)begincase x iswhen"000"=>y<="00000001"; when"001"=>y<="00000010"; when"010"=>y<="00000100"; when"011"=>y<="00001000"; when"100"=>y<="00010000"; when"101"=>y<="00100000"; when"110"=>y<="01000000"; when"111"=>y<="10000000";when others=>null;end case;end process;end behav;2、显示译码器library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity xianshi isport(a:in std_logic_vector(3downto0);b:out std_logic_vector(6downto0) );end xianshi;architecture behav of xianshi isbeginprocess(a)begincase a iswhen"0000"=>b<="0111111";when"0001"=>b<="0000110";when"0010"=>b<="1011011";when"0011"=>b<="1001111";when"0100"=>b<="1100110"; when"0101"=>b<="1101101"; when"0110"=>b<="1111101"; when"0111"=>b<="0000111"; when"1000"=>b<="1111111"; when"1001"=>b<="1101111"; when"1010"=>b<="1110111"; when"1011"=>b<="1111100"; when"1100"=>b<="0111001"; when"1101"=>b<="1011110"; when"1110"=>b<="1111001"; when"1111"=>b<="1110001";when others=>null;end case;end process;end behav;3、数据选择器library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity select41isport(x:in std_logic_vector(1downto0);a:in std_logic;b:in std_logic;c:in std_logic;d:in std_logic;y:out std_logic);end select41;architecture behav of select41isbeginprocess(x)begincase x iswhen"00"=>y<=a;when"01"=>y<=b;when"10"=>y<=c;when"11"=>y<=d;when others=>null;end case;end process;end behav;实验六用MSI设计组合逻辑电路1、输血血型验证2、单“1”检测器实验七集成触发器及使用1、用触发器设计四位异步计数器2、用触发器设计四位移位寄存器实验八时序电路的HDL设计1、模可变计数器library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity adder isport(clk:in std_logic;E:in std_logic;--E='1'则使能G:in std_logic;--G='1'为加,'0'为减M:in std_logic_vector(1downto0);--模选择y:out std_logic_vector(3downto0)--结果);end adder;architecture behav of adder issignal q:std_logic_vector(3downto0);beginprocess(E,G,clk)beginif E='0'thenq<=(others=>'0');elsif clk'event and clk='1'thenif G='1'thenif M="00"thenif q<"0001"thenq<=q+1;else q<=(others=>'0');end if;elsif M="01"thenif q<"0111"thenq<=q+1;else q<=(others=>'0');end if;elsif M="10"thenif q<"1001"thenq<=q+1;else q<=(others=>'0');end if;elsif M="11"thenq<=q+1;end if;elsif G='0'thenif M="00"thenif q>"1110"thenq<=q-1;elsif q="0000"thenq<="1111";else q<="1111";end if;elsif M="01"thenif q>"1000"thenq<=q-1;elsif q="0000"thenq<="1111";else q<="1111";end if;elsif M="10"thenif q>"0110"thenq<=q-1;elsif q="0000"thenq<="1111";else q<="1111";end if;else q<=q-1;end if;end if;end if;end process;y<=q;end behav;2、移位寄存器library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity shiftreg isport(clk:in std_logic;clr:in std_logic;load:in std_logic;fx:in std_logic;--fx='1'则左移,'0'右移M:in std_logic_vector(3downto0);y:out std_logic_vector(3downto0) );end shiftreg;architecture behav of shiftreg issignal q:std_logic_vector(3downto0);beginprocess(clk,clr,load)beginif clr='1'thenq<=(others=>'0');elsif clk'event and clk='1'thenif load='1'thenq<=M;elsif fx='1'thenq(3downto1)<=q(2downto0);q(0)<='0';elsif fx='0'thenq(2downto0)<=q(3downto1);q(3)<='0';end if;end if;end process;y<=q;end behav;实验十综合时序电路设计1、序列发生器library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity fangfa1isport(clk:in std_logic;y:out std_logic_vector(7downto0)--结果);end fangfa1;architecture behav of fangfa1issignal q:std_logic_vector(2downto0);beginprocess(clk)beginif clk'event and clk='1'thenq<=q+1;end if;end process;begincase q iswhen"000"=>y<="00000001";when"001"=>y<="00000010";when"010"=>y<="00000100";when"011"=>y<="00001000";when"100"=>y<="00010000";when"101"=>y<="00100000";when"110"=>y<="01000000";when"111"=>y<="10000000";end case;end process;end beha或2、序列检测器use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity jiance2isport(clk:in std_logic;din:in std_logic;--串行输入数据clr:in std_logic;--复位信号result:out std_logic--检测结果);end jiance2;architecture behav of jiance2issignal d:std_logic_vector(3downto0);signal y:std_logic_vector(3downto0);signal c:std_logic;begind<="1101";process(clr,clk,din)--序列移位存储beginif clr='1'or c='1'theny<="0000";else if clk'event and clk='1'theny<=y(2downto0)&din;else null;end if;end if;end process;process(clk,y)--比较序列beginif clk'event and clk='0'then--同步时钟,去除毛刺if y=d thenresult<='1';c<='1';else result<='0';c<='0';end if;else null;end if;end process;end behav;实验十一多功能数字中的设计library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity fen isport(clk:in std_logic;load:in std_logic;sw_set:in std_logic_vector(2downto0);gw_set:in std_logic_vector(3downto0);Qa:out std_logic_vector(2downto0);co:out std_logic;Qb:out std_logic_vector(3downto0));end;architecture a of fen issignal tema:std_logic_vector(2downto0);signal temb:std_logic_vector(3downto0);signal sw_setreg:std_logic_vector(2downto0);signal gw_setreg:std_logic_vector(3downto0);beginprocess(clk,load)beginif load='1'then tema<=sw_set;temb<=gw_set;co<='0';elsif(clk'event and clk='1')thenif tema="101"then--若时间达59时,则清零if temb>="1001"thentema<="000";temb<="0000";co<='1';else temb<=temb+"0001";co<='0';end if;elsif temb>="1001"thentema<=tema+"001";temb<="0000";co<='0';else temb<=temb+"0001";co<='0';end if;end if;Qa<=tema;Qb<=temb;end process;end a;ibrary ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity hours isport(clk:in std_logic;load:in std_logic;sw_set:in std_logic_vector(1downto0);gw_set:in std_logic_vector(3downto0);Qa:out std_logic_vector(1downto0);Qb:out std_logic_vector(3downto0));end;architecture a of hours issignal tema:std_logic_vector(1downto0); signal temb:std_logic_vector(3downto0); signal sw_setreg:std_logic_vector(1downto0); signal gw_setreg:std_logic_vector(3downto0);beginprocess(clk,load)beginif load='1'then tema<=sw_set;temb<=gw_set;elsif(clk'event and clk='1')thenif tema="10"then--若时间达23时,则清零if temb>="0011"thentema<="00";temb<="0000";else temb<=temb+"01";end if;elsif temb>="1001"thentema<=tema+"01";temb<="0000";else temb<=temb+"0001";end if;end if;Qa<=tema;Qb<=temb;end process;end a;library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity miao isport(clk,load:in std_logic;sw_set:in std_logic_vector(2downto0);gw_set:in std_logic_vector(3downto0);Qa:out std_logic_vector(2downto0);co:out std_logic;Qb:out std_logic_vector(3downto0));end;architecture a of miao issignal tema:std_logic_vector(2downto0); signal temb:std_logic_vector(3downto0); signal sw_setreg:std_logic_vector(2downto0); signal gw_setreg:std_logic_vector(3downto0); beginprocess(clk,load)beginif load='1'then tema<=(others=>'0');temb<=(others=>'0');elsif(clk'event and clk='1')thenif tema="101"then--若时间达59,则清零if temb>="1001"thentema<="000";temb<="0000";co<='1';else temb<=temb+"0001";co<='0';end if;elsif temb>="1001"thentema<=tema+"01";temb<="0000";co<='0';else temb<=temb+"0001";co<='0';end if;end if;Qa<=tema;Qb<=temb;end process;end a;实验十二交通信号灯的设计library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_unsigned.all;entity traffic isport(clk1k:in std_logic;-------时钟信号(1khz)rst:in std_logic;-------紧急控制信号etime:out std_logic_vector(3downto0);sr,sg,sy:out std_logic;------南北方向红黄绿灯信号er,eg,ey:out std_logic------东西方向红黄绿灯信号);end traffic;architecture behav of traffic istype states is(sta0,sta1,sta2,sta3,sta4,sta5,sta6,sta7,sta8,sta9,sta10,sta11,sta12,sta13,sta1 4,sta15,sta16,sta17,sta18,sta19,sta20,sta21);signal current_state,next_state:states:=sta0;signal temp1,temp2,temp3:std_logic_vector(7downto0);signal temp4,temp5:std_logic_vector(9downto0);signal flag1,flag2,flag3,flag4:std_logic;--分别用于指示绿灯亮、绿灯闪烁、黄灯闪烁、分频signal etimereg:std_logic_vector(3downto0);signal end1,end2,end3:std_logic;signal clk:std_logic;--分频后得到的1hz时钟beginprocess(clk1k,rst)beginif rst='1'thencurrent_state<=sta0;elsif clk1k'event and clk1k='1'thencurrent_state<=next_state;end if;end process;process(current_state)begincase current_state is---------------sta0为初始状态-----------------------when sta0=>er<='1';eg<='0';ey<='0';sr<='1';sg<='0';sy<='0';flag1<='0';flag2<='0';flag3<='0';flag4<='0';etime<="1111";--stiem<="00000000";next_state<=sta1;---------------sta1为状态1:东西路口的绿灯亮,南北路口的红灯亮,持续10秒-----------------------when sta1=>er<='0';eg<='1';ey<='0';sr<='1';sg<='0';sy<='0';flag4<='1';etime<=etimereg;--stime<=stimereg;flag1<='1';if end1='1'thennext_state<=sta2;else next_state<=sta1;end if;---------------sta2-sta6为状态2:东西路口的绿灯闪烁,南北路口的红灯亮-----------------------when sta2=>er<='0';eg<='0';--绿灯灭ey<='0';sr<='1';sg<='0';sy<='0';flag2<='1';flag1<='0';flag4<='1';etime<=etimereg;--stime<=stimereg;if end2='1'thennext_state<=sta3;else next_state<=sta2;end if;when sta3=>er<='0';eg<='0';ey<='0';sr<='1';sg<='0';sy<='0';flag2<='0';flag4<='1';etime<=etimereg;--stime<=stimereg;next_state<=sta4; when sta4=>er<='0';eg<='1';--绿灯亮ey<='0';sr<='1';sg<='0';sy<='0';flag2<='1';flag4<='1';etime<=etimereg;--stime<=stimereg;if end2='1'thennext_state<=sta5;else next_state<=sta4;end if;when sta5=>er<='0';eg<='1';ey<='0';sr<='1';sg<='0';sy<='0';flag2<='0';flag4<='1';etime<=etimereg;--stime<=stimereg;next_state<=sta6;when sta6=>er<='0';eg<='0';--绿灯灭ey<='0';sr<='1';sg<='0';sy<='0';flag2<='1';flag4<='1';etime<=etimereg;--stime<=stimereg;if end2='1'thennext_state<=sta7;else next_state<=sta6;end if;---------------sta7-sta9为状态3:东西路口的黄灯闪烁,南北路口的红灯亮-----------------------when sta7=>er<='0';eg<='0';ey<='1';--黄灯亮sr<='1';sg<='0';sy<='0';flag2<='0';flag3<='1';flag4<='1';etime<=etimereg;--stime<=stimereg;if end3='1'thennext_state<=sta8;else next_state<=sta7;end if;when sta8=>er<='0';eg<='0';ey<='1';sr<='1';sg<='0';sy<='0';flag3<='0';flag4<='1';etime<=etimereg;--stime<=stimereg;next_state<=sta9;when sta9=>er<='0';eg<='0';ey<='0';--黄灯灭sr<='1';sg<='0';sy<='0';flag3<='1';flag4<='1';etime<=etimereg;--stime<=stimereg;if end3='1'thennext_state<=sta10;else next_state<=sta9;end if;when sta10=>er<='0';eg<='0';ey<='0';--过渡状态sr<='1';sg<='0';sy<='0';flag3<='0';flag4<='0';etime<=etimereg;--stime<=stimereg;next_state<=sta11;when sta11=>er<='1';eg<='0';ey<='0';sr<='0';sg<='1';sy<='0';flag1<='0';flag2<='0';flag3<='0';flag4<='0';etime<="1111";--stiem<="00000000";next_state<=sta12;---------------东西路口红灯亮,同时南北路口的绿灯亮,南北方向开始通车----------------------when sta12=>er<='1';eg<='0';ey<='0';sr<='0';sg<='1';sy<='0';flag4<='1';etime<=etimereg;--stime<=stimereg;flag1<='1';if end1='1'thennext_state<=sta13;else next_state<=sta12;end if;---------------sta2-sta6为状态2:南北路口的绿灯闪烁,东西路口的红灯亮-----------------------when sta13=>er<='1';eg<='0';--绿灯灭ey<='0';sr<='0';sg<='0';sy<='0';flag2<='1';flag1<='0';flag4<='1';etime<=etimereg;--stime<=stimereg;if end2='1'thennext_state<=sta14;else next_state<=sta13;end if;when sta14=>er<='1';eg<='0';ey<='0';sr<='0';sg<='0';sy<='0';flag2<='0';flag4<='1';etime<=etimereg;--stime<=stimereg;next_state<=sta15;when sta15=>er<='1';eg<='0';--绿灯亮ey<='0';sr<='0';sg<='1';sy<='0';flag2<='1';flag4<='1';etime<=etimereg;--stime<=stimereg;if end2='1'thennext_state<=sta16;else next_state<=sta15;end if;when sta16=>er<='1';eg<='0';ey<='0';sr<='0';sg<='1';sy<='0';flag2<='0';flag4<='1';etime<=etimereg;--stime<=stimereg;next_state<=sta17;when sta17=>er<='1';eg<='0';--绿灯灭ey<='0';sr<='0';sg<='0';sy<='0';flag2<='1';flag4<='1';etime<=etimereg;--stime<=stimereg;if end2='1'thennext_state<=sta18;else next_state<=sta17;end if;---------------sta7-sta9为状态3:东西路口的黄灯闪烁,南北路口的红灯亮-----------------------when sta18=>er<='1';eg<='0';ey<='0';--黄灯亮sr<='0';sg<='0';sy<='1';flag2<='0';flag3<='1';flag4<='1';etime<=etimereg;--stime<=stimereg;if end3='1'thennext_state<=sta19;else next_state<=sta18;end if;when sta19=>er<='1';eg<='0';ey<='0';sr<='0';sg<='0';sy<='1';flag3<='0';flag4<='1';etime<=etimereg;--stime<=stimereg;next_state<=sta20;when sta20=>er<='1';eg<='0';ey<='0';--黄灯灭sr<='0';sg<='0';sy<='0';flag3<='1';flag4<='1';etime<=etimereg;--stime<=stimereg;if end3='1'thennext_state<=sta21;else next_state<=sta20;end if;when sta21=>er<='1';eg<='0';ey<='0';--sr<='0';sg<='0';sy<='0';flag3<='0';flag4<='1';etime<=etimereg;--stime<=stimereg;next_state<=sta0; when others=>next_state<=sta0;end case;end process;process(flag1,clk)beginif flag1='0'thentemp1<="00000000";end1<='0';elsif clk'event and clk='0'thenif temp1>="00001001"thenend1<='1';else temp1<=temp1+"00000001";end1<='0';end if;end if;end process;process(flag2,clk)beginif flag2='0'thenend2<='0';elsif clk'event and clk='0'thenend2<='1';end if;end process;process(flag3,clk)beginif flag3='0'thenend3<='0';elsif clk'event and clk='0'then end3<='1';end if;end process;process(flag4,clk)beginif flag4='0'thenetimereg<="1111";elsif clk'event and clk='1'then etimereg<=etimereg-1; end if;end process;process(clk1k)beginif clk1k'event and clk1k='1'thenif temp4>="1111101000"thenclk<='1';temp4<=(others=>'0');else temp4<=temp4+"0000000001";clk<='0';end if;end if;end process;end behav;。
宁波大学计算机网络-实验手册中文版
计算机网络实验手册(学生用书)第四版周宇 王晓东宁波大学信息学院二○○七计算机网络实验手册前 言本实验手册是为Jim Kurose和Keith Ross编著的《Computer Networking: A Top Down Approach Featuring the Internet》第三版配套编写的,主要针对第1章到第5章的内容,改编自Kurose和Ross编写的Ethereal Lab Version 1.0。
当然本实验手册也适用于其他以TCP/IP协议为主要讲授内容的《计算机网络》课程,这套配套实验共计8个,除了第一个实验必须首先完成外,第2到第8这些实验可以任意安排顺序来完成。
通过这些实验对TCP/IP各层次协议的分析和研究来帮助学生理解和掌握协议内容,每个实验基本的操作性内容约占时45分钟左右(要求学生在预习的基础上完成),还有45分左右的时间用于数据分析、完成思考题和进行研究性内容,并且我们要求每个学生在实验前准备好每个项目的自主设计部分实验,每个实验学生将需要大约60分钟用于完成实验报告。
每次实验的报告除描述基本的实验过程和实验结果外要求认真完成思考题,同时每一个实验每一组捕获的数据均需另存为文件,连同相应的截图文件通过FTP上交,所提供的FTP 空间上可以上传和下载实验数据文件(但不能修改或删除文件),这些数据需用于实验分析和完成实验报告,请注意保持每份实验报告和数据的一致性,在每份实验报告中均请标注对应的数据文件(或截图)名称,请勿抄袭。
在这些实验中,我们将会在不同的场合下请你运用电脑来运行各种网络应用,你将会观察到在你的电脑里网络协议是怎样运行的、怎样相互作用的以及在因特网中怎样利用协议完成实体间消息的交换。
请记住,你和你的电脑将会是这些生动实验的一部分,通过做这些实验,你将学会在网络世界观察和学习。
为了体会作者的原始意图和体现Internet特色,本实验需要客户端能够接入互联网,为保证实验效果和访问速度请不要在实验课上作与本课程无关的工作。
计算机网络实验思考题答案
计算机网络实验思考题答案实验一网线制作1、简述自制网线的情况,并分析原因;2、6类双绞线的制作相对于5类(超5类)线,需要注意的地方有哪些(扩展);下面是100M和1000M网线的常见制作方法、千兆网线的施工注意事项。
5类线(100M)的制作:a: 绿白(3)、绿(6)、橙白(1)、蓝(4)、蓝白(5)、橙(2)、棕白(7)、棕(8)b:橙白(1)、橙(2)、绿白(3)、蓝(4)、蓝白(5)、绿(6)、棕白(7)、棕(8)常见普通线为:b-b 常见对拷线:a-b(1-3、2-6交叉)6类线的制作(千兆线):a:橙白(1)、橙(2)、绿白(3)、蓝(4)、蓝白(5)、绿(6)、棕白(7)、棕(8)b: 绿白(3)、绿(6)、橙白(1)、棕白(7)、棕(8)、橙(2)、蓝(4)、蓝白(5)常见普通线为:b-b 常见对拷线:a-b(1-3、2-6、4-7、5-8交叉)-(与100m的不同)两种网线的线序不同3、为什么夹线钳剥掉外层护套要让裸漏的网线稍长一点,整好线序后又剪短;方便整理、排列线序4、步骤5中保护套为何也要伸入水晶头中;增强网线的抗拉伸能力,加强网线与水晶头之间的连接实验二路由器的配置1、路由器的几种配置方式分别在什么场合使用比较合适?1.控制台方式这种方式一般是对路由器进行初始化配置时采用,它是将PC机的串口直接通过专用的配置连线与路由器控制台端口"Console"相连,在PC计算机上运行终端仿真软件(如Windows 系统下的超有终端),与路由器进行通信,完成路由器的配置。
在物理连接上也可将PC的串口通过专用配置连线与路由器辅助端口AUX直接相连,进行路由器的配置。
2.远程登录(Telnet)方式这是通过操作系统自带的TELNET程序进行配置的(如Windows\Unix\Linux等系统都自带有这样一个远程访问程序)。
如果路由器已有一些基本配置,至少要有一个有效的普通端口,就可通过运行远程登录(T elnet)程序的计算机作为路由器的虚拟终端与路由器建立通信,完成路由器的配置。
计算机网络实践试题及答案
计算机网络实践试题及答案在计算机网络领域,实践是非常重要的一部分。
通过实践,我们可以巩固理论知识,培养实际操作技能,并解决实际问题。
本文为大家提供一些计算机网络实践试题及答案,希望对大家的学习和实践有所帮助。
一、试题1. 描述网络拓扑结构,并列举其优缺点。
2. 什么是IP地址?IPv4和IPv6有何区别?3. TCP和UDP是什么?它们之间有何区别?4. 什么是HTTP协议?简要描述其工作原理。
5. 解释什么是网络安全,并提供至少三种常见的网络安全威胁。
6. 简要描述网络防火墙的工作原理,并说明其在网络安全中的重要性。
7. 什么是虚拟专用网络(VPN)?列举其优点及应用场景。
8. 简述路由器和交换机的区别,并分别列举它们的主要功能和应用场景。
9. 解释什么是云计算,并提供至少两种常见的云计算服务类型。
10. 什么是网络拥塞?列举三种常见的网络拥塞控制方法。
二、答案1. 网络拓扑结构是指计算机网络中各节点之间物理或逻辑连接的结构。
常见的网络拓扑结构包括星型、总线型、环型、树型和网状型等。
其优缺点如下:- 星型:易于管理和扩展,但单点故障会影响整个网络。
- 总线型:简单、易于搭建,但节点数目增加时性能下降。
- 环型:数据传输效率高,但某个节点故障会导致整个环路中断。
- 树型:灵活、可靠,但受限于根节点的性能和带宽。
- 网状型:高度可靠,但复杂度高、管理困难。
2. IP地址是计算机在网络中的唯一标识。
IPv4使用32位地址,IPv6使用128位地址。
IPv4地址数量有限,IPv6地址数量巨大,以满足未来互联网的需求。
3. TCP(传输控制协议)和UDP(用户数据报协议)是互联网传输层的两种常用协议。
TCP提供可靠的数据传输,具备流量控制、拥塞控制和错误重传等机制;UDP提供不可靠的数据传输,适用于实时应用和数据量较小的传输。
TCP是面向连接的,UDP是无连接的。
4. HTTP协议(超文本传输协议)是用于Web应用的基础协议。
计算机网络实验报告-Reports-2 (2)
宁波大学信息科学与工程学院计算机网络第二章DIY!now电子版实验报告班级:自动化111班姓名:学号: 1160完成时间: 2013-10-17[注]1.每个实验问题回答时可以采用截图辅助说明;2.实验报告(包含数据)打包成rar文件,传到Reports2文件夹,并用学号+姓名+章号命名,如:07410005张山-Reports-2.rar3.请独立完成实验和报告,实验报告分析和数据要一致。
实验 1 2 3 4 5 6 7 8 9 10 得分实验11 12 13 14得分2.1 基本的HTTP GET/Response(P14)实验时间:客户端IP:10.22.65.84 RACK编号:A.上传的文件名是: 2.1 。
Q1.你的浏览器运行的HTTP是1.0版本还是1.1版本?服务器运行HTTP是哪个版本?答:HTTP/1.1 HTTP/1.1Q2.你的浏览器能接受服务器的哪些语言?答:zh-cnQ3.你的电脑的IP地址是多少?服务器的IP地址是多少?答:本机IP:10.22.65.84服务器IP:210.33.16.22Q4.从服务器返回到你的浏览器的状态码是什么?答:200OKQ5.什么时候在服务器端得到最后修正的HTML文件?答:Wed, 04 Apr 2007 16:00:00 GMTQ6.多少字节的内容已经返回到你的浏览器?答:504Q7.除以上已回答过的字段外,头部还有哪些字段?在数据包内容窗口中检查原始数据,是否有未在数据包列表中显示的头部?答:server, ETag ,ACCEPT-Ranges ;Connection,content_type,Line-based,text,dataB.上传的文件名是: 2.2 。
Q8.你的浏览器访问的的IP地址是多少?首次get得到的响应状态码是什么?返回的location值是什么?这代表了什么意思?答:74.125.128.103HTTP/1.1 302 Found/url?sa=p&hl=zh-CN&pref=hkredirect&pval=yes&q=http:// /&ust=1381996666036397&usg=AFQjCNH2zv3FxTVJCxbAcZ2kc EseFj1w_w服务器发生改变Q9.你的浏览器紧接着访问的网址是什么?IP地址是什么?用的是什么方法?答:;74.125.128.199;跳转Q10.这次服务器的响应状态码是什么?答:HTTP/1.1 200 OKQ11.除了这个响应外,自学分析后续请求和响应的作用是什么?答:http请求头:Accept: text/html,image/*浏览器通过这个头,告诉服务器它所支持的数据类型Accept-Charset:浏览器通过这个头,告诉服务器它采用的字符集Accept-Encoding:浏览器通过这个头,告诉服务器,它所支持的压缩格式Accept-Language:浏览器通过这个头,告诉服务器,它所采用的语言Host:浏览器通过这个头,告诉服务器,我想访问服务器哪台主机If-Modified-Since:浏览器通过这个头,告诉服务器,它缓存数据时间是多少。
宁波大学计算机网络实验答案
,持续了多久?A:样例数据中是13:02:42.904953-13:02:42.525377=379.576ms 的IP 地址是多少?你的电脑IP 地址是多少?A: :128.119.245.12, lochost:192.168.0.202Q4.导出这两个HTTP 消息,你可以在Ethereal 的File 命令菜单中选择save 菜单,导出的文件命名为ethereal-1。
参考数据:ethereal-1Q5.记录是否成功?如果成功,Reply from 的IP 地址、bytes、time 和TTL 的值是什么?A:成功,IP:210.33.16.188,bytes=32 time<1ms TTL=124Q6.根据Q5 的结果分析到 的中间路由数量大约是多少?A:大约128-124=4 个Q7.ping 的四次收发的数据是些什么内容,接收和发送的是一样的吗?A:收发的内容是:abcdefghijklmnopqrstuvwabcdefghi,一样的。
参考数据:ping-1显示结果:Pinging [210.33.16.188] with 32 bytes of data:Reply from 210.33.16.188: bytes=32 time<1ms TTL=124Reply from 210.33.16.188: bytes=32 time<1ms TTL=124Reply from 210.33.16.188: bytes=32 time<1ms TTL=124Reply from 210.33.16.188: bytes=32 time=5ms TTL=124Q8.到该网站的中间路由有多少个?和用ping 分析的结果一样吗?为什么?A:共4 个中间路由器。
和ping 的结果一样。
都是ICMP 分析方法。
《计算机网络》自顶向下和Internet 特色实验手册4Q9.中间路由耗时都一样吗?会不一样吗?为什么?A:耗时不一样,但基本一致。
计算机网络实验实训教程课后习题解答答案
习题解答第一章交换机实验实验二交换机的配置模式一、思考题1、为什么enable 密码在show 命令显示的时候,不是出现配置的密码,而是一大堆不认识的字符。
解答:在设置密码时使用的显示参数不同,其中,使用参数“0”标识密码为明文结构,即原始密码(可见密码);使用参数“7”标识密码为密文结构,即显示为加密后的密码(不可识别,防盗)。
2、当你不能确定一个命令是否存在于某个配置模式下的时候,应该怎么查询?解答:使用“?”,可以罗列该模式下所有可使用的命令;也可以使用Tab 键来识别,先写入该命令的第1或者2个字母,使用Tab键识别,能够补全,则说明该命令有可用,不能补全,则说明是不对的。
二、课后练习1、进入各个配置模式,并退出。
2、设置特权用户配置模式的enable 密码为“digitalchina”。
3、实验结束后,一定要取消enable 密码。
答案:参考教程实验二详细步骤。
实验四交换机恢复出厂设置及其基本配置一、思考题1、为什么第三步中show flash 的显示中,startup-config 文件的大小是0 bytes?2、怎样才能将startup-config 文件和running-config 文件保持一致?解答:1和2同解,startup-config 是启动配置文件,设备在初始化状态时,文件的大小是0 bytes,当用户配置完成后,运行write命令,会将running-config 即运行配置文件写入到flash中的startup-config文件,这样,设备在断电或是重启后,仍旧可以保持配置成功状态时的效果,来避免设备配置完后长期使用出现死机或假死状态,设备重启即可解决问题。
二、课后练习1、请为交换机设置enable 密码为wl123;2、请把交换机的时钟设置为当前时间;3、请为交换机设置姓名为digitalchina-3926S;4、请把交换机的帮助信息设置为中文;5、请把交换机恢复到出厂设置。
101G09XT1[1].宁波大学计算机网络A.答案
一、单选题,每题仅一个正确答案,每题1.5分,共30分:[ ]1. Which is not a network communication links?D.Subway[ ]2.Which is not the types of protocol data unit in TCP/IP?C.datetime[ ]3.In which state the delays of router become small?A. La/R ~ 0[ ]4.When congest occur in network, which delay become large?B.queuing delay[ ]5.Application protocol define the types of messages exchanged, which are:A.request & response messages[ ]6.Which version of hypertext transfer protocol are used in default mode now?C.HTTP 1.1[ ]7.The Http client works on which port:C.TCP port above 1024[ ]8.To indicates end of message in Http, we can use:A.Carriage return and line feed[ ]9.Which is not an email protocol:C.Emule[ ]10. TCP retransmission can not be caused by:D. ACK[ ]11. Which of the following measures the time from one segment transmission to ACK receipt:A. sample RTT[ ]12. Which event will not be in TCP Receiver:C.Arrival of out-of-order segment higher-than-expect seq. # .No gap detected.[ ]13.TCP Flow Control is a speed-matching service for matching:A.the sender rate to the receiving application’s drain rate[ ]14.Which one is not the mechanism of TCP Congestion Control:C.FIFO[ ]15.In RDT protocol, which can increase the use of physical resources:C.Pipeline[ ]16. Which one is not the Key Network-Layer Functions in today’s internet:C. Connection setup[ ]17. Which of the following IP address belongs to category C address?A. 210.98.3.4[ ]work address translation implement in NAT router, it must use: C.NAT translation table[ ]19. ICMP do not error reporting about:D. unknown username[ ]20. In Ethernet’s CSMA/CD Jam Signal make sure:A.other transmitters are aware of collision二、多选题,每题有2-3个正确答案,请在正确项前打钩(全钩不给分),每题2分,共20分:1. The communication services be provided to applications, It can be:[ ]A.connectionless[ ]B.connection-oriented2.Which are application architectures model in the internet?[ ]A.client/server model[ ]B.peer-peer model[ ]C.browser/server model3. User Agent is an interface with user “above” and network “below”, such as:[ ]A.Web: browser[ ]B.E-mail: mail reader[ ]D.Streaming audio/video: media player4.Ftp protocol can work in which model that listed:[ ]A.PASV model[ ]C.Port model5. The problems with centralized directory of P2P maybe:[ ]A.Single point of failure[ ]C.Performance bottleneck[ ]D.Copyright infringement6.Which services are not available in TCP:[ ]A.delay guarantees[ ]C.bandwidth guarantees7. In TCP congestion control, there are those State in TCP Sender:[ ]A. Congestion Avoidance[ ]C. Slow Start[ ]D. Timeout8.In TCP three way handshake, it will be:[ ]A.client host sends TCP SYN segment to server[ ]C.server host receives SYN, replies with SYN/ACK segment[ ]D.client receives SYN/ACK, replies with ACK segment9.Those are the routing in the Internet:[ ]A.RIP[ ]B.OSPF[ ]D.BGP10.Those are the Random Access Protocols:[ ]B.CSMA[ ]C.CSMA/CD三、名称缩写选择,请在匹配项上填写缩写编号,如果在下列18个选项中没有,可以在19-20项中自主添加选项。
计算机实验报告答案
计算机实验报告答案计算机实验报告答案引言:计算机实验是计算机科学与技术专业中不可或缺的一部分,通过实践操作和实验验证,可以帮助学生更好地理解和掌握计算机原理和应用技术。
本文将就某个计算机实验进行分析和解答,帮助读者更好地理解实验内容和解决实验问题。
实验背景:本次实验的主题是关于计算机网络的基础知识和应用。
实验内容主要包括网络连接、数据传输和网络安全等方面的问题。
通过实验,我们的目标是掌握网络连接的建立和维护、数据传输的过程和网络安全的基本概念。
实验步骤:1. 首先,我们需要搭建一个局域网环境,确保实验的进行。
可以使用虚拟机软件创建多个虚拟机,然后将它们连接在同一个虚拟局域网中。
2. 接下来,我们将进行网络连接实验。
首先,需要为每个虚拟机设置IP地址和子网掩码。
可以使用命令行或者图形界面进行设置。
确保每个虚拟机都能够相互通信和访问共享文件夹。
3. 然后,我们将进行数据传输实验。
选择两台虚拟机作为发送方和接收方。
在发送方虚拟机上,使用ping命令测试与接收方虚拟机的连通性。
在接收方虚拟机上,使用Wireshark等网络抓包工具进行数据包的捕获和分析。
4. 最后,我们将进行网络安全实验。
选择一台虚拟机作为攻击方,另一台虚拟机作为防御方。
攻击方可以使用DOS攻击、ARP欺骗等方式进行攻击,防御方需要采取相应的措施进行防护。
实验问题与解答:1. 问题:在网络连接实验中,如何设置虚拟机的IP地址和子网掩码?解答:可以通过在虚拟机的操作系统中进行设置。
在Windows系统中,可以进入“控制面板”->“网络和Internet”->“网络和共享中心”,选择“更改适配器设置”,然后右键点击相应的网络连接,选择“属性”,在“Internet协议版本4(TCP/IPv4)”中进行设置。
2. 问题:在数据传输实验中,如何使用ping命令测试两台虚拟机的连通性?解答:在发送方虚拟机的命令行中,输入“ping 目标IP地址”即可。
宁波大学计算机网络实验四
宁波大学计算机网络实验四宁波大学信息科学与工程学院计算机网络第四章DIY!now电子版实验报告班级:通信112班姓名:徐威学号:116040040 完成时间:2012-12-29 [注] 1. 每个实验问题回答时可以采用截图辅助说明; 2. 实验报告打包成rar文件,传到Reports3文件夹,并用学号+姓名+章号命名,如:07410005张山- 3. 请独立完成实验和报告,实验报告分析和数据要一致。
实验得分 1 2 3 4IP协议分析实验时间:12-24 客户端IP:RACK编号:5A A.上传的文件名是:4-1。
一、捕获traceroute 二、观察捕获的数据Q1.选择你的电脑所发送的第一个ICMP请求消息,在包详细信息窗口扩展包的Internet协议部分。
你的电脑的IP地址是多少?答:电脑的ip地址:Q2.在IP包头部,上层协议区域的值是多少?答:上层协议区域的值是 1 Protocol: ICMP (1) 头部有多少字节?IP数据包的有效载荷是多少字节?解释你是怎样确定有效载荷的数量的?答:有效载荷是36字节,Q4.这个IP数据包被分割了吗?解释你是怎样确定这个数据包是否被分割?答:这个IP数据包没有被分割Q5.在包捕获列表窗口,你能看到在第一个ICMP下的所有并发的ICMP消息吗?答: 1 Q6.往同一IP的数据包哪些字段在改变,而且必须改变?为什么?哪些字段是保持不变的,而且必须保持不变?答:必须改变:1. Identification:相同的标示段值能使分片的数据报不可能重新装成原来的数据报 2. Time to live 3. Header checksum 保持不变片偏移某片在源地址中的相对位置标示:是否收到最后一片数据报Q7.描述一下在IP 数据包的Identification字段的值是什么样的?答:每个IP数据包ID 值是连续变化的数据字段和TTL 字段的值是多少?答:Q9.所有的通过最近的路器发送到你的电脑去的ICMP的TTL溢出回复是不是值都保持不变呢?为什么?答:不是;因为不同的路器到达电脑所经过的路器的数目不一Q10. 那个消息是否传送多于一个IP数据包的分片?看第一个被分割的IP数据包的片段,在IP头部有什么信息指出数据包已经被分割?在IP头部有什么信息指出这是否是第一个与后面片段相对的片段?这个IP 数据包的长度是多少?答:是的140IP Fragmented IP protocol (proto=ICMP 0x01, off=0, ID=896a) [Reassembled in #141] Total Length: 1500 Q11.看被分割的IP数据包的第二个片段。
计算机网络实验报告及作业(答案)及综合应用题
第一章计算机网络概念一、选择题1.D 2.D 3.C 4.A 5.D6.B 7.D 8.B 9.A 10.B11.A 12.C 13.B 14.C 15.D16.C 17.D 18.C 19.B 20.A二、填空题1.第一代计算机网络2.数据资源软件资源硬件资源3.通信子网资源子网4.主机终端5.通信线路各站点6.有线无线7.广域网城域网局域网8.星型拓扑总线型拓扑环形拓扑网状拓扑9.曼彻斯特编码10.信号11.电平数字信号12.单工半双工全双工13.同步传输数据速率、每个比特的持续时间和间隔14.双绞线电磁干扰15.基带同轴电缆宽带同轴电缆16.屏蔽双绞线非屏蔽双绞线17.小宽低块18.不一致19.奇偶校验码循环冗余校验码20.不归零码曼彻斯特编码三、简答题1.计算机网络是指将分散在不同地点且具有独立功能的多个计算机系统,利用通信设备和线路相互连接起来,在网络协议和软件的支持下进行数据通信,实现资源共享的计算机系统的集合。
计算机网络的逻辑结构由通信子网和资源子网组成。
2.按网络传输范围分为局域网、城域网、广域网、互联网;按通信介质分为有线网、无线网;按网络的使用范围来划分公用网、专用网;按网络的物理结构和传输技术分为广播式通信网络和点对点通信网络;按照网络的服务方式分为客户机/服务器网络和对等网。
3. 资源子网提供访问的能力,资源子网由主计算机、终端控制器、终端和计算机所能提供共享的软件资源和数据源(如数据库和应用程序)构成。
主计算机通过一条高速多路复用线或一条通信链路连接到通信子网的结点上。
通信子网是由用作信息交换的结点计算机NC和通信线路组成的独立的数据通信系统,它承担全网的数据传输、转接、加工和变换等通信处理工作。
4. 追溯计算机网络的发展历史,它的演变可概括地分成四个阶段:(1)从20世纪50年代中期开始,以单个计算机为中心的远程联机系统,构成面向终端的计算机网络,称为第一代计算机网络。
计算机网络实验综合题含标准答案(路由和交换,强烈推荐)
计算机网络实验综合题试题一某公司租用了一段 C 类地址 203.12.11.0/24〜203.12.14.0/24,如图所示。
其网间地址是 172.11.5.14/24要求网内所有PC 都能上网。
E0:17 2-11.5.14/2420 3 J 2.11.253/2412:203.12.U.1/24 71X1413:203,12,【问题1】接入层交换机Switch1的端口 24为trunk 口,其余各口属于vian11,请解释下列命令并完成 交换机的配置。
Switch1#c onfig termi nalSwitch1(config)#interface f0/24 (进入端口 24 配置模式) Switch1(config-if)# switchport mode trunk (1)Switch1 (con fig-if)#switchport trunk en capsulati on dotlq (2)Switch1(config-if)# switchport trunk allowed all (允许所有 VLAN 从该端口交换数据) Switch1(co nfig-if)#exit Switch1(co nfig)#exit Switch1# vla n databaseSwitch1(vla n)# vlan 11 name lab01 (3)E1:Z0 3.12.11.254/24A —VL£\N1:2Sri2.11.1/24SwitchOSwitchlSwitch2Switch3VLAN11:20112.12.1/24 VLffl InternetSwitch1(vla n)#exit Switch1#c onfig termi nalSwitch1(config)#interface fO/9 (进入fO/9 的配置模式)Switch1(config-if)# (4)(设置端口为接入链路模式)Switch1(config-if)# ( 5)(把fO/9 分配给VLAN11 )Switch1(co nfig-if)#exitSwitch1(co nfig)#exit(1)设置端口为中继(或Trunk)模式(2)设置Trunk采用802.1q格式(或dot1q )(3)创建vlan11,并命名为labO1(4)switchport mode access(5)switchport access vlan 11 或switchport accessvlan lab01【问题2】以下两个配置中错误的是(6),原因是(7)。
网络实验参考答案
网络实验参考答案网络实验参考答案网络实验是计算机科学与技术领域中的一项重要实践活动,通过实验可以帮助学生巩固理论知识、培养实践能力。
然而,在进行网络实验时,学生常常会遇到一些问题,比如实验步骤不清晰、实验环境配置困难等。
为了帮助学生更好地进行网络实验,本文将提供一些网络实验参考答案,以供学生参考。
一、网络拓扑搭建在进行网络实验时,首先需要搭建一个网络拓扑结构。
网络拓扑是指网络中各个节点之间的连接关系。
常见的网络拓扑结构有总线型、星型、环型、树型等。
在搭建网络拓扑时,可以根据实验需求选择适当的拓扑结构。
例如,如果实验要求模拟一个局域网,可以选择星型拓扑结构。
在星型拓扑中,各个设备都连接到一个中央设备上,中央设备充当网络的核心。
搭建星型拓扑时,可以使用交换机作为中央设备,将各个主机通过网线连接到交换机上。
二、网络协议配置在网络实验中,常常需要进行网络协议的配置。
网络协议是指计算机网络中用于通信的规则和约定。
常见的网络协议有TCP/IP协议、HTTP协议、FTP协议等。
在配置网络协议时,需要设置相应的参数,如IP地址、子网掩码、网关等。
例如,如果实验要求进行网络通信测试,可以使用TCP/IP协议。
在配置TCP/IP 协议时,需要设置主机的IP地址、子网掩码和网关。
IP地址是主机在网络中的唯一标识,子网掩码用于划分网络和主机的范围,网关是主机与其他网络之间的通信节点。
三、网络安全设置网络安全是网络实验中需要重点考虑的问题。
网络安全主要包括防火墙设置、访问控制列表(ACL)配置、密码策略等。
通过合理设置网络安全措施,可以保护网络不受未授权访问和攻击。
例如,如果实验要求测试网络的安全性,可以设置防火墙。
防火墙是一种网络安全设备,可以监控和控制网络流量。
通过设置防火墙规则,可以限制特定IP地址或端口的访问,提高网络的安全性。
四、网络故障排除在进行网络实验时,常常会遇到网络故障问题。
网络故障可能导致网络不可用或性能下降。
宁波大学计算机网络习题集
1.In communication links, transmission rate means:A、 BandwidthB、propagation speedC、 process speedD、 router delays正确答案:A2.All communication activities in Internet are governed by:A、 ProtocolsB、WebMasterC、 ClientD、 ChinaTelecom正确答案:A3.The center of internet structure is:A、 Tier-1 ISPsB、Local ISPsC、 Root DNSD、NAP正确答案:A4.When congest occur in network, which delay become large?A、 propagation delayB、queuing delayC、 transmission delayD、 processing delay正确答案:B5.The internet protocols not define:A、 order of messagesB、actions takenC、 formatD、 price正确答案:D6.The internet protocols not define:A、 actions takenB、order of messagesC、 hackerD、 format正确答案:C7.Which is not the types of protocol data unit in TCP/IP?A、 frameB、datetimeC、 segmentD、 message正确答案:B8.Which is not a connected end system device in the internet?A、 Mobile PhoneB、PC serverC、 PC workstationD、 Router正确答案:D9.All communication activities in network are governed by :A、 ProtocolsB、ServersC、 GovernmentD、 Clients正确答案:A10.For Queueing delay,in which state, average queuing delay small:A、 La/R =0.1B、La/R =0.9C、 La/R > 1D、 La/R >10正确答案:A1 应用层中的数据块常被称为:A、比特流B、帧C、分组D、信息正确答案:D2 在 TCP/IP 层次协议中,传输层向应用层供给的接口是哪一个?A、 PutB、PortC、 SocksD、 Socket正确答案:D3以下哪一组协议属于应用层协议?A、 ICMP,RARP,ARPB、FTP,SMIP,TELNETC、 ARP,IP,UDPD、 IP,TCP,UDP正确答案:B4 在互联网 WEB 应用中以下哪一项饰演了控制角色?A、 HTML 语言B、Web 客户端C、 HTTP 协议D、 Web 服务器正确答案:C5 下边哪一个特点是HTTP 协议所不具备的 :A、面向对象B、客服机 / 服务器C、无连结D、无状态正确答案:C6IE8.0 阅读器默认使用的超文本传输协议是哪一个版本?A、 WEB 2.0B、HTTP1.0C、 HTTP 1.1D、 HTTP 2.0正确答案:C7 在 HTTP 协议中,每一个对象的地点都能够表记为:A、UDPB、UMLC、UTPD、URL正确答案:D8HTTP 需要阅读器在每一个恳求中递交认证信息,这是由于HTTP 协议的哪一个特征?A、面向连结B、无连结C、散布式D、无状态正确答案:D9 在互联网 WEB 应用中连结由以下哪一方倡始?A、 HTML 语言B、Web 客户端C、 HTTP 协议D、 Web 服务器正确答案:B10Processes running in different hosts communicate with an :A、 slotted ALOHA protocolB、Internet routing protocolC、 application-layer protocolD、 interprocess communication正确答案:C1What is the default persistent model in HTTP/1.1:A、 Nonpersistent with pipeliningB、Persistent with pipeliningC、 Persistent without pipeliningD、 Nonpersistent HTTP正确答案:B2Which version of hypertext transfer protocol are used in default mode now?A、 WEB 2.0B、HTTP1.0C、 HTTP 1.1D、 HTTP 0.9正确答案:C3The Http server works on which port:A、 TCP port above 65535B、UDP 80C、 TCP port above 1024D、TCP 80正确答案:D4HTTP messages (application-layer protocol messages)exchanged between browser (HTTP client) and Web server (HTTP server) with:A、 IGMPB、ICMPC、UDPD、TCP正确答案:D5The Http client works on which port:A、 TCP port above 65535B、UDP 80C、 TCP port above 1024D、TCP 80正确答案:C6To indicates end of message in Http, we can use:A、 /bodyB、/htmlC、 \ln\lf.\ln\lfD、 \ln\lf正确答案:D7Which connections can be used by HTTP/1.1 in default mode?A、 p2p connectionsB、udp connectionsC、 non-persistent connectionsD、 persistent connections正确答案:D8WWW servers organize information into:A、 WEB pagesB、Relational DatabaseC、 Distributed hypertext hypermediaD、 Yellow pages正确答案:A9Http server maintains no information about past client requests, Protocols that maintain“state” are:A、 SimpleB、ComplexC、 SecurityD、 Easy正确答案:B10If you are downloading a web page with multiple objects in it, which of the following is the most efficient way?A、 None persistent HTTPB、Persistent HTTP with pipelineC、 Persistent HTTP without pipelineD、 None of the above正确答案:B1What is not communication services provided to apps in network :A、 connectionlessB、connection-orientedC、 object-orientedD、 Transmission Control Protocol正确答案:C2How is data transferred through net,what is wrong?A、 statistical multiplexingB、disk to disk copyC、 packet-switchingD、 circuit switching正确答案:B3In which network, propagation delay maybe greater then queuing delay:A、 Fiber NetworkB、Wire LANC、 Satellite NetworkD、 WIFI Network正确答案:C4Which is not a network communication links?A、 FiberB、CopperC、 SubwayD、 Radio正确答案:C5Packet-switched network's goal is moving packets through routers fromsource to destination via:A、 forwardB、storeC、 dropD、 replay正确答案:A6Which Physical Media has low error rate?A、 Twisted PairB、Coaxial cableC、 Fiber optic cableD、 radio正确答案:C7Today ’s Internet not useA、 TCP/IPB、statistical multiplexingC、 Circuit switchingD、 Packet-switchi正确答案:C8which is not Cerf and Kahn's internetworking principles ?A、 minimalism, autonomyB、best effort service modelC、 stateless routersD、 centralized control正确答案:D9包互换中丢掉的包去哪了?A、缓存在路由器B、在传输媒体上飞C、在上一个路由器D、完全消逝了正确答案:D10包互换中丢掉的包会堵塞网络吗?A、会B、不会C、不确立D、真不知道正确答案:B1The Status code for request succeeded and requested object later i n this message is:A、 301 Moved PermanentlyB、200 OKC、 400 Bad RequestD、 404 Not Found正确答案:B2Which is wrong in the following statement about Client-server archicture:A、 clients communicate with serverB、clients may have dynamic IP addressesC、 clients is always-on hostD、 clients do not communicate directly with each other正确答案:C3HTTP response status codes of requested document not found on server, is :A、404B、500C、400D、304正确答案:A4Which mothed type is not provided in HTTP/1.0:A、 HEADB、PUTC、 POSTD、GET正确答案:B5In the Web Client/Server work environment, who play a control role?A、 HTML LanguageB、Web ClientC、 HTTP ProtocolD、 Web Server正确答案:C6If every page of the site need User-server authorization,we can use:A、 Nonpersistent HTTPB、Persistent HTTPC、 Conditional GET: client-side cachingD、 Cookies: keeping“state”正确答案:D7Web page consists of () which includes several referenced objects:A、 base HTML-fileB、home HTML-fileC、 host HTML-fileD、 referenced HTML-file正确答案:A8Web server maintains no information about past client requests,so HTTP is:A、 unsatisfiedB、satisfiedC、 statelessD、 stateful正确答案:C9Which is not based on web Caching?A、 Offline BrowseB、NATC、 CDNSD、 PROXY正确答案:B10In Client-server paradigm, process sends/receives messages to/from its :A、 FirewallB、DoorC、 SocketD、 Slot正确答案:C1HTTP 协议的服务器端口号一般为:A、80B、110C、 >1024D、 >4096正确答案:A2HTTP 协议的客户端端口号一般为:A、80B、110C、 >1024D、 >4096正确答案:C3Http1.1中连续/流水线模式时,能够同时传多个对象吗?A、不可以够B、能够C、不知道D、不确立正确答案:4Http1.1中连续/流水线模式时,能够同时在一个socket 中传输多个对象吗?A、不可以够B、能够C、不知道D、不确立正确答案:A5 安全性更好的 HTTP 协议标准是什么?A、 HTTP2.0B、HTTPSC、 HTML5D、 FLASH正确答案:B6 互联网上哪个应用不属于WEB2.0 ?A、SMSB、SNSC、 BLOGD、 FACEBOOK正确答案:A7Proxy 服务器在实现上主假如利用了什么方法?A、条件更新B、条件恳求C、动向 DNSD、动向 IP正确答案:B8 一个 HTTP 报文的大小可能是多大?A、小于 1480 字节B、小于 64K 字节C、大于 64K 字节D、理论上无穷制正确答案:D9IE8 阅读器下同意并发的连结数可能是多少?A、 1B、2C、 4D、 8正确答案:C10下述哪个方法不可以向服务器递交信息?A、 headB、getC、 putD、 post正确答案:A,select the DNS search type?A、 Type=CNameB、Type=NSC、 Type=MXD、 Type=A正确答案:D2Which type of DNS query can return name value of mail server associated with domain name?A、 type=NSB、type=CNAMEC、 type=MXD、 type=A正确答案:C3If you want to build a Content Distribution Networks,You can the DNS search type for alias:A、 Type=CNameB、Type=MXC、 Type=NSD、 Type=A正确答案:A4If you want to find the auhoritative name server of domain , select the DNS search type?A、 Type=CNameB、Type=NSC、 Type=MXD、 Type=A正确答案:B5In client host, we need to config IP with:A、 Root domain serversB、Top-level domain serversC、 Authoritative DNS serversD、 Local Name Server正确答案:D6Which domain name is wrong?A、B、C、 eng.sun.D、 //sun/eng正确答案:D7In DNS, “I don ’ t know this name, but ask this server” means:A、 authoritative name serverB、recursive queryC、 Local name serverD、 iterated query正确答案:D8There is identification in DNS messages,which is a 16 bit number for query and reply to query uses:A、 same numberB、number+1C、 number+8D、 number+16正确答案:A9Which is not the reason for decentralize DNS?A、 single point of failureB、traffic volumeC、 distant centralized databaseD、 copy right正确答案:D10Which is wrong for DNS:A、 query and reply messages, both with same message formatB、distributed db storing resource records (RR)C、 When a host makes a DNS query, query is sent to its Root DNS serverD、 distributed database implemented in hierarchy of many name servers正确答案:C1When ftp server receives file command, which opens the 2nd TCP connection for file tranfer:A、 server or clientB、server and clientC、 clientD、 server正确答案:A2Ftp Client obtains authorization over control connection on port:A、20B、21C、25D、110正确答案:B3Which APP protocol use separate control and data connections on toport:A、 Email 110 and 25B、Ftp 21 and 20C、 Http 80 and 808D、 Telnet 25 and 1025正确答案:B4FTP client browses remote directory by sending commands over:A、 IP connectionB、UDP connectionC、 data connectionD、 control connection正确答案:D5Which application is usually based on UDP and TCP protocol?A、 Network GamesB、FTP DownloadC、 Sending E-mailD、 Web Browsing正确答案:A6 在下边列出的 TCP/IP 命令中,哪一个能够被用来远程登录主机?A、 telnetB、ftpC、 loginD、 tftp正确答案:A7In which, FTP data connect can initiation from port 20 on server to hight port on client?A、 Passive FTPB、Active FTPC、 SFTPD、 TFTP正确答案:B8In which, FTP data connect can initiation from high port on client to high port on server?A、 Active FTPB、Passive FTPC、 SFTPD、 TFTP正确答案:B9Which is not a sample commands that sent as ASCII text over controlchannel in FTP?A、 USERB、PASSC、 LISTD、 HEAD正确答案:D10Which is not a Sample return codes in FTP?A、304B、331C、125D、425正确答案:A,select the DNS search type?A、 Type=MAILB、Type=NSC、 Type=MXD、 Type=A正确答案:C2Which is wrong for SMTP:A、 SMTP use two separated connections for outgoing mailsB、SMTP server uses CRLF.CRLF to determine end of messageC、 SMTP requires message (header & body) to be in 7-bit ASCIID、 SMTP uses persistent connections正确答案:A3Which is not a email application protocol?A、 SMNPB、SMTPC、 IMAPD、 POP3正确答案:A4In MIME, Msword is one subtypes of Content-Type:A、 TextB、ApplicationC、 ImageD、 Doc正确答案:B5In email protocol, which will not be used?A、 MINEB、QP(Quote-Printable)C、 Base64D、 CDNS正确答案:D6For send email via SMTP, it requires message (header & body) to be in:A、 octet-streamB、8-bit ASCIIC、 7-bit ASCIID、 Ziped正确答案:C7Which one is a right email address?A、 wang$163.B、wang102&163.C、 wang#D、 正确答案:D8Which element are not in Mail Servers:A、 Mailbox contains incoming messages for userB、Message queue of outgoing (to be sent) mail messagesC、 SMTP protocol between mail servers to send email messagesD、 NAT device for outgoing mails正确答案:D9Which is not a major components?A、 user agentsB、mail serversC、 simple mail transferD、 gmail正确答案:D10SMTP uses TCP to reliably transfer email message from client to server with port:A、21B、25C、75D、110正确答案:B1In P2P file sharing, which is easy to shut down by law:A、 Query floodingB、decentralized directoryC、 centralized directoryD、 pure Clinet/Server正确答案:C2In P2P file sharing, in which the group leaders can get overloaded:A、 centralized directoryB、Query floodingC、 decentralized directoryD、 Pure Clinet/Server正确答案:C3C/S, P2P and _____ are three types of application architectures.A、B/SB、Hybrid of C/S and P2PC、 User to userD、 Command and Conquer正确答案:B4Which is not a network end system architecture model:A、 Client/ServerB、Peer-PeerC、 End-EndD、 Hybrid Client/Server and Peer-Peer正确答案:C5The problems with centralized directory of P2P not include:A、 Copyright infringementB、Performance bottleneckC、 Bootstrap node neededD、 Single point of failure正确答案:C6The problems with decentralized directory of P2P maybe:A、 Copyright infringementB、Performance bottleneckC、 Bootstrap node neededD、 Single point of failure正确答案:C7In centralized directory of P2P, the disadvantages of approach maybe:A、 complex protocolB、bootstrap node neededC、 single point of failureD、 group leaders can get overloaded正确答案:C8Query flooding is fully distributed,it means:A、 no distributed serverB、no central serverC、 no IP neededD、 no water正确答案:B9Which one is wrong in P2P decentralized directory?A、 Each peer is either a group leader or assigned to a group leaderB、Group leader tracks the content in all its childrenC、 Peer queries other peersD、 Group leader may query other group leaders正确答案:C10which one is wrong in P2P with centralized directory?A、 peer is decentralized,B、file transfer is decentralizedC、 locating content is highly centralizedD、 locating content is highly decentralized正确答案:D1发送方显示已经发送成功,但是有的时候接受方却没有接遇到,那是由于显示的只是为客户端发送到自己的 SMTP 服务器成功了。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
实验三DNS协议分析
思考题:
Q1.运行nslookup,查询并记载你的本地DNS 服务器名称及其IP 地址, 的权威DNS 服务器名称及其IP 地址;
A:运行nslookup –type=NS
得到:Server: (下面机房中实验得到server 名为unknown)Address: 202.96.104.15
Non-authoritative answer:
nameserver =
nameserver =
internet address = 210.33.16.16
本地DNS 服务器:
Server:
Address: 202.96.104.15
的权威DNS 服务器
Name: 和
Address: 210.33.16.16 和210.33.16.2(通过nslookup 查询)
Q2.运行nslookup,查询并记载 的IP 地址、其权威DNS 服务器名称和IP 地址;
A:运行nslookup
得到:Non-authoritative answer:
Name:
Address: 64.202.189.170
Aliases:
因此 的IP 地址是64.202.189.170
再运行nslookup –type=NS
得到:Server:
Address: 202.96.104.15
《计算机网络》自顶向下和Internet 特色实验手册
10
Non-authoritative answer:
nameserver =
nameserver =
权威DNS 服务器: 68.178.211.111
64.202.165.117
Q3. 请先在google 中搜索剑桥大学的域名,再运行nslookup,查询并记载剑桥大学的域名、IP 地址和他的权威DNS 服务器名称和IP 地址;
A:剑桥大学域名为
运行nslookup ,得到剑桥大学的IP 地址是131.111.8.46
再运行nslookup –type=NS
得到:Server:
Address: 202.96.104.15
Non-authoritative answer:
nameserver =
nameserver =
nameserver =
nameserver =
nameserver =
nameserver =
nameserver =
其中权威服务器 internet address = 128.232.0.19
Q4.运行ipconfig/all,查询并记载你的本地DNS 服务器,看和nslookup 显示的有无差别,如有差别差在哪里?为什么?
A:本地DNS 服务器为202.96.104.15。
没有差别。
Q5.运行ipconfig/all,查询并记载你的网卡名称、IP 地址、掩码、网关、MAC 地址和主机名称;
A:类似:Description . . . . . . . . . . . : Intel(R) PRO/100 VE Network Connection
Physical Address. . . . . . . . . : 00-09-6B-3F-8B-2B
IP Address. . . . . . . . . . . . : 192.168.0.202
Subnet Mask . . . . . . . . . . . : 255.255.255.0
Default Gateway . . . . . . . . . : 192.168.0.1
Host Name . . . . . . . . . . . . : netlab012
Q6.运行ipconfig/all,查询并记载你当前是否使用了DHCP 功能?
《计算机网络》自顶向下和Internet 特色实验手册
11
A:如果有,类似:
DHCP Enabled. . . . . . . . . . . :YES
DHCP Server . . . . . . . . . . . : 192.168.0.1
Q7.查找DNS 查询和响应消息,发送的是UDP 还是TCP?
A:是UDP。
Q8.DNS 查询消息的目的地端口号是多少?DNS 响应消息的源端口号是多少?客户端的端口是多少?
A:查询消息的目的端口是53。
响应消息的源端口也是53。
客户端的端口是1503(不
一定的,一般为一个1024 以上的端口)。
Q9.DNS 查询消息向哪个IP 地址发送请求?利用ipconfig 来确定你的本地DNS 服务
器的IP 地址,这两个IP 地址相同吗?
A:目的IP 是202.96.104.17,和ipconfig/all 查到的本地DNS 服务器中的一个是一样的。
Q10.检查DNS 查询消息,这个DNS 查询是什么类型?这个查询消息期望什么回答?A:查询类型是A(host address)。
这个查询期望得到 的ip 地址。
Q11.检查DNS 响应消息,这个消息提供了多少回答?每一个回答包括了什么?
A:提供了两个回答。
第一个回答是一个IP 地址:209.173.57.180
第二个回答给出了另一个IP 地址:209.173.53.180
Q12.观察从你的主机发送的TCP SYN 包,SYN 包的终端IP 地址和DNS 响应消息所提供的IP 地址相符合吗?
A:发出的是向其中的一个IP 地址209.173.57.180 的包,相符合。
Q13.这个网页包含图片,在下载每个图片之前有没有发出新的DNS 查询请求?为什
么?
A:没有。
因为这些图片都是在同一个服务器上的,而该服务器的DNS 已被缓存到本地,不需要再解析。
Q14. 这是个什么网站,上面提供了什么资料?
A:The Internet Engineering Task Force,上面有很多internet 的技术标准。
参考数据:dns-1
《计算机网络》自顶向下和Internet 特色实验手册
12
Q15.DNS 查询请求消息的目的端口号是多少?DNS 响应消息的源端口号是多少?客户端的端口是多少?
A:查询消息的目的端口是53。
响应消息的源端口也是53。
客户端的端口是3922(不
一定的,一般为一个1024 以上的端口)。
Q16.DNS 查询请求向哪个IP 地址发送消息?这个IP 地址是你的默认的本地的DNS
服务器吗?
A:目的IP 是202.96.104.15,和ipconfig/all 查到的本地DNS 服务器中的一个是一样的。
Q17.检查DNS 查询消息,这个DNS 查询请求是什么类型的?这个查询消息期望什么回答?
A:查询类型是A(host address)。
这个查询期望得到 的ip 地址。
Q18.检查DNS 响应消息,它提供了多少个回答?每一个回答又包括了什么内容?
A:提供了三个回答。
第一个回答是 的地址:18.7.22.83
第二个回答给出了其三个权威服务器(略)。
第三个回答为附加消息
参考数据:dns-2
Q19.DNS 查询请求向哪个IP 地址发送消息?这个IP 地址是你的默认的本地的DNS
服务器吗?
A:目的IP 是202.96.104.15,和ipconfig/all 查到的本地DNS 服务器中的一个是一样的。
Q20.检查DNS 查询消息;这个DNS 查询请求是什么类型的?这个查询消息期望什么回答?
A:查询类型是NS(Athoritative name server)。
这个查询期望得到 的权威DNS 服务器地址。
Q21.检查DNS 响应消息,响应消息提供了几个MIT 名字服务器?这个响应消息也提
供了该MIT 名字服务器的IP 地址吗?
A:回答了三个DNS 服务器,没有提供这些DNS 服务器的IP 地址。
参考数据:dns-3
Q22.一共有多少个DNS 查询?最后一个DNS 查询请求向哪个IP 地址发送消息?这《计算机网络》自顶向下和Internet 特色实验手册
13
个IP 地址是你的默认的本地的DNS 服务器吗?如果不是,这个IP 地址是和哪个服务
器相应的?
A:3 个。
最后一个DNS 查询请求是向18.72.0.3 发送的,和ipconfig/all 查到的本地DNS 服务器中的是不一样的。
这个IP 地址是 的。
Q23.检查最后一个DNS 查询消息。
这个DNS 查询请求是什么类型的?这个查询消息期望什么回答?
A:查询类型是A(host address)。
这个查询期望得到www.aiit.or.kr 的ip 地址。
Q24.检查最后一个DNS 响应消息。
它提供了多少个回答?每一个回答又包括了什么内容?
A:提供了三部分回答:
一是www.aiit.or.kr 的ip 地址222.106.36.102;
二是www.aiit.or.kr 的权威DNS 服务器(二个);
三是附加记录,是www.aiit.or.kr 二个权威DNS 服务器的ip 地址;。