Wireshark Lab: 802.11 WiFi v8.1
Computer Networking: A Top-Down Approach
Questions
- What are the SSIDs of the two access points that are issuing most of the beacon frames in this trace? [Hint: look at the Info field. To display only beacon frames, neter
wlan.fc.type_subtype == 8
into the Wireshark display filter].30 Munroe St
,linksys12
- What 802.11 channel is being used by both of these access points? [Hint: you’ll need to dig into the radio information in an 802.11 beacon frame]
Channel: 6
Figure 1. 802.11 radio information
- What is the interval of time between the transmissions of beacon frames from this access point (AP)? (Hint: this interval of time is contained in a field within the beacon frame itself).
Beacon Interval: 0.102400 [Seconds]
- What (in hexadecimal notation) is the source MAC address on the beacon frame from this access point? Recall from Figure 7.13 in the text that the source, destination, and BSS are three addresses used in an 802.11 frame. For a detailed discussion of the 802.11 frame structure, see section 9.2.3-9.2.4.1in the IEEE 802.11 standards document, excerpted here.
Source address: CiscoLinksys_f7:1d:51 (00:16:b6:f7:1d:51)
- What (in hexadecimal notation) is the destination MAC address on the beacon frame from 30 Munroe St?
Destination address: Broadcast (ff:ff:ff:ff:ff:ff)
- What (in hexadecimal notation) is the MAC BSS ID on the beacon frame from 30 Munroe St?
BSS Id: CiscoLinksys_f7:1d:51 (00:16:b6:f7:1d:51)
- The beacon frames from the 30 Munroe St access point advertise that the access point can support four data rates and eight additional “extended supported rates.” What are these rates? [Note: the traces were taken on a rather old AP].
Tag: Supported Rates 1(B), 2(B), 5.5(B), 11(B), [Mbit/sec]
Tag: Extended Supported Rates 6(B), 9, 12(B), 18, 24(B), 36, 48, 54, [Mbit/sec]
- Find the 802.11 frame containing the SYN TCP segment for this first TCP session (that downloads alice.txt) at t=24.8110. What are three MAC address fields in the 802.11 frame? Which MAC address in this frame corresponds to the wireless host (give the hexadecimal representation of the MAC address for the host)? To the access point? To the first-hop router? What is the IP address of the wireless host sending this TCP segment? What is the destination IP address for the TCP syn segment?
- MAC 주소
Source address: Intel_d1:b6:4f (00:13:02:d1:b6:4f)
(호스트)Destination address: CiscoLinksys_f4:eb:a8 (00:16:b6:f4:eb:a8)
(라우터)BSS Id: CiscoLinksys_f7:1d:51 (00:16:b6:f7:1d:51)
(AP)
- IP 주소
Source Address: 192.168.1.109
Destination Address: 128.119.245.12
- MAC 주소
- Does the destination IP address of this TCP SYN correspond to the host, access point, first-hop router, or the destination web server?
- 웹 서버
- Find the 802.11 frame containing the SYNACK segment for this TCP session received at t = 24.8277 What are three MAC address fields in the 802.11 frame? Which MAC address in this frame corresponds to the host? To the access point? To the first-hop router? Does the sender MAC address in the frame correspond to the IP address of the device that sent the TCP segment encapsulated within this datagram? (Hint: review Figure 6.19 in the text if you are unsure of how to answer this question, or the corresponding part of the previous question. It’s particularly important that you understand this).
Source address: CiscoLinksys_f4:eb:a8 (00:16:b6:f4:eb:a8)
(라우터)Destination address: 91:2a:b0:49:b6:4f (91:2a:b0:49:b6:4f)
(호스트)BSS Id: CiscoLinksys_f7:1d:51 (00:16:b6:f7:1d:51)
(AP)- Sender의 MAC 주소는 라우터에 해당하는 반면에, IP 주소는 웹 서버에 해당한다.
- What two actions are taken (i.e., frames are sent) by the host in the trace just after t = 49, to end the association with the 30 Munroe St AP that was initially in place when trace collection began? (Hint: one is an IP-layer action, and one is an 802.11-layer action).
- DHCP Release 메시지 전송
- Deauthentication 프레임 전송
Figure 5. End the association with AP
- Let’s look first at AUTHENTICATION frames. At t = 63.1680, our host tries to associate with the 30 Munroe St AP. Use the Wireshark display filter
wlan.fc.subtype == 11
to show AUTHENICATION frames sent from the host to and AP and vice versa. What form of authentication is the host requesting?Authentication Algorithm: Open System (0)
- What is the
Authentication SEQ
value (authentication sequence number) of this authentication frame from host to AP?Authentication SEQ: 0x0001
Figure 6. Authentication request
- The AP response to the authentication request is received at t = 63.1690. Has the AP accepted the form of authentication requested by the host?
Status code: Successful (0x0000)
- What is the
Authentication SEQ
value of this authentication frame from AP to Host?Authentication SEQ: 0x0002
Figure 7. Authentication response
- What rates are indicated in the frame as SUPPORTED RATES. Do not include in your answers below any rates that are indicates as EXTENDED SUPPORTE RATES.
Tag: Supported Rates 1(B), 2(B), 5.5(B), 11(B), 6(B), 9, 12(B), 18, [Mbit/sec]
- Does the ASSOCIATION RESPONSE indicate a Successful or Unsuccessful association response?
Status code: Successful (0x0000)
- Does the fastest (largest) Extended Supported Rate the host has offered match the fastest (largest) Extended Supported Rate the AP is able to provide?
- 54 Mbit/sec로 일치함
Figure 9. Association response
References
이 글은 저작자의 CC BY-SA 4.0 라이선스를 따릅니다.