Network+CCNAIntermediate16 min read

What Does BSSID Mean?

Also known as: Basic Service Set Identifier, BSS

Reviewed byJohnson Ajibi· Senior Network & Security Engineer · MSc IT Security

This page mentions older exam versions. See the Current Exam Context and Legacy Exam Context sections below for the updated mapping.

On This Page

Quick Definition

The Basic Service Set Identifier (BSSID) is a 48-bit MAC address that uniquely identifies a Basic Service Set (BSS) in an IEEE 802.11 wireless network. Each access point (AP) radio interface has its own BSSID, which is typically the MAC address of that radio. In infrastructure mode, the BSSID is the MAC address of the AP; in ad-hoc (IBSS) mode, it is a randomly generated MAC address. The BSSID allows client devices to distinguish between multiple APs that may be broadcasting the same SSID (network name). It is used in frame addressing: when a client sends a frame to an AP, the destination address is the BSSID; when the AP sends a frame to a client, the source address is the BSSID. The BSSID is critical for roaming, as clients use it to identify which AP they are associated with and to decide when to reassociate to a different AP with a stronger signal. Without BSSID, a client could not differentiate between two APs with the same SSID, making seamless roaming impossible.

Must Know for Exams

On the CompTIA Network+ exam (N10-008), BSSID is tested under Objective 2.4 'Compare and contrast wireless networking protocols' and Objective 5.3 'Given a scenario, troubleshoot common wireless connectivity issues.'

The exam expects you to know that BSSID is the MAC address of the AP's radio, that it uniquely identifies a BSS, and that it is used in frame addressing. Specific exam focus areas include: (1) Differentiating BSSID from SSID — many questions present a scenario where two APs have the same SSID but different BSSIDs, and you must explain why clients can distinguish them. (2) Understanding that in infrastructure mode, the BSSID is the AP's MAC address, while in ad-hoc mode it is randomly generated.

(3) Recognizing that the BSSID appears in the Address 2 field of a data frame sent by an AP and in the Address 1 field of a data frame sent by a client. (4) Knowing that the BSSID is used in the reassociation process — the client includes the old BSSID in the Reassociation Request. (5) Understanding that Multi-SSID allows a single AP to have multiple BSSIDs, each associated with a different SSID.

On the CCNA exam (200-301), BSSID is tested under Wireless Principles (Objective 1.11). CCNA questions may ask you to identify the BSSID in a Wireshark capture or to explain how BSSID is used in the 802.

11 frame format. Both exams may include questions about the difference between BSSID and MAC address of the AP's wired interface.

Simple Meaning

Think of a large office building with multiple conference rooms, each named 'Meeting Room A'. If you are told to go to 'Meeting Room A', you would not know which one — you need a unique room number. In Wi-Fi, the SSID is like the room name (e.

g., 'GuestWiFi'), and the BSSID is like the unique room number (e.g., 'Room 101'). Every access point (AP) has its own BSSID, which is its MAC address. So even if two APs broadcast the same SSID, each has a different BSSID.

Your phone or laptop uses the BSSID to know exactly which AP it is talking to. This is especially important when you walk from one end of the building to the other — your device can see that the BSSID of the AP you were connected to is getting weaker, and it can switch to a different BSSID (a different AP) that has the same SSID but a stronger signal. Without BSSID, your device would be confused about which 'Meeting Room A' to connect to.

Full Technical Definition

The Basic Service Set Identifier (BSSID) is a 48-bit MAC address that uniquely identifies a Basic Service Set (BSS) in an IEEE 802.11 wireless LAN. It operates at the Data Link Layer (Layer 2) of the OSI model.

The BSSID is defined in the IEEE 802.11-2020 standard (clause 4.3.2.1). In infrastructure mode, the BSSID is the MAC address of the AP's radio interface. In Independent BSS (IBSS) or ad-hoc mode, the BSSID is a randomly generated MAC address with the Individual/Group bit set to 0 (individual) and the Universal/Local bit set to 1 (locally administered).

The BSSID is used in the 802.11 MAC frame header: in data frames, the Address 2 field (Transmitter Address) is the BSSID when sent by an AP, and the Address 1 field (Receiver Address) is the BSSID when sent by a client. In management frames (beacons, probe responses), the BSSID is included in the frame header.

The BSSID is also used in the Association Request/Response and Reassociation frames. Unlike the SSID (which is a human-readable string of up to 32 bytes), the BSSID is a hardware-level identifier. Multiple BSSIDs can be associated with a single physical AP if it supports multiple SSIDs (Multi-SSID) — each virtual AP gets its own BSSID.

The BSSID is also used in the 802.11k and 802.11r standards for fast roaming and neighbor reports. In the context of wireless security, the BSSID is used in MAC address filtering and in the construction of the PMKID in WPA3.

The BSSID is not the same as the MAC address of the AP's wired interface (BSSID is the radio MAC). The BSSID is also used in the 802.11ac and 802.11ax beamforming and MU-MIMO operations.

Real-Life Example

Consider a university campus with multiple buildings. Each building has several access points, all broadcasting the same SSID 'EduRoam'. A student, Alice, is walking from the library to the science building while on a Zoom call.

Her laptop is initially associated with an AP in the library that has BSSID 00:1A:2B:3C:4D:5E. As she moves away, the signal strength drops. Her laptop's wireless card continuously monitors the BSSID of the current AP and scans for other APs.

It detects another AP in the science building with BSSID 00:1A:2B:3C:4D:6F that also broadcasts 'EduRoam' but has a stronger signal. The laptop sends a Reassociation Request frame to the new AP, including the old BSSID (00:1A:2B:3C:4D:5E) in the 'Current AP' field. The new AP accepts the reassociation, and the laptop now uses the new BSSID as its destination for all frames.

The Zoom call continues without interruption because the BSSID allowed the laptop to identify and switch between specific APs, not just the network name. Without the BSSID, the laptop would not know which AP to reassociate to, and the call would drop.

Why This Term Matters

Understanding BSSID is essential for IT professionals because it is the fundamental identifier that enables wireless client roaming, load balancing, and troubleshooting. When diagnosing Wi-Fi issues, knowing how to identify BSSIDs helps pinpoint which AP is causing interference or poor performance. Tools like Wireshark and wireless survey software display BSSIDs to show all APs in an area, even those with hidden SSIDs.

In enterprise environments, BSSID is used in MAC address filtering, rogue AP detection, and wireless intrusion prevention systems (WIPS). For network engineers, understanding BSSID is critical for designing high-density Wi-Fi deployments, as multiple BSSIDs per AP (via Multi-SSID) allow segmentation of traffic. On the Network+ and CCNA exams, questions about BSSID test your ability to differentiate it from SSID, understand its role in frame addressing, and recognize its use in roaming.

Mastery of BSSID is a foundational skill for any wireless networking professional.

How It Appears in Exam Questions

Question Pattern 1: 'A network administrator notices two access points with the same SSID. How does a client distinguish between them?' Wrong answers: 'By the channel number' or 'By the IP address.'

Correct answer: 'By the BSSID, which is the MAC address of each AP's radio.' Pattern 2: 'Which address is used in the Address 2 field of a data frame sent by an access point?' Wrong answers: 'Source MAC address of the client' or 'Destination MAC address of the client.'

Correct answer: 'The BSSID (the AP's MAC address).' Pattern 3: 'A client is roaming from one AP to another. What information does the client include in the Reassociation Request to identify the previous AP?'

Wrong answers: 'The SSID' or 'The IP address of the previous AP.' Correct answer: 'The BSSID of the previous AP.' Pattern 4: 'Which of the following is true about BSSID in an IBSS (ad-hoc) network?'

Wrong answers: 'It is the MAC address of the first client' or 'It is the same as the SSID.' Correct answer: 'It is a randomly generated MAC address.' To identify the correct answer, always look for keywords like 'MAC address,' 'radio interface,' 'uniquely identifies the AP,' or 'frame addressing.'

Practise BSSID Questions

Test your understanding with exam-style practice questions.

Practise

Example Scenario

Scenario: A small office has two access points (AP1 and AP2) both broadcasting SSID 'OfficeNet'. AP1 has BSSID 00:11:22:33:44:55, AP2 has BSSID 00:11:22:33:44:66. Step 1: A laptop user opens the Wi-Fi list and sees 'OfficeNet' twice — the laptop shows both entries because each AP has a different BSSID.

Step 2: The user connects to the first 'OfficeNet' entry, which associates with AP1 (BSSID 00:11:22:33:44:55). Step 3: The laptop sends a data frame to the internet; the frame's Address 1 (Receiver) is the BSSID of AP1. Step 4: The user walks to the other side of the office; the laptop detects that the signal from BSSID 00:11:22:33:44:55 is weak.

Step 5: The laptop sends a Reassociation Request to AP2 (BSSID 00:11:22:33:44:66) that includes the old BSSID (00:11:22:33:44:55). AP2 accepts, and the laptop now uses the new BSSID for all frames. The connection remains active throughout.

Common Mistakes

Students think BSSID is the same as the SSID (network name).

SSID is a human-readable string (up to 32 bytes) that identifies the network name. BSSID is a 48-bit MAC address that identifies the specific AP radio. They are completely different identifiers at different layers.

Remember: SSID = network name (like 'HomeWiFi'), BSSID = AP's MAC address (like 00:1A:2B:3C:4D:5E).

Students think BSSID is the MAC address of the AP's wired Ethernet port.

The BSSID is the MAC address of the AP's radio interface, not its wired Ethernet interface. They are often different. The wired MAC is used for the Ethernet side, the BSSID is used for the wireless side.

BSSID = 'Basic Service Set ID' — the 'Service Set' is the wireless cell, so it's the radio MAC, not the Ethernet MAC.

Students think that in an IBSS (ad-hoc) network, the BSSID is the MAC address of the first client that created the network.

In IBSS mode, the BSSID is a randomly generated MAC address with the locally administered bit set. It is not the MAC of any specific client. This ensures uniqueness without relying on a single device.

IBSS BSSID = random MAC, not a client's MAC. Think 'random, not real.'

Exam Trap — Don't Get Fooled

{"trap":"The most dangerous trap: A question asks 'What is the BSSID of an access point?' and the wrong answer 'The SSID of the network' is offered. Many candidates choose it because they confuse BSSID with SSID.

Another trap: 'The MAC address of the AP's Ethernet port' — candidates see 'MAC address' and pick it without reading 'Ethernet port.'","why_learners_choose_it":"Learners often memorize that BSSID is 'the MAC address of the AP' but forget that it is specifically the radio MAC, not the Ethernet MAC. The word 'MAC address' triggers a match, and the detail 'radio' vs 'Ethernet' is overlooked.

Also, the similarity in acronyms (BSSID vs SSID) causes confusion under time pressure.","how_to_avoid_it":"Always read the full answer choice. If it says 'MAC address of the Ethernet port,' eliminate it.

The correct answer will say 'MAC address of the radio interface' or 'MAC address of the wireless interface.' Also, remember: BSSID = wireless MAC, not network name."

Commonly Confused With

BSSIDvsSSID

SSID is a human-readable network name (up to 32 bytes) that identifies a wireless network. BSSID is a 48-bit MAC address that identifies a specific AP radio. Multiple APs can have the same SSID but each has a unique BSSID. SSID is used for network selection; BSSID is used for frame addressing and roaming.

When you see 'HomeWiFi' on your phone, that's the SSID. The BSSID is the hidden MAC address (e.g., 00:1A:2B:3C:4D:5E) that your phone uses to talk to that specific AP.

BSSIDvsMAC address (wired)

The BSSID is a MAC address, but it is the MAC address of the AP's radio interface. The wired MAC address is the MAC of the AP's Ethernet port. They are often different. The BSSID is used for 802.11 frames; the wired MAC is used for Ethernet frames.

An AP has a wired MAC of 00:11:22:33:44:55 (on its Ethernet port) and a BSSID of 00:11:22:33:44:66 (on its radio). The BSSID is the one used in Wi-Fi frames.

Step-by-Step Breakdown

1

Step 1 — AP broadcasts beacon frames

The access point periodically sends beacon frames that include both the SSID (network name) and the BSSID (its radio MAC address). This allows clients to discover the AP and know its unique identifier.

2

Step 2 — Client sends Probe Request

A client sends a Probe Request frame to discover nearby APs. The client may include the desired SSID or send a wildcard probe. APs respond with Probe Responses that include their BSSID.

3

Step 3 — Client selects an AP and associates

The client chooses an AP based on signal strength and other factors. It sends an Association Request frame to the AP's BSSID. The AP responds with an Association Response, and the client now uses that BSSID as the destination for data frames.

4

Step 4 — Data frames use BSSID for addressing

When the client sends data, the destination MAC address (Address 1) is the BSSID of the AP. When the AP sends data to the client, the source MAC address (Address 2) is the BSSID. This ensures proper Layer 2 communication.

5

Step 5 — Client roams to a new AP

If the client detects a stronger signal from another AP with the same SSID but a different BSSID, it sends a Reassociation Request to the new AP. This request includes the old BSSID. The new AP uses this to forward any buffered frames from the old AP.

Practical Mini-Lesson

BSSID stands for Basic Service Set Identifier. It is a 48-bit MAC address that uniquely identifies a Basic Service Set (BSS) in an 802.11 wireless network. Every access point (AP) radio interface has its own BSSID.

In infrastructure mode, the BSSID is the MAC address of the AP's radio. In ad-hoc (IBSS) mode, the BSSID is a randomly generated MAC address. The BSSID is used in the 802.11 MAC frame header.

When an AP sends a data frame to a client, the source address (Address 2) is the BSSID. When a client sends a data frame to an AP, the destination address (Address 1) is the BSSID. This allows the client and AP to address each other at Layer 2.

The BSSID is also used in management frames like beacons and probe responses. Clients use the BSSID to differentiate between APs that have the same SSID. This is critical for roaming: when a client moves, it monitors the signal strength of its current BSSID and scans for other BSSIDs.

If it finds a stronger BSSID with the same SSID, it sends a Reassociation Request that includes the old BSSID. The new AP uses this to forward buffered frames. Multi-SSID allows a single physical AP to have multiple virtual APs, each with its own BSSID and SSID.

This is used for guest networks or VLAN segmentation. The BSSID is not the same as the MAC address of the AP's wired Ethernet interface — it is the MAC of the radio. Key takeaway: BSSID is the unique Layer 2 identifier for an AP's radio, enabling client differentiation, roaming, and frame addressing.

Memory Tip

BSSID = 'Big SSID' — but it's actually the MAC address. Think: 'BSSID = Base Station's Specific IDentifier.' Mnemonic: 'BSSID: Be Specific, See ID' — it's the unique MAC of the AP's radio, not the network name.

Covered in These Exams

Current Exam Context

Current exam versions that test this topic — use these objectives when studying.

Legacy Exam Context

Older materials may mention these exam versions, but learners should use the current objectives for their target exam.

N10-008N10-009(current version)

Related Glossary Terms

Frequently Asked Questions

Is the BSSID always the same as the MAC address of the access point?

In infrastructure mode, yes — the BSSID is the MAC address of the AP's radio interface. However, if the AP supports multiple SSIDs (Multi-SSID), each virtual AP gets its own BSSID, which may be derived from the physical MAC. In ad-hoc mode, the BSSID is a randomly generated MAC address, not tied to any device's physical MAC.

What is the difference between BSSID and SSID?

SSID is the network name (e.g., 'GuestWiFi') that users see when scanning for Wi-Fi. BSSID is the MAC address of the AP's radio (e.g., 00:1A:2B:3C:4D:5E). Multiple APs can share the same SSID, but each has a unique BSSID. The BSSID is used for Layer 2 frame addressing and roaming.

Can two access points have the same BSSID?

No, each BSSID must be unique within a wireless network. In infrastructure mode, each AP radio has a unique MAC address assigned by the manufacturer. In ad-hoc mode, the randomly generated BSSID is designed to be unique. Duplicate BSSIDs would cause addressing conflicts and prevent proper communication.

How is BSSID used in Wireshark captures?

In Wireshark, the BSSID appears in the 802.11 frame header. For data frames from an AP, the BSSID is in the Transmitter Address (TA) field. For frames from a client, the BSSID is in the Receiver Address (RA) field. Wireshark also shows the BSSID in beacon and probe response frames. You can filter by BSSID using 'wlan.bssid == xx:xx:xx:xx:xx:xx'.

Why does my laptop show two entries for the same Wi-Fi network name?

This happens when multiple access points are broadcasting the same SSID. Each AP has a different BSSID, so your laptop lists each as a separate network entry. This allows you to connect to the one with the strongest signal, and it enables seamless roaming as you move between APs.

Summary

(1) BSSID is the MAC address of an access point's radio interface, uniquely identifying a wireless cell (BSS) in a WLAN. (2) It operates at Layer 2 and is used in frame addressing: it is the source address in frames from the AP and the destination address in frames from the client. (3) The most important exam fact: BSSID is NOT the SSID — it is the hardware address of the AP's radio, and two APs with the same SSID will have different BSSIDs.

Remember this to avoid the most common exam trap.