代写CSc 361: Computer Communications and Networks Assignment 3: Analysis of IP Protocol代做Python语言

CSc 361: Computer Communications and Networks

Assignment 3: Analysis of IP Protocol

Due: 11:59 pm April. 11, 2025

1 Goal

The purpose of this assignment is to learn about the IP protocol. You are required to write a python program to analyze a trace of IP datagrams.

2 Introduction

In this assignment, we will investigate the IP protocol, focusing on the IP datagram. We’ll do so by analyzing a trace of IP datagrams sent and received by an execution of the traceroute program. We will investigate the various fields in the IP datagram, and study IP fragmentation in detail.

A background of the traceroute program is summarized as follows. The traceroute program operates by first sending one or more datagrams with the time-to-live (TTL) field in the IP header set to 1; it then sends a series of one or more datagrams towards the same destination with a TTL value of 2; it then sends a series of datagrams towards the same destination with a TTL value of 3; and so on. Recall that a router must decrement the TTL in each received datagram by 1 (actually, RFC 791 says that the router must decrement the TTL by at least one). If the TTL reaches 0, the router returns an ICMP message (type 11 – TTL-exceeded) to the sending host. As a result of this behavior, a datagram with a TTL of 1 (sent by the host executing traceroute) will cause the router one hop away from the sender to send an ICMP TTL-exceeded message back to the sender; the datagram sent with a TTL of 2 will cause the router two hops away to send an ICMP message back to the sender; the datagram sent with a TTL of 3 will cause the router three hops away to send an ICMP message back to the sender; and so on. In this manner, the host executing traceroute can learn the identities of the routers between itself and a chosen destination by looking at the source IP addresses in the datagrams containing the ICMP TTL-exceeded messages. You will be provided with a trace file created by traceroute.

Of course, you can create a trace file by yourself. Note that when you create the trace file, you need to use different datagram sizes (e.g., 2500 bytes) so that the captured trace file includes information on fragmentation.

3 Requirements

There are two requirements for this assignment:

3.1 Requirement 1 (R1)

You are required to write a python program to analyze the trace of IP datagrams created by traceroute. To make terminologies consistent, in this assignment we call the source node as the computer that executes traceroute. The ultimate destination node refers to the host that is the ultimate destination defined when running traceroute. For example, the ultimate destination node is “mit.edu” when you run

%traceroute mit.edu 2000

In addition, an intermediate destination node refers to the router that is not the ultimate destination node but sends back a ICMP message to the source node.

As another example, you can set “don’t fragment”’ bit and set the number of probes per “ttl” to 5 queries using the following command:

%traceroute -F -q 5 mit.edu 200

Your program needs to output the following information:

❼ List the IP address of the source node, the IP address of ultimate destination node, the IP address(es) of the intermediate destination node(s). If multiple intermediate destination nodes exist, they should be ordered by their hop count to the source node in the increasing order.

❼ Check the IP header of all datagrams in the trace file, and list the set of values in the protocol field of the IP headers. Note that only different values should be listed in a set.

❼ How many fragments were created from the original datagram? Note that 0 means no frag- mentation. Print out the offset (in terms of bytes) of the last fragment of the fragmented IP datagram. Note that if the datagram is not fragmented, the offset is 0.

❼ Calculate the average and standard deviation of round trip time (RTT) between the source node and the intermediate destination node (s) and the average round trip time between the source node and the ultimate destination node. The average and standard deviation are calculated over all fragments sent/received between the source nodes and the (intermediate/ ultimate) destination node.

The output format is as follows: (Note that the values do not correspond to any trace file).

The IP address of the source node: 192.168.1.12

The IP address of ultimate destination node: 12.216.216.2

The IP addresses of the intermediate destination nodes:

router 1: 24.218.01.102,

router 2: 24.221.10.103,

router 3: 12.216.118.1.

The values in the protocol field of IP headers:

1: ICMP 17: UDP

The number of fragments created from the original datagram is: 3

The offset of the last fragment is: 3680

The avg RTT between 192.168.1.12 and 24.218.01.102 is: 50 ms, the s.d. is: 5 ms

The avg RTT between 192.168.1.12 and 24.221.10.103 is: 100 ms, the s.d. is: 6 ms

The avg RTT between 192.168.1.12 and 12.216.118.1 is: 150 ms, the s.d. is: 5 ms

The avg RTT between 192.168.1.12 and 12.216.216.2 is: 200 ms, the s.d. is: 15 ms

3.2 Requirement 2 (R2)

Note: You can finish this part either with a python program or by manually col-lecting/analyzing data. In other words, coding is optional for the tasks listed in this section.

You need to test your code on the two groups of trace files provided. Each group includes five traceroute trace files, all with the same destination address. For each group,

❼ determine the number of probes per “ttl” used in each trace file,

❼ determine whether or not the sequence of intermediate routers is the same in different trace files,

❼ if the sequence of intermediate routers is different in the five trace files, list the difference and explain why,

❼ if the sequence of intermediate routers is the same in the five trace files, draw a table as shown below (warning: the values in the table do not correspond to any trace files) to compare the RTTs of different traceroute attempts. From the result, which hop is likely to incur the maximum delay? Explain your conclusion.

4 Miscellaneous

Important! Please read!

❼ Same as in Assignment 2, you are not allowed in this assignment to use python packages that can automatically extract each packet from the pcap files. That means, you should re-use your code in Assignment 2 to extract packets.

❼ Some intermediate router may only send back one “ICMP TTL exceeded” message for multiple fragments of the same datagram. In this case, please use this ICMP message to calculate RTT for all fragments. For example, Assume that the source sends Frag 1, Frag2, Frag 3 (of the same datagram, ID: 3000). The timestamps for Frag1, Frag2, Frag3 are t1, t2, t3, respectively. Later, the source receives one “ICMP TTL exceeded” message (ID: 3000). The timestamp is T. Then the RTTs are calculated as: T − t1, T − t2, T − t3.

❼ More explanation about the output format

The number of fragments created from the original datagram is:

The offset of the last fragment is:

If there are multiple fragmented datagrams, you need to output the above information for each datagram. For example, assume that the source sends two datagrams: D1, D2, where D1 and D2 are the identification of the two datagrams. Assume that D1 has three fragments and D2 has two fragments. Then output should be:

The number of fragments created from the original datagram D1 is: 3

The offset of the last fragment is: xxx.

The number of fragments created from the original datagram D2 is: 2

The offset of the last fragment is: yyy.

where xxx and yyy denote the actual number calculated by your program.

❼ If the tracefile is captured in Linux, the source port number included in the original UDP can be used to match against the ICMP error message. This is due to the special traceroute implementation in linux, which uses UDP and ICMP. If the tracefile is captured in Windows, we should use the sequence number in the returned ICMP error message to match the sequence number in the ICMP echo (ping) message from the source node. Note that this ICMP error message (type 11) includes the content of the ICMP echo message (type 8) from the source. This is due to the special traceroute implementation in Windows, which uses ICMP only (mainly message type 8 and message type 11). It is also possible that traceroute may be implemented in another different way. For instance, we have found that some traceroute implementation allows users to select protocol among ICMP, TCP, UDP and GRE. To avoid the unnecessary complexity of your program, you only need to handle the two scenarios in finding a match between the original datagram and the returned ICMP error message: either (1) use the source port number in the original UDP, or (2) use the sequence number in the original ICMP echo message. You code should automatically find out the right case for matching datagrams in the trace file. We will not test your code with a trace file not falling in the above cases.

5 Deliverables and Marking Scheme

For your final submission of your assignment, you are required to submit your source code to brightspace. You should include a readme file to tell TA how to compile and run your code. In addition, you are required to submit a pdf file for your solution of R2. Use %tar -czvf command in linux.csc.uvic.ca to generate a .tar file and submit the .tar file. Make sure that you use %tar -xzvf command to double-check if you have included all the files before submitting the tar file. Note that your code will be tested over linux.csc.uvic.ca.

The marking scheme is as follows:

Components                                                                                              Weight

The IP address of the source node (R1)                                                            5

The IP address of ultimate destination node (R1)                                               5

The IP addresses of the intermediate destination nodes (R1)                              10

The correct order of the intermediate destination nodes (R1)                               5

The values in the protocol field of IP headers (R1)                                              5

The number of fragments created from the original datagram (R1)                       15

The offset of the last fragment (R1)                                                                  10

The avg RTTs (R1)                                                                                          10

The standard deviations (R1)                                                                            5

The number of probes per ttl (R2)                                                                    10

Right answer to the second question (R2)                                                          5

Right answer to the third/or fourth question (R2)                                               10

Readme.txt                                                                                                     5

Total Weight                                                                                                 100





热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图