How to Fix NAT Type: Gaming Router Setup in 10 Steps [2026]

Every console generation solves lag differently, but the single most common complaint in PS5, Xbox, and PC lobbies in 2026 has nothing to do with your internet speed. It’s your NAT type. A Strict or Moderate NAT type blocks peer-to-peer connections, kicks you out of party chat, and turns matchmaking into a coin flip in games like Call of Duty, Fortnite, and Marvel Rivals. Searches for “how to change NAT type PS5” have jumped more than 400% quarter over quarter in 2026, according to keyword tracking data, and the fix has almost nothing to do with your console. It lives in your router.

This tutorial walks through the full process of fixing NAT type and setting up a gaming-grade router for PS5, Xbox Series X/S, Nintendo Switch 2, Steam Deck, and PC, covering UPnP, manual port forwarding, DMZ, QoS, double NAT, and carrier-grade NAT (CGNAT). By the end you’ll have an Open NAT type on every device on your network, a QoS profile that stops downloads from tanking your ping mid-match, and a backup of the config so you never have to redo it after a firmware update or power outage.

Google · Preferred Sources

Don't miss new tech stories on Google

Add Tech Insider once in the Google app and our stories appear in your news suggestions.

Add Now

Why NAT Type Sabotages Multiplayer Gaming in 2026

NAT, or Network Address Translation, is the system your router uses to let every device in your home share one public IP address. It’s efficient, but it also blocks unsolicited inbound traffic by default, which is exactly what peer-to-peer game traffic needs to establish a direct connection between two players. Your router has to be told to let that traffic through, and if it isn’t, your console falls back to relaying traffic through the game publisher’s servers, or fails to connect at all.

Activision’s own networking documentation puts it plainly: “Moderate/Type 2 and Strict/Type 3 NAT types limit the connections your gaming console or PC can make to other gaming consoles or PCs,” according to Activision Support. The same source notes that “there are three main NAT types depending on your platform: Open, Moderate, and Strict on Microsoft or PC, and Type 1, Type 2, and Type 3 on Sony.” Whatever the label, Strict NAT means you can only connect to players with Open NAT, Moderate means partial connectivity with more matchmaking failures, and Open means you connect to nearly everyone with the lowest possible latency overhead. Xbox’s own networking support documentation confirms an Open NAT type is required for full party chat and multiplayer functionality across most titles.

The practical symptoms are familiar to anyone who games online: friends who “can’t join” your party, matchmaking that takes three times longer than it should, voice chat that drops mid-game, and games that quietly disable crossplay lobbies because your NAT can’t be trusted to hold a peer connection. None of that is a console problem. It’s a router configuration problem, and it’s fixable in under an hour with the right settings.

Which Games and Features Actually Depend on Your NAT Type

Not every game cares equally about NAT type. Titles built on dedicated servers, like most Call of Duty multiplayer modes and Fortnite, mostly route match traffic through a central server, so a Strict NAT mainly affects party invites, voice chat, and how quickly the matchmaker can place you in a lobby. Peer-to-peer titles feel the problem far more directly. Older Call of Duty entries running listen servers, Rocket League, Minecraft realms hosted from a friend’s console, and split-session co-op games often refuse to connect at all between two Strict NAT players, since neither side can accept the other’s inbound connection request.

Cross-platform play adds another layer. When a PS5 player with Strict NAT tries to join an Xbox or PC friend’s party, the connection has to succeed on both ends simultaneously, and one bad NAT type in either direction can break the whole session. This is why some players report their multiplayer “just works” solo but consistently fails the moment they try to party up with a specific friend: it’s rarely a coincidence, and it’s almost always one side’s router blocking the handshake the other side is trying to make.

Prerequisites: What You Need Before You Start

This setup works with any router made in the last five years, but a few things make it faster and more reliable. Here’s what to have ready before you start:

  • Admin access to your router (the login credentials, not your Wi-Fi password — check the sticker on the router or your ISP’s app if you’ve never logged in before)
  • A router that supports UPnP, static DHCP reservations, and either port forwarding or DMZ mode (nearly all consumer routers since 2020 do)
  • Router firmware updated to the latest version — outdated firmware is one of the most common causes of NAT and UPnP failures
  • Ethernet cables if you’re using wired connections, which is strongly recommended for any console you’re troubleshooting
  • Your console or PC’s current IP address and MAC address, found under Settings > Network on PS5, Xbox, and Switch
  • 15 to 45 minutes depending on whether you hit double NAT or CGNAT along the way
  • If you’re on a modem/router combo from your ISP, know whether you can put it in bridge mode or access its port forwarding menu directly

You do not need a new router to fix NAT type. Port forwarding and UPnP are baseline features on essentially every router sold since Wi-Fi 5 became standard. A new router only helps if you’re also chasing better QoS granularity, Wi-Fi 6E/7 speeds, or more Ethernet ports for a growing pile of consoles and streaming boxes.

Step 1: Identify Your Current NAT Type

Before changing anything, check what you’re starting with. On PS5, go to Settings > Network > Connection Status, then select Test Internet Connection. The result screen shows your NAT Type directly. On Xbox Series X/S, go to Settings > General > Network Settings, and the NAT Type appears under your current connection. On Nintendo Switch 2, go to System Settings > Internet > Test Connection.

On PC, there’s no built-in NAT type label, but you can approximate it by checking whether your public IP matches your router’s WAN IP (a mismatch signals double NAT) and by running a STUN-based NAT check, which is the same discovery mechanism defined in IETF RFC 3489 that most game engines use internally to classify NAT behavior.

# Quick public IP check from a PC or Steam Deck terminal
curl -4 ifconfig.me
# Compare this to the WAN IP shown in your router's status page.
# If they don't match, you're behind an extra layer of NAT (ISP-side).

# Windows: check your local IP and default gateway
ipconfig | findstr /i "IPv4 Gateway"

# macOS/Linux: same check
ifconfig | grep "inet "
netstat -rn | grep default
NAT TypePS5 LabelXbox LabelWhat It MeansTypical Fix
OpenType 1OpenDirect connections both ways, lowest latency overheadNo action needed
ModerateType 2ModerateSome peer connections fail, slower matchmakingUPnP or manual port forwarding
StrictType 3StrictMost peer connections blocked, frequent lobby errorsPort forwarding, DMZ, or fixing double NAT

Step 2: Access Your Router’s Admin Panel

Type your router’s gateway IP into a browser — usually 192.168.1.1, 192.168.0.1, or 192.168.1.254. If none of those work, the gateway address shown in the ipconfig or ifconfig output from Step 1 is the correct one for your network. Log in with the admin credentials, not your Wi-Fi password. If you’ve never changed them, check the label on the router itself or your ISP’s companion app, which usually surfaces the same login for the local admin panel.

Once inside, look for a section labeled Advanced, NAT Forwarding, Virtual Server, or Gaming, depending on the brand. ASUS routers group most of this under Adaptive QoS and WAN. TP-Link splits it between NAT Forwarding and QoS. Netgear uses Dynamic QoS and Port Forwarding under Advanced. Eero and Google Nest Wifi mesh systems hide the same options one level deeper, usually under a Network Settings or Reservations & Port Forwarding tab inside their companion app rather than a browser-based admin page, since both brands were designed around app-first management. If you’re managing a Steam Machine or a Steam Deck in docked mode alongside your consoles, the same panel controls every device on the network, so you only need to do this setup once per router.

If you’re locked out because you’ve genuinely forgotten a changed admin password, most routers have a physical reset button that restores factory defaults, but that also wipes any existing port forwarding rules and DHCP reservations, so treat it as a last resort rather than a quick fix. Write down or screenshot your current settings before resetting anything if there’s any chance you’ll need to rebuild them.

Step 3: Set a Static IP for Every Gaming Device

Port forwarding rules point at a specific local IP address. If your router hands out a new IP to your PS5 every few days through standard DHCP, those rules silently break. The fix is a DHCP reservation, which locks a device’s MAC address to a fixed IP without turning off DHCP for the rest of your network.

Find the MAC address for each console under Settings > Network > Advanced on PS5, Settings > General > Network Settings > Advanced Settings on Xbox, and System Settings > Internet > Advanced Settings on Switch. Then, in your router’s DHCP reservation list (sometimes called Address Reservation or Static Lease), bind each MAC address to an IP outside your dynamic pool, so it never gets reassigned.

# Example DHCP reservation entries (syntax varies by router brand,
# this mirrors the generic fields most admin panels expose)

Device Name: PS5-Living-Room
MAC Address: A4:83:E7:12:9F:01
Reserved IP: 192.168.1.50

Device Name: Xbox-Series-X
MAC Address: 7C:2E:BD:44:11:8A
Reserved IP: 192.168.1.51

Device Name: Switch2-Dock
MAC Address: 98:B6:E9:2C:77:03
Reserved IP: 192.168.1.52

Device Name: Gaming-PC
MAC Address: 00:1A:2B:3C:4D:5E
Reserved IP: 192.168.1.53

Reboot each console after applying the reservation so it re-requests an address and picks up the new fixed IP. Skipping this step is the single most common reason people redo their entire port forwarding setup a week later, only to find it’s stopped working for no obvious reason.

Step 4: Try UPnP First

UPnP (Universal Plug and Play) lets your console request the ports it needs directly from the router, without you manually entering anything. It’s the fastest path to Open NAT and works for most people. In your router’s admin panel, find the UPnP toggle (usually under Advanced > NAT Forwarding or LAN Setup) and enable it. Reboot the router, then reboot your console and rerun the NAT type test from Step 1.

Port Forward, a networking reference site widely used for router configuration, states that “most people get NAT Type Open by using Network Utilities” — its term for automated UPnP-style port opening. If your NAT type comes back Open after this step, you can skip straight to Step 7 for QoS. If it’s still Moderate or Strict, move on to manual port forwarding — some ISP routers ship with UPnP quietly disabled at the firmware level even when the toggle shows as on.

Step 5: Configure Manual Port Forwarding

If UPnP didn’t get you to Open NAT, the next step is forwarding the specific ports each platform uses directly to the static IP you assigned in Step 3. Every platform publishes its own port list, and forwarding the wrong ports (or forwarding them to the wrong device) is the most common reason this step fails on the first try. As GameRanger’s networking support documentation notes, “in some cases, instead of asking for a public port, it will ask for a port range (eg. Start Port, End Port),” so read your router’s form fields carefully before assuming a rule failed to save.

Ports to forward per platform, forwarded to each device’s reserved IP from Step 3
PlatformProtocolPorts
PlayStation 5TCP80, 443, 3478-3480
PlayStation 5UDP3478-3479
Xbox Series X/STCP53, 80, 443, 3074
Xbox Series X/SUDP53, 88, 500, 3074, 3544, 4500
Nintendo Switch 2TCP6667, 12400, 28910, 29900
Nintendo Switch 2UDP1-65535 (title-dependent), 45000-53000
Steam / PC gamingTCP27014-27050
Steam / PC gamingUDP27000-27031, 4380
# Example port forwarding rule set, entered one row at a time
# in your router's Virtual Server / Port Forwarding menu

Rule Name: PS5-NAT-TCP
Protocol: TCP
External Port: 3478-3480
Internal Port: 3478-3480
Internal IP: 192.168.1.50

Rule Name: PS5-NAT-UDP
Protocol: UDP
External Port: 3478-3479
Internal Port: 3478-3479
Internal IP: 192.168.1.50

Rule Name: Xbox-NAT-UDP
Protocol: UDP
External Port: 88,500,3074,3544,4500
Internal Port: 88,500,3074,3544,4500
Internal IP: 192.168.1.51

Save the rules, reboot the router, then reboot the console and rerun the NAT test. If you’re managing a PC that also connects an Xbox controller for testing input, our guide on connecting an Xbox controller to PC covers pairing separately from any of this network configuration, so you don’t need to touch these router settings again for controller issues.

Step 6: DMZ Mode as a Fallback

DMZ (Demilitarized Zone) mode forwards every unclaimed inbound port straight to one device, bypassing your firewall’s port filtering entirely for that device. It’s the most reliable way to force Open NAT when manual port forwarding still doesn’t work, but it also removes a layer of protection from whatever device you point it at, so it should be a last resort, not a default setting.

If you use it, point DMZ at your console’s reserved IP, not your PC, and only enable it while actively troubleshooting. Turn it off once you’ve confirmed Open NAT and switched back to your manual port forwarding rules, since those are far safer for anything connected to online banking apps, browsers, or file shares on the same network.

When DMZ Is Worth the Tradeoff

DMZ makes sense as a temporary diagnostic tool: if a console reaches Open NAT under DMZ but not under manual forwarding, that tells you specific ports are being blocked somewhere else, often by an overzealous firewall setting or an ISP-side restriction rather than your local router config. It’s a good way to isolate the actual point of failure before you spend another 20 minutes re-entering port rules.

Step 7: Set Up QoS to Kill Lag Spikes

Open NAT solves connection failures, but it doesn’t stop a household member’s 4K stream or a Steam download from stealing bandwidth mid-match. Quality of Service (QoS) settings let you tell the router which traffic gets priority when the network is under load. Most routers group this under Adaptive QoS, Smart Connect, or Traffic Control.

According to Netgear’s own QoS documentation, properly configured QoS prioritizes latency-sensitive traffic like gaming and video calls ahead of bulk downloads, without capping the total bandwidth those other devices get once the priority traffic has what it needs. In practice, that means setting your console or gaming PC as the top priority device, and, if your router supports it, tagging game traffic ports specifically rather than the whole device.

# Example QoS priority rule (field names vary by router UI)

Rule Name: Console-Gaming-Priority
Priority Level: Highest
Target Device: 192.168.1.50 (PS5), 192.168.1.51 (Xbox)
Bandwidth Guarantee: 15 Mbps down / 5 Mbps up minimum
Applies To: Ports 3074, 3478-3480, 88, 500, 4500

Rule Name: Background-Downloads
Priority Level: Lowest
Target Device: All other devices
Bandwidth Cap: Unrestricted when idle, throttled under load

Properly tuned QoS can cut in-home ping variance by a noticeable margin during peak household usage, since the router stops letting a game download saturate the upload channel your matchmaking traffic depends on. It won’t fix ISP-side congestion or server-distance latency, but it removes the most common self-inflicted lag source: your own network.

Step 8: Fix Double NAT and CGNAT

If your NAT type still won’t budge after port forwarding and DMZ, the problem usually isn’t your router at all — it’s an extra router in the chain. Double NAT happens when your ISP’s modem/router combo runs its own NAT layer in front of your personal router, so port forwarding rules on your router never actually reach the internet.

# Diagnosing double NAT with a traceroute
tracert 8.8.8.8          # Windows
traceroute 8.8.8.8        # macOS/Linux

# Example output showing double NAT (two private-IP hops before
# leaving your network):
  1  192.168.1.1     1 ms   <- your router
  2  192.168.0.1     3 ms   <- ISP modem/router (this is the problem)
  3  10.20.30.1      8 ms   <- ISP core network
  4  142.250.72.14  14 ms   <- first public hop

The fix is putting your ISP’s modem/router combo into bridge mode, which disables its own NAT and routing functions and lets your personal router handle everything, including the port forwarding rules you already set up. Every major ISP router supports bridge mode, though the menu name varies (some call it IP Passthrough instead). Once bridge mode is on, reboot both devices in order — modem first, then router — and rerun your NAT test.

CGNAT (Carrier-Grade NAT) is a different problem, and one you can’t fix from your router at all. It happens when your ISP shares one public IP across many customers at the network level, which is common on some cable and most 5G home internet plans. If your public IP from Step 1’s curl command doesn’t match what a site like Speedtest.net reports as your connection’s IP, you’re likely behind CGNAT, and the only real fixes are requesting a dedicated public IP from your ISP (sometimes a paid add-on) or switching providers.

Step 9: Verify Open NAT on PS5, Xbox, Switch, and PC

Rerun the NAT test on every device from Step 1. Each platform should now report Open (or Type 1 on PlayStation). If one device is fixed but another isn’t, double-check that its static IP reservation from Step 3 actually took effect, since a device that picked up a different DHCP address will have zero port forwarding rules pointed at it.

# Example PS5 test result after a successful fix
Test Internet Connection: Passed
NAT Type: Type 1 (Open)
Download Speed: 412 Mbps
Upload Speed: 38 Mbps

# Example Xbox test result after a successful fix
Network connection: Connected
NAT type: Open
Xbox Live: All services running

If a specific game still shows connection errors even with an Open NAT type at the platform level, that’s usually a per-title server issue rather than a network problem on your end, since the console-level NAT test only confirms your router configuration, not the health of that specific game’s matchmaking servers.

Step 10: Lock In Wired or Wi-Fi 6E/7 for Stability

NAT type and QoS solve connection and prioritization problems, but a weak Wi-Fi signal still causes packet loss and jitter no router setting can fully mask. Ethernet remains the most reliable option for any console that sits near the router. For devices that can’t be wired, current Wi-Fi 6E and Wi-Fi 7 routers use the less congested 6 GHz band specifically to reduce the interference that causes intermittent lag spikes, something the Wi-Fi Alliance designed the 6E certification around.

Current router options with dedicated gaming QoS features (2026 pricing)
RouterWi-Fi StandardPriceWired PortsGaming QoS
TP-Link Archer BE550Wi-Fi 7, 9.2 Gbps$1504x 2.5 GbpsBasic traffic prioritization
ASUS RT-BE96UWi-Fi 7 (BE19000)~$350Dual 10 GbpsAdaptive QoS, no subscription
TP-Link Archer GE800Wi-Fi 7, gaming-tuned~$350Multi-gig + dedicated gaming portQoS acceleration, game server routing
Netgear Nighthawk RS700SWi-Fi 7, 19 Gbps$700Dual 10 GbpsDynamic QoS

None of these are required to fix NAT type, which works on essentially any router. They matter if you’re also trying to cut wireless latency variance on a Steam Deck or a Switch 2 that can’t be wired to the router directly, or if you’re running a household with a PS5, an Xbox, and a gaming PC all pulling bandwidth at once.

Common Pitfalls When Setting Up a Gaming Router

A handful of mistakes account for most failed setups. Here’s what trips people up most often:

  • Skipping the static IP reservation. Port forwarding rules point at an IP address, not a device name. If DHCP reassigns that IP, every rule you entered stops working silently.
  • Forwarding ports to the wrong device. It’s easy to copy an IP from an old screenshot or guide and forward PS5 ports to what’s actually your Xbox’s reserved address.
  • Leaving DMZ mode on permanently. It’s a useful diagnostic tool, not a permanent setting, since it strips firewall protection from whatever device it targets.
  • Not rebooting after changes. Most routers cache NAT and firewall rule tables and won’t apply new port forwards or QoS rules until you reboot, not just save.
  • Assuming UPnP failure means a dead end. UPnP not working is common and just means moving to manual forwarding, not that your NAT type is unfixable.
  • Ignoring double NAT. If your ISP’s modem/router combo is still routing traffic, no amount of port forwarding on your personal router will matter.
  • Testing NAT type before the console fully reboots. A cold boot, not sleep or rest mode, is required for most consoles to properly re-request their network state after a router change.

Troubleshooting Guide

These are the most common problems people run into after following the steps above, along with the fix for each.

  • NAT type still shows Strict after port forwarding. Confirm the static IP reservation actually applied by checking the console’s current IP against what you entered in the router, then confirm the rule’s protocol (TCP vs UDP) matches what the platform requires.
  • UPnP toggle is on but doesn’t seem to do anything. Some ISP-provided routers disable UPnP at the firmware level regardless of the toggle state. Try manual port forwarding instead, or check for a firmware update that restores the feature.
  • Public IP from curl doesn’t match the router’s WAN IP. This confirms double NAT or CGNAT. Check whether your ISP modem supports bridge mode first, and if it doesn’t, call your ISP about CGNAT and a dedicated IP option.
  • Port forwarding works for PS5 but not Xbox on the same router. Each platform needs its own rule set with its own ports, forwarded to its own reserved IP. A rule for one console never covers another.
  • NAT type resets to Moderate after a router reboot. DHCP reservations sometimes need to be re-applied after a firmware update wipes custom settings. Check your reservation list is intact before re-entering port rules from scratch.
  • QoS settings aren’t actually reducing lag spikes. Confirm the QoS rule targets the correct reserved IP and that “Highest Priority” is actually set on the gaming device rather than left on a default profile that doesn’t apply.
  • DMZ mode gets Open NAT but manual forwarding doesn’t. This usually means one or more ports in your manual rule set are wrong or missing. Recheck the exact port list for your platform against Step 5’s table.
  • Switch 2 reports Type 2 or 3 even with Open NAT confirmed on PS5. Nintendo’s port requirements differ from PlayStation’s, and title-specific UDP ranges vary by game, so a rule set copied from PS5 config won’t cover Switch traffic.
  • Wi-Fi-connected console has an Open NAT type but still lags in matches. That’s a signal-quality issue, not a NAT issue. Move the device closer to the router, switch to the 5 GHz or 6 GHz band, or run an Ethernet cable if possible.
  • Port forwarding rules disappear after a firmware update. Some router manufacturers reset custom NAT and QoS tables during major firmware upgrades even when the update notes don’t mention it. Export a settings backup before applying any firmware update, not just after finishing your setup.
  • Two people in the same household both report Strict NAT despite different consoles. This points to a router-wide issue rather than a per-device one, most often an ISP gateway stuck in double NAT or a firewall setting like SPI (Stateful Packet Inspection) set too aggressively across the whole network.

Advanced Tips for Competitive Setups

Once the basics are working, a few additional settings squeeze out more consistency for competitive play. Creating a separate SSID or VLAN dedicated to gaming devices keeps smart home traffic, laptops, and streaming boxes from ever competing for airtime with your console in the first place, which is more effective than QoS alone on a crowded 2.4 GHz band. Most routers with guest network support can repurpose that same feature for a gaming-only network instead.

Mesh Wi-Fi systems complicate NAT setup slightly, since port forwarding rules need to be entered on the main router node, not the satellite units, and DHCP reservations only work reliably when the whole mesh is running in router mode rather than access-point mode. If you’re running a mesh system with a separate modem, check that only one device in the chain is handling NAT and DHCP, since mesh systems left in router mode alongside an ISP gateway in router mode create the exact double NAT problem covered in Step 8.

For anyone running a home server or NAS alongside their consoles, the same admin panel you used for gaming ports also controls forwarding for services like Plex or a self-hosted game backup library, covered in our NAS comparison guide. Keep gaming-related rules and file-sharing rules in clearly labeled separate entries so troubleshooting one doesn’t require you to untangle the other.

Finally, back up your router configuration once everything is working. Most admin panels have a Backup Settings or Export Configuration option under System or Administration. Save that file somewhere outside the router itself, since a factory reset, firmware update gone wrong, or a full power outage can wipe DHCP reservations and port forwarding rules without warning, and rebuilding all of this from memory is far slower than restoring a saved config file. If your setup also spans a home server rack, the same cable discipline covered in our PC cable management guide makes it far easier to trace which Ethernet run feeds which console when something breaks at 11 p.m. before a ranked session.

Keeping the Setup Working After Router or ISP Changes

A working NAT and QoS setup can break for reasons that have nothing to do with anything you did. ISPs occasionally swap out equipment, push firmware updates to rented modems remotely, or change how their network handles CGNAT assignments, and any of those can silently undo bridge mode or reset a gateway to factory defaults. If your NAT type suddenly regresses after weeks of working fine, the fastest diagnostic path is repeating Step 1’s public IP check before touching any router settings, since a changed WAN IP or a reappeared double NAT hop tells you immediately whether the problem is on your side or your provider’s.

Swapping to a new router entirely means redoing the DHCP reservations and port forwarding rules from scratch unless the new router can import a config file from the old one, which is rare across different brands. Budget the same 15 to 45 minutes from the prerequisites section any time you replace hardware, and keep this guide bookmarked rather than trying to remember the exact port list for four different platforms months later.

A Complete Working Setup: Full Config Example

Here’s what a finished setup looks like end to end for a household running a PS5, an Xbox Series X, and a gaming PC on the same network, after working through every step above.

ROUTER: Static IP reservations
  PS5           -> 192.168.1.50
  Xbox Series X -> 192.168.1.51
  Gaming PC     -> 192.168.1.53

ROUTER: Port forwarding rules
  PS5-TCP   TCP  3478-3480 -> 192.168.1.50
  PS5-UDP   UDP  3478-3479 -> 192.168.1.50
  XBOX-TCP  TCP  3074      -> 192.168.1.51
  XBOX-UDP  UDP  88,500,3074,3544,4500 -> 192.168.1.51
  STEAM-UDP UDP  27000-27031,4380      -> 192.168.1.53

ROUTER: QoS
  Highest priority: 192.168.1.50, 192.168.1.51 (consoles)
  Medium priority:  192.168.1.53 (PC, gaming hours only)
  Lowest priority:  all other devices

ROUTER: WAN
  Double NAT check: Passed (single hop before public IP)
  Bridge mode on ISP gateway: Enabled

RESULT
  PS5 NAT Type: Open (Type 1)
  Xbox NAT Type: Open
  Ping variance during household peak load: reduced
  Config backup saved: router-config-2026-08.cfg

That configuration is the whole project: static IPs, port rules tied to those IPs, QoS layered on top, and the double NAT check confirming your personal router, not your ISP’s gateway, is the one actually handling traffic. Every step in this tutorial builds toward exactly that end state, and once it’s in place it typically survives router reboots and console updates without needing to be touched again. Anyone also running PS5 Remote Play on the same network benefits directly, since a clean Open NAT and tuned QoS profile is exactly what keeps a remote streaming session from stuttering when someone else in the house starts a download.

Frequently Asked Questions

Do I need to buy a new router just to fix my NAT type?
No. Port forwarding, UPnP, and DMZ mode are standard features on essentially every consumer router made in the last several years. A new router only helps if you also want better QoS granularity, Wi-Fi 6E/7 speeds for wireless consoles, or more wired ports.

Why does my NAT type keep reverting to Moderate or Strict?
This almost always means your console’s IP address changed and no longer matches your port forwarding rules. Set a static DHCP reservation as covered in Step 3, and the fix should hold permanently.

Is DMZ mode safe to leave on all the time?
It’s not recommended. DMZ removes your router’s firewall filtering for whatever device it’s pointed at, so it should be used to diagnose problems, then turned off in favor of specific port forwarding rules once you confirm what’s working.

What’s the difference between UPnP and manual port forwarding?
UPnP lets your console or PC request ports automatically without you entering anything, and it works for most people. Manual port forwarding gives you full control over exactly which ports open and where they point, which matters when UPnP is disabled by your router’s firmware or when you want tighter security.

How do I know if I’m behind CGNAT?
Compare your public IP from a command-line check against what an external site like Speedtest.net reports. If your router’s WAN IP is a private-range address (like 100.64.x.x or a second 192.168.x.x network) instead of a real public IP, you’re behind CGNAT, and no router setting can fix that from your end.

Will QoS settings slow down my other devices?
Properly configured QoS only limits other traffic when the network is actually under load. When nothing else is competing for bandwidth, your other devices get full speed regardless of the priority rules in place.

Can I forward the same ports for two consoles at once?
No. Each port forwarding rule points to one internal IP address. If two consoles need the same port, you’ll need to either alternate usage or, on routers that support it, remap one console’s port to a different external port while keeping the internal port the same.

Does fixing NAT type actually lower my ping?
Not directly. NAT type affects whether a connection can be established at all and how it’s routed, while ping is mostly determined by physical distance to game servers and your ISP’s routing. What Open NAT does is remove the failed-connection and server-relay overhead that a Strict or Moderate NAT type adds on top of your baseline ping.

Related Coverage

Nadia Dubois

Nadia Dubois

AI & Innovation Editor

Nadia Dubois is the AI & Innovation Editor at Tech Insider, where she tracks the rapid evolution of artificial intelligence, from foundation models to real-world enterprise deployment. She previously covered AI and startups for La Tribune and contributed to MIT Technology Review's European coverage. Nadia specializes in generative AI, AI regulation, and the intersection of technology and European industrial policy. She holds a dual degree in Computational Linguistics and Journalism from Sciences Po Paris.

View all articles