DEV Community

TAKUMI SUGATA
TAKUMI SUGATA

Posted on

SSID vs ESSID — One Is a Name, the Other Is a Mechanism

Introduction

While studying for CompTIA Network+, I totally couldn't understand SSID and ESSID.
I could remember " SSID is the name of Wi-Fi ", but I couldn't grasp how it is different.
Once I learned about the structures, everything fell into place, so I decided to write it down.


What is SSID

SSID stands for Service Set Identifier

The name displayed on the smartphone for Wi-Fi settings like "○○-Wi-Fi","Coffee_Shop_Free"
 →All of these names are SSID
Enter fullscreen mode Exit fullscreen mode

Why SSID is needed

Problem:
Radio waves are invisible to the human eye, so we have no way of knowing which Wi-Fi network to connect to.

Solution:
Name each Wi-Fi
 → Users can identify and choose the network they want to connect to
Enter fullscreen mode Exit fullscreen mode

Familiar example

Wi-Fi router at home
 → The name of "My_Home_Wi-Fi"
 → This is SSID

We can use Wi-Fi inside a range that a router reach 
The signal weakens as we move further away
Enter fullscreen mode Exit fullscreen mode

Configuration diagram

Smartphone
 ↓ Connect to "My_Home_Wi-Fi"
Access point (One unit)
 ↓
Internet
Enter fullscreen mode Exit fullscreen mode

What is ESSID

ESSID stands for Extended Service Set Identifier

In a nutshell, it is a mechanism that allows multiple access points to share the same name, enabling seamless connectivity.

E means Extended
This is an extended concept that expands SSID across multiple access points

Why ESSID is needed

Problem:
Single access point cannot cover wide range area 

Example: University campus・ Airport・ Large commercial facility
 → Each building requires its own access point to provide adequate coverage
 → Each time we move to other building, we have to re-connect to the Wi-Fi

Solution:
Multiple access points share the same name
 → Wherever we move, our devices can connect to it automatically
 → We don't have to re-connect to the Wi-Fi
Enter fullscreen mode Exit fullscreen mode

Practical example

Overall university campus
 → Building A, B, and C have several access points
 → All access points have the same name of "University_Wi-Fi" 
 → This is ESSID

Wherever we move, our devices keep connecting to the same Wi-Fi name
→ Need not re-connect
Enter fullscreen mode Exit fullscreen mode

Configuration diagram

   Smartphone( Using while moving )
         ↓
┌──────────────────────────────────────────────┐
│  "University_Wi-Fi"(ESSID)                 │
│  ┌───────────┐ ┌───────────┐  ┌───────────┐  │
│  │ AP-1     │ │ AP-2      │  │ AP-3      │  │
│  │ Building A│ │ Building B│  │ Building C│  │
│  └───────────┘ └───────────┘  └───────────┘  │
└──────────────────────────────────────────────┘
         ↓
         Internet 

Even if we connect our devices to any access point, we can use it as a same network
Enter fullscreen mode Exit fullscreen mode

The difference between SSID and ESSID

This is the most confused point

SSID:
 → The name itself
 → Identifier named for the single access point
 → Only valid for that single access point

ESSID:
 → The name + the concept for integration
 → The mechanism multiple access points share the same name 
 → Works through the coordination of multiple access points behind the scenes
Enter fullscreen mode Exit fullscreen mode

Understanding with convenience store

SSID:" Seven-Eleven ○○store"
 → The unique name
 → The name cannot use the other store for identification

ESSID:" Seven-Eleven" as a a brand name
 → Every store offers the same service and products
 → Each store ( access point ) integrate each other on the backend
Enter fullscreen mode Exit fullscreen mode

Summary table

Item SSID ESSID
Official name Service Set Identifier Extended Service Set Identifier
Meaning The name of a Wi-Fi network A mechanism where multiple access points share the same name
Scope Single access point Multiple access points
Use House ・Small scale Office・ University・ Large scale facility
Reconnection Every time we move to the other area No need

Supplement in the modern era

Actual fact:
SSID  → Identifier for single access point
ESSID → Identifier bundled by multiple access points 

In the modern era:
In practice, SSID and ESSID are used interchangeably, as Wi-Fi settings typically display both simply as "SSID"
Enter fullscreen mode Exit fullscreen mode

For the CompTIA Network+ exam, it is sufficient to understand ESSID as an extended concept that unifies multiple access points under a single network name.


Conclusion

I couldn't understand the difference between SSID and ESSID.
Once I understood why we don't need to reconnect every time we move around an airport or university campus, everything clicked.

Top comments (0)