ERODD HOME | CPSC Home |
BEST PRACTICE: Close browser(s) and other applications. Start the browser. Start Wireshark capture and let it settle down a while. Stop capture, then restart it. Then do the action you want to trace. This initial lab can be done with NO capture filter and a display filter of "http" for all questions except #1 which can be answered with no display filter.
The Firefox in the CL24 lab seems to be very zealous about caching recent web pages. This is why it is best to stop/start Firefox before initiaing an action you want to capture in Wireshark.
HINT: When you run Wireshark, it is best if you have as few applications running on your machine as possible. Also, it is best to not have other browswer windows running. Other applications and tabs may litter your traces making them hard to read.
HOWEVER: Even if you have a fairly "clean" system, there can be a lot of stray traffic that Wireshark will pick up. Wireshark has two sets of filters: Capture filters which filter what packets are captured and Display filters to filter what is displayed after capturing is done.
A common filter is to filter only things to and from your ethernet (or wifi ) adaptor. This avoids seeing "broadcast" traffic. Use the Windows "ipconfig /all" command or the LINUX "ipconfig" command to find your ethernet address (a series of 6 two digit hex numbers separated by ":" or "-" or ".".) Then a capture filter would be:
ether host 01:02:03:ba:5c:23except use your actual ethernet address.
For the INTRO lab, we can enter a capture filter which will ONLY collect DNS queries and traffic to the host we are going to. The filter will be:
port 53 or host gaia.cs.umass.edu
HOWEVER: note that for question 1 of the INTRO lab, you need to use at most a "ether host" filter or else you won't see all the other traffic with different protocols. Or just collect the data unfiltered.
Bring a calculator (the one on your phone is OK) - There are quantitative questions. Remember a byte has 8 bits!
java udpserv
java udpcli ip-address-of-serverAnd follow onscreen instructions.
Due:
Note: List of decimal->hex->binary helpful in subnetting. Click here