š® From Game Glitches to Internet Mastery: How Fixing "A Way Out" Led Me Down the DNS Rabbit Hole šµļøāāļø


Ever had a moment where a small tech issue unexpectedly unlocked a whole new plethora for learning?
Thatās exactly what happened to me. One minute, I was just trying to troubleshoot a connection error while playing A Way Out, an adrenaline-packed co-op game by EA, and the next thing I knewāI was knee-deep in exploring how the internetās nervous system (DNS) works. What started as a frustrating error message, āCannot connect to EA servers,ā ended up unlocking an entirely new realm of knowledge about DNS servers, public IPs, ISP routing, and how the internet stitches everything together behind the scenes.
Back in my college days, I was more focused on writing code than worrying about the underlying mechanics of the internet. Sure, I knew about DNS, IP addresses, and networking fundamentalsābut I never really gave them much thought beyond what was needed to pass an exam. Little did I know, a simple gaming frustration would lead to one of the biggest "aha!" moments of my day. What I learned left me amazedāand Iām about to take you on that same journey. Buckle up! š
š® The Problem: "Cannot Connect to EA Servers"
It all began when I launched A Way Out for a quick multiplayer session. Everything was fineāuntil I was hit with the dreaded error:
š "Cannot connect to EA servers."
Like any gamer, I followed the basic troubleshooting steps:
ā
Restarted the game.
ā
Restarted my PC.
ā
Checked my internet.
But nothing worked. Frustration level: MAX.
Thatās when I turned to YouTube tutorials and came across various fixes. Some suggested:
Running
ipconfig /flushdns
Setting public DNS servers like Googleās 8.8.8.8 or 8.8.4.4
At the time, I blindly followed the steps without fully understanding them. And guess what?
Nothing changed.
š” The Game-Changer: A Simple Network Reset
I was about to give up when I decided to try one last thingāresetting all network settings and restarting my PC. To my surprise...š Voila! Multiplayer was back. But thatās when the real curiosity kicked in.
Why did this work?
What had actually happened behind the scenes?
I was determined to uncover the truth. And thatās when I began asking myself a series of related questions that would eventually lead me to unlock a wealth of knowledge.
š An Unexpected Tech Spiral: The Shopping Trip That Helped
Later that evening, I was out shopping with my mom. She was deep in her shopping spree, and I was... well, bored.
So, I started scrolling through Hashnode blogs on my phone.
I stumbled upon an article about Gradle, Maven, and npmācommon build tools in software development. The blog mentioned something about Groovy and Domain-Specific Languages (DSLs).
That wordāDomaināsparked a mental connection.
Wait... wasnāt I just dealing with something called Domain Name System (DNS)?
Thatās when it clicked:
š¹ DNS is literally āDomain Name System.ā
š¹ Itās why we can type ea.com
instead of some long IP address.
š¹ And maybe... just maybe... I should finally understand what the hell just happened.
And just like that, my curiosity pulled me back into the world of networking. I had to dig deeper. š
š The 13 Questions That Led to Clarity
To get to the bottom of this, I started asking questionsālots of them.
Hereās a list of the exact 13 questions (or prompts) I asked ChatGPT (and myself) along the way:
What is DNS?
What is the use of
ipconfig /flushdns
?Do you know anything about the game A Way Out? Why couldnāt I connect to EA servers?
I reset the network settings, and it worked. What could the problem have been?
What is the DNS of A Way Out game currently?
How can a public DNS connect me to the EA server?
Does using Googleās DNS mean configuring my PC to use a public DNS?
How do ISP DNS servers work in real-time? Can you explain with an example and diagram?
Can we say that our deviceās DNS cache is similar to an ISPās DNS server?
Is my ISP responsible for storing all the DNS mappings globally?
Does Googleās DNS server store all the IP mappings?
Where is all the DNS mapping of the internet stored?
What organizations manage and maintain this entire system?
Each question led me deeper and deeper into the mechanics of DNS. And with every answer, I felt like I was uncovering secrets that most people donāt even think about.
Let me share glimpses from the vast amount of information I received.
Q1: What is DNS?
DNS (Domain Name System) is like the phonebook of the internet.
When you type a URL like ea.com
, DNS translates it into a numerical IP addressālike 159.153.64.173
āthat computers can understand.
How DNS Works (Simplified):
1ļøā£ You type ea.com
into your browser.
2ļøā£ Your system checks its local DNS cache for a saved IP.
3ļøā£ If not found, it queries a DNS server.
4ļøā£ The DNS server returns the correct IP address.
5ļøā£ Your browser connects to that IP, and youāre in!
Q2: What is the use of ipconfig /flushdns?
When I ran ipconfig /flushdns
, I was actually clearing my systemās local DNS cache.
This cache temporarily stores DNS lookups to speed up future requests. But if the cached record becomes stale or outdatedālike if EA changed their server IPāyour system might still try to use the wrong IP.
Flushing the DNS cache clears all previous entries and forces the system to query fresh DNS information.
Q3: Why couldnāt I connect to EA servers?
After some digging, I realized that EAās servers had likely changed their IP addresses or updated their DNS records.
Since my system was still relying on a cached DNS record with the old IP, it was unable to connect.
Lesson learned: Even if a site or game changes its IP, cached DNS entries can still point to outdated locations.
Q4: I reset my network, and it worked. Why?
Resetting my network did more than just flush the DNS. It:
Wiped all previous network configurations.
Requested fresh IP and DNS settings from my ISP.
Allowed my system to establish a new connection path.
In essence: Resetting the network not only refreshed the DNS but also corrected any lingering misconfigurations that could have been causing the issue.
Q5: What is the DNS of A Way Out game currently?
Interestingly, EA games like A Way Out rely on a set of distributed servers with dynamically changing IPs.
Their DNS records are handled by content delivery networks (CDNs) that optimize routing and reduce latency.
This explains why sometimes DNS changes donāt propagate immediately, leading to temporary connectivity issues.
Q6: How can a public DNS connect me to EA servers?
Most people use their ISPās default DNS servers, but these can be:
ā Slow
ā Clogged with traffic
ā Outdated
Public DNS serversālike Google DNS (8.8.8.8 and 8.8.4.4)āare faster, more reliable, and globally distributed.
By switching to Googleās DNS, it bypassed the ISPās DNS servers and got a direct, faster route to EAās servers.
Q7: Does using Googleās DNS mean configuring my PC to use a public DNS?
Absolutely. When you configure your PC to use Googleās DNS:
Your DNS queries bypass your ISPās DNS servers.
Queries go directly to Googleās global DNS infrastructure, which tends to be faster and more up to date.
Q8: How do ISP DNS servers work in real time?
When you type a URL:
1ļøā£ Your browser checks the local DNS cache.
2ļøā£ If the record isnāt there, it asks the ISPās DNS server.
3ļøā£ The ISP checks its own cache.
4ļøā£ If not found, it queries higher-level DNS servers until it gets the answer.
5ļøā£ It returns the IP to your device.
Fun Fact: DNS resolution usually takes millisecondsābut even that slight delay can impact game performance.
Q9: Can we compare a deviceās DNS cache to an ISPās DNS server?
Kind of. But thereās a key difference:
Local DNS cache stores results temporarily for your device.
ISP DNS servers cache results for all their users and query upstream DNS servers when needed.
Think of it as:
š§ Your deviceās DNS cache = A personal notepad.
š¢ ISPās DNS cache = A company-wide knowledge base.
Q10: Is my ISP responsible for storing all the DNS mappings globally?
Not quite. ISPs only cache DNS records to improve local performance.
But the actual DNS mapping for the entire internet is handled by a hierarchical system:
Root DNS Servers
TLD Servers
Authoritative DNS Servers
ISPs query these higher-level servers when they donāt have cached records.
Q11: Does Googleās DNS server store all the IP mappings?
No, Googleās DNS servers donāt store all the worldās DNS mappings.
They act as resolvers, querying authoritative DNS servers and caching responses temporarily to serve future requests faster.
Think of Googleās DNS like an ultra-fast, globally distributed librarian who fetches and remembers answers quickly.
Q12: Where is all the DNS mapping of the entire internet stored?
DNS data isnāt stored in a single place. Instead, itās hierarchical and distributed:
Root DNS Servers (handle top-level domains like
.com
,.org
)TLD Servers (handle domains like
ea.com
)Authoritative DNS Servers (store the actual IP mappings)
Q13: Who manages this massive system?
ICANN (Internet Corporation for Assigned Names and Numbers) ā Governs DNS and IP address allocation.
IANA (Internet Assigned Numbers Authority) ā Manages global IP address allocation.
Regional Internet Registries (RIRs) ā Allocate IPs regionally.
š From Gaming to Global Networks: The Power of Curiosity
A simple gaming issue turned into an eye-opening journey into networking, DNS, and the backbone of the internet.
If thereās one thing I learned, itās this:
Every problem is an opportunity to learn something new.
Next time a game wonāt connect, donāt just get frustratedāget curious. Who knows? It might just lead you to your next big discovery. Sometimes, fixing a game can teach you how the world works. And thatās a lesson worth sharing. š
š” Whatās your story? Whatās the most unexpected way youāve ever learned something new? Drop a comment below-Iād love to hear your stories!
Subscribe to my newsletter
Read articles from Subhendu Kumar Jena directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by

Subhendu Kumar Jena
Subhendu Kumar Jena
I am an Engineering graduate of 2024 in the field of Computer Science. I have a keen interest in digital and IT technologies since I was in High-School. 4 years of engineering has taught the values of being a student, and watching videos from YouTube and reading blogs made me know the hard way that making it to the top in this field requires patience and hard work. So here I am taking a small step for a bigger change and a greater opportunity. Thanks.