Packet Sniper Solution

$35.00 $29.00

Problem Statement Packet sni er applications is the Swiss Knife in a network engineers toolkit. This helps an engineer to analyze the packets, isolate the network issues, detect the intrusions, monitor the resource utilization, test and troubleshoot the pro-tocol implementations, gather network statistics and many more. As a Computer Networking student, all are now familiar…

5/5 – (2 votes)

You’ll get a: zip file solution

 

Description

5/5 – (2 votes)

Problem Statement

Packet sni er applications is the Swiss Knife in a network engineers toolkit. This helps an engineer to analyze the packets, isolate the network issues, detect the intrusions, monitor the resource utilization, test and troubleshoot the pro-tocol implementations, gather network statistics and many more.

As a Computer Networking student, all are now familiar with the network protocols. The only way to deepen the understanding of network protocols is by seeing them in action. This project will you give you a chance to reinforce the learning by putting into practice your knowledge on network protocol stack and packet headers. The expected outcome of the project is to give you a rst class hands-on experience on real networking elements. Henceforth we de ne the Problem to be stated as follows,

To design and implement a full edged packet sni ng application in Python1, which enables a user to capture the packets and to gain insights about the un-derlying network by providing the user with the results of a detailed analysis

Protocols Explored

The set of protocols that you will explore during the course of the project are,

Application Layer: HTTP

Transport Layer: TCP, UDP

  • This is our best choice; however, other options can be negotiated

1

The Network Layer: ICMP

The Link Layer: ARP

The availability of all these information about packets is a reasonable as-sumption to make as the sni er (your application), sni s out packets at the lowest possible level in a computer, the raw socket. Once you have the packets available at your disposal(both ingress and egress), the low level socket library will enable you to obtain substantial amount of information by unwrapping each packet.

After having correctly identi ed and categorized the packets, we have access of the multitudes of information speci c to a host, destination, route it had taken and underlying network from the packet. To mention some of them will be,

  • Source IP (IPV4)

  • Destination IP (IPV4)

  • Total Size of Data

  • Time-to-Live

  • Source Port

  • Destination Port

  • Sequence No (Protocol Dependant)

  • Acknowledge No (Protocol Dependant)

  • window size (Protocol Dependant)

  • MAC address

Expectation

This section is used predominately to synchronize the thought process of assig-nor and the student.Your packet sni er should have the following functionality if it needs to be considered for evaluation.

Your Applications should,

  • Capture packets from ’the wire’

  • Have the ability to listen to multiple interfaces (Ethernet and Wireless, 802.11)

  • Capture the ’live’ packets (It should be real time)

2

  • Display necessary details about a captured packet

  • Have the ability to lter (dynamically) the packets based on protocol (by user request)2

  • Calculate the throughput of the connections 3 and render the results as a graph using any plotting utility. (Verify your results with the graph given in the text book as a part of the analysis.)

  • Collect di erent congestion window sizes from the TCP packets and plot a graph against time. (Verify your results with the sawtooth graph given in the text book as a part of the analysis)

  • Calculate the average Packet/Frame sizes over a capture session4

  • Calculate the diameter of the network that you have probing 5

  • Have a user interface6 to issue commands (Start, Stop, Filter, Display throughput, Display Congestion Window Vs Time Graph)

You may use any operating system of your choice for the completion of the project.

Submission Details

Each team has to make a unique submission towards the nal assessment. A team will collect all the project related les and documents in a single folder and zip/rar the le with a name,

PA3 Packet Sni er LastName1 LastName2 LastName3 LastName4.zip

and send the zip/rar to us (List the names in alphabetical order) by email. Add a readme.txt le which mentions all the necessary information about your project. Send the zip/rar le copying all your teammates with a subject line,

[Submission] Programming Assignment 3 : Packet Sni er

Please click on this if you are in a hurry and I have embedded the address and subject line for you.

After the submission you will have to sign up for a project demonstration session. This session will be brief one spanning 30 minutes and will be scheduled the week following the submission and slots will be lled based on rst-come-rst-serve basis. This will be the link for choosing your slots. There are twelve

  • You can do ltering based on interfaces as well, this will be a feature for additional credit

3There are multiple ways of doing it, Pick yours or Pique your brain. Refer Appendix A

for more details

  • See Appendix B for details

5See Appendix C for details

6Command Line or Window based or Browser based

3

slots provided and sent me email mentioning the Slot number after you pick a slot so as to freeze the slot for any further edits. If you face any issues in booking a slot or for any general queries please email me here (Subject line is already embedded for you).

Evaluation and Weightage

Your packet sni er will be tested against real tra c during the demo session and evaluation will be based on the points mentioned in the Expectation section. There are two separate evaluation sections for your project,

Design and Implementation (60%) In this section all the design, imple-mentation and parsing e orts are accounted.

  • Capturing the Packets from raw sockets(15%)

  • Parsing through the packets and extracting information (15%)

  • Display of necessary information obtained from packet (15%)

  • Filtering of the information based on protocols (5%)

  • Capturing from Multiple interfaces (5%)

  • Using the exibility to derive any attributes of your choice 7 and use of novelty in implementation(5%)

Analysis (40%) Grading on this section will be based on the analysis that you have performed with the available data (Throughput, Congestion Window size, Diameter of the network and the Average File Size measures). The accuracy of the measurements, concurrency of your graphs with the ex-pected behaviour, GUI Design are all covered in this section. The ner split will be as follows,

  • Graphs (20%): 10% (Throughput), 10% (Congestion Window)

  • Average Packet/Frame size (5%)

  • Average Diameter of the network and Maximum Diameter of the network (5%)

  • Accuracy and Concurrency (5%)

  • GUI (5%)

Appendices

  • How to calculate the Throughput

In addition to delay and packet loss, another critical performance measure in computer networks is end-to-end throughput. There are multiple ways of cal-

  • This is just make you think creative, and to derive any network attribute from the infor-mation available or how creative are you presenting the results

4

culating this; however, We will mention two ways of doing it here,

Proactive Mode: In this mode you will try to send a le of known size of the same size multiple times (1000 times or more) to a known server or any application that establish a TCP connection. Repeat the experiment for di erent le sizes (500 or more di erent le sizes). Don’t fall pray for the fallacy of sending di erent les, even of same le sizes during the estimation of throughput for a single le size8. You may repeat same set of experiments with a single le of di erent sizes. You know the time you have taken for transferring the le. Now you can calculate the throughput based on these data available. You may calculate either Instantaneous Throughput or Average Throughput . Refer section 1.4.4 of the textbook for more details.

Reactive Mode: You have maximum segment size MSS available in a packet. In each connection you can estimate the Round Trip Time (RTT) by measuring the time di erence between the (SYN) and (SYN, ACK) 9 for the same TCP connection. Now throughput could be calculated by the formula given below. You get the throughput of a connection faster by this and with lesser e ort.

T hroughput = M SS~RT T

Choose your own method: Pique your brain for a method to measure the throughput of the connection. This is an excellent opportunity for you to explore a bit more and propose any novel approach to nd thoruput and you could get a paper published in this area.

You may choose of the methods mentioned above to nd the throughput of the underlying network.

  • Average Packet/Frame Size Over a Capture Session

Once you have all the information available about a packet, you can derive some additional attributes like average packet and frame size by collecting details over large number packets. You have all the necessary information available to calculate this. You may know the total packet size and frame size from each packet. Collect all of them in some data structure and produce the average packet and frame size in the network as the output.

  • Give a thought on why is this wrong in terms of probability. Whats the random variable if you vary les each time ?

9This is the best estimate of the network conditions at this point of time

5

  • Diameter of the Network

You can really check how far do you navigate in a network in your usual network activities. This is an interesting estimate and a vindication of frugal allocation in 8 bits for TTL. Look at your Time To Live (TTL) values to get a insight about this idea. Find and publish the maximum and the average values of it. The maximum de nes the Total Diameter of the network and the average de nes ’your small world’ that you interact with. Remember that you have to publish not the TTL itself, but the complement of TTL (We hope you understand what we mean by complement)

Sorry for allocating this Project late, If you were completing the project in 1990’s your whole package would have been procured by any networking company by a hefty tag not less than $1500. Add a 20% in ation from then and you could have been a CEO ,

6

Packet Sniper Solution
$35.00 $29.00