收藏 分销(赏)

计网实验DNS--Data-Encapsulation-and-Frame-Examination电子版本.doc

上传人:丰**** 文档编号:4016416 上传时间:2024-07-25 格式:DOC 页数:10 大小:529.50KB
下载 相关 举报
计网实验DNS--Data-Encapsulation-and-Frame-Examination电子版本.doc_第1页
第1页 / 共10页
计网实验DNS--Data-Encapsulation-and-Frame-Examination电子版本.doc_第2页
第2页 / 共10页
计网实验DNS--Data-Encapsulation-and-Frame-Examination电子版本.doc_第3页
第3页 / 共10页
计网实验DNS--Data-Encapsulation-and-Frame-Examination电子版本.doc_第4页
第4页 / 共10页
计网实验DNS--Data-Encapsulation-and-Frame-Examination电子版本.doc_第5页
第5页 / 共10页
点击查看更多>>
资源描述

1、计网实验DNS, Data Encapsulation and Frame Examination精品资料Computer netowrks LabsDNS, Data Encapsulation and Frame ExaminationDNS, Data Encapsulation and Frame ExaminationLearning ObjectivesAt completion of this lab, you will be able to:1. Use Wireshark to capture and analyze DNS message2. Understand how

2、DNS works3. use nslookup and ipconfig commands4. Explain the header fields in an Ethernet II frame.5. understand data encapsulation6. Report and Feedback on this labAnswer all questions with supporting screenshots. Please fill in the following feedback form and append it to the report. Your feedback

3、 is valuable to us so that we can improve this lab, and make the course welcome.For each task, please rate the following in the scale of 1 through 5: The degree of difficulty: 1 = too easy; 5 = too difficult The learning experience: 1 = learned nothing; 5 = learned a lot Your interest: 1 = no intere

4、st; 5= high interest Time used for the task: in minutes Task Difficulty (15)Learning (15)Interest (15)Time ( min)Task 0Task 1Task 2Task 3Task 4Your suggestion/comment: BackgroundWhen upper layer protocols communicate with each other, data at the sending host flows down the TCP/IP protocol layers and

5、 is encapsulated into a protocol data unit at lower layer, and finally encapsulated in a Layer 2 frame. For example, DNS message is often transported by UDP protocol on layer 4. So DNS message at the sending host is encapsulated in a UDP segment; the UDP segment is then encapsulated in an IP packet,

6、 and the IP packet is encapsulated finally in a layer 2 frame. The frame composition is dependent on the media access type, or the network. For example, if the media access is Ethernet, then the Layer 2 frame encapsulation will be Ethernet II. When learning about data encapsulation and protocol oper

7、ations, it is helpful to analyze the header information found in the protocol data units. The DNS protocol operation, ipconfig command, and Ethernet II frame header will be examined in this lab. Ethernet II frames can support various upper layer protocols.For more background information, please read

8、 the lectures 02, 04-05, 10, 11. TasksTask 0 Protocol Layers and Data EncapsulationAs we have discussed in Lecture 02, Internet is inter-connected networks based on TCP/IP protocols. Read the slides or textbook to learn how data goes through protocol layers and how data is encapsulated in the protoc

9、ol data units. There are conventional names for the protocol data units for different layer protocols.Question 1. What are names for the protocol data units (PDUs) for layer 4, layer 3, and layer 2 protocols in TCP/IP reference model by filling the follow form: name for PDU of layer 4 protocols: seg

10、ment name for PDU of layer 3 protocol: packet name for PDU of layer 2 protocol: frame Task 1 DNS and nslookupAs we discussed, IP address is used to identify a host uniquely on the Internet. But IP address is not user-friendly and that is why domain name was introduced. The Domain Name System (DNS) t

11、ranslates host names to IP addresses, providing a critical role in the Internet infrastructure. In this task, we practice the nslookup tool, which is available both in Linux/Unix and MS Windows. To run nslookup in MS Windows, you need to open the command line window by starting the command cmd.exe.

12、With nslookup, you can query any specified DNS server (by default, your local configured DNS server) for a DNS record. To accomplish this task, nslookup sends a DNS query to the specified DNS server, receives a DNS reply from that same DNS server, and displays the result.Type the command nslookup ww

13、w.MIT.edu, and capture the output, as I did and showed below:Question 2: What is the DNS server IP address that is used to query and find IP address for www.MIT.edu? And IP address for www.MIT.edu ?Type the command “nslookup -type=NS ”, and capture the output, as I did and showed below:Question 3: W

14、hat are domain name servers for and their IP addresses?Type the command “nslookup ”, and capture the output, as I did and showed below:Question 4: Which DNS server is used to query and for name resolution?You can also use nslookup to find the mapping from IP addresses to the host names. Type the com

15、mands “nslookup 192.168.156.101” and “nslookup ”, and capture the output, as I did and showed below:Question 5: Can a host have multiple host names? What is the IP address for moodle.tec.hkr.se? How many names do you find for this IP address? Task 2 DNS and ipconfigipconfig (for Windows) and ifconfi

16、g (for Linux/Unix, interface configuration) are among the most useful tools for debugging network issues. ipconfig can be used to show your current TCP/IP information, including your address, DNS server addresses, adapter (network interface card) type and so on. For example, if you want to find all

17、this information about your host, simply enter the command “ipconfig /all” in the command line. Read more on “using ipconfig” at Question 6: What is the IP address for your computer, and what is the local DNS server IP address?答:IP:192.168.1.143DNS:210.32.32.10210.32.32.11ipconfig is also very usefu

18、l for managing the DNS information stored in your host. To improve the networking performance, a host can cache DNS records it recently obtained. To view these cached records, you can use the command “ipconfig /displaydns”. Each entry shows the remaining Time to Live (TTL) in seconds. To clear the c

19、ache, enter the command “ipconfig /flushdns”. Flushing the DNS cache clears all entries and reloads the entries from the hosts file.Task 3 DNS Protocol Analysis with WireSharkNow it is time to capture DNS protocol data and do the analysis with WireShark. Follow the steps to capture the DNS packets:

20、close all other Internet applications to reduce the captured data start a web browser use ipconfig to empty the DNS cache in your computer start WireShark program, and enter the display filter “ip.addr=192.168.0.100 and dns”, where the IP address 192.168.0.100 should be the IP address for your compu

21、ter. You find it in question 6. Start packet capture in WireShark Enter the url address http:/www.ietf.org to your web browser to view the page. Stop the packet capture.I got the following screenshot for this operation:Answer the following questions:Question 7: Locate the DNS query and response for

22、resolving www.ietf.org. Are they sent over UDP or TCP?UDPQuestion 8: What is the destination port for the DNS query message? What is the source portof DNS response message?Destination:210.32.32.10Source:192.168.1.143Question 9: To what IP address is the DNS query message sent? Use ipconfig to determ

23、ine the IP address of your local DNS server. Are these two IP addresses the same?IP:210.32.32.10sameQuestion 10: Examine the DNS query message. What “Type” of DNS query is it? Does thequery message contain any “answers”?(1)The“Type”ofDNSqueryisA。(2)NoQuestion 11: Examine the DNS response message. Ho

24、w many “answers” are provided? Whatdo each of these answers contain?(1) The“answers”is0;(2)无Task 4 Ethernet Frame ExaminationThe format for an Ethernet frame is shown below:For info on MAC addresses, read slide 26 (Lecture 10). For finding NIC manufacturer, use the online server at .In WireShark wit

25、h the captured DNS packets done in the last task, expand the frame information, as you could see my example:It shows that data contained in the Ethernet frame is an IP packet; the data contained in the IP packet is a UDP segment, and data in the UDP segment is DNS message! The total frame length is

26、72 bytes (excluding CRC parity bits). For the Ethernet frame containing DNS query message for resolving www.ietf.org, answer the following questions:Question 12: What is the destination MAC address? What is its NIC manufacturer, and what is the NIC serial number?MACaddress:9c:21:6a:6a:b6:acNICmanufa

27、cturer:9c:21:6aNICserialnumber:6a:b6:acQuestion 13: What is the source MAC address? What is its NIC manufacturer, and what is the NIC serial number?MACaddress:60:36:dd:9a:be:88NICmanufacturer:60:36:ddNICserialnumber:9a:be:88Question 14: what is the value in the type field? What does this value mean?

28、MAC(MediaAccessControl,介质访问控制)地址,也叫硬件地址,长度是48比特(6字节),由16进制的数字组成,分为前24位和后24位:前24位(也就是前3个字节)叫做组织唯一标志符(OrganizationallyUniqueIdentifier,即OUI),是由IEEE的注册管理机构给不同厂家分配的代码,区分了不同的厂家。后24(后三个字节)位是由厂家自己分配的,称为扩展标识符。同一个厂家生产的网卡中MAC地址后24位是不同的。Now, change the display filter to “arp” in WireShark, so that only ARP pac

29、kets are displayed, for example, I got: Locate a broadcast ARP message, and examine the Ethernet frame header, answer the questions:Question 15: What is the destination MAC address? Is this address special? What does it mean?Target MAC address: 00:00:00:00:00:00Theaddressisspecial,allnumberis0.All0r

30、eferstothelocalnetwork,isbroadcastpackets.Question 16: What is the source MAC address? What is its NIC manufacturer, and what is the NIC serial number? Is it a uni-cast address? Why?All0referstothelocalnetwork,isbroadcastpackets.(1)MAC:64:76:ba:a6:b0:e8(2)NICmanufacturer:64:76:baNICserialnumber:a6:b

31、0:e8(3)IEEE802.3规定:以太网的第48bit用于表示这个地址是组播地址还是单播地址。如果这一位是0,表示此MAC地址是单播地址,如果这位是1,表示此MAC地址是多播地址。Question 17: what is the value in the type field? What does this value mean?结构ether_header定义了以太网帧首部;结构arphdr定义了其后的5个字段,其信息用于在任何类型的介质上传送ARP请求和回答;ether_arp结构除了包含arphdr结构外,还包含源主机和目的主机的地址。 仅供学习与交流,如有侵权请联系网站删除 谢谢10

展开阅读全文
相似文档                                   自信AI助手自信AI助手
猜你喜欢                                   自信AI导航自信AI导航
搜索标签

当前位置:首页 > 包罗万象 > 大杂烩

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服