Home NetworkingHow to Configure Wan Step by Step
How to Configure Wan Step by Step

What you need before you start

Gather this info from your internet service provider (ISP) and from your equipment manual. That will save time and avoid guesswork.

  • Connection type (DHCP, Static IP, PPPoE, L2TP/PPTP, or fiber/bridge)
  • Any required credentials (PPPoE username/password, or static IP, subnet mask, gateway)
  • VLAN tag if the ISP requires it (common for fiber or IPTV setups)
  • Modem and router (or a single gateway device) and appropriate cables
  • Router admin username and password (default is usually on the router label)

Quick physical setup

Make the basic connections before changing settings in the router UI.

  1. Turn off the modem and router.
  2. Connect the modem to the ISP line (phone jack, fiber ONT, or coax) per the ISP instructions.
  3. Use an Ethernet cable to connect the modem’s LAN port (or ONT) to the router’s WAN (Internet) port.
  4. Power on the modem, wait until it is fully online, then power on the router.

Access the router administration

Open a browser from a device connected to the router (wired is best for initial setup).

  1. Enter the router IP (common defaults: 192.168.0.1, 192.168.1.1, or check the device label).
  2. Log in with the admin credentials. If this is the first setup, change the default password now.
  3. Locate the Internet, WAN, or Connection Type section in the admin interface.

Step-by-step: configure common WAN connection types

1) DHCP (dynamic IP)

Most consumer ISPs use DHCP. The router requests an ip address automatically.

  1. Choose Connection Type: DHCP / Automatic IP.
  2. If available, enable “Clone MAC” only if the ISP binds service to a MAC address (useful when replacing a router).
  3. Save settings and check WAN status. You should see a public IP assigned.

2) Static IP

Use the exact values the ISP provided: IP address, subnet mask, gateway, and DNS.

  1. Select Connection Type: Static / Manual.
  2. Enter IP address, subnet mask (or prefix length), gateway, and primary/secondary dns.
  3. Save and confirm the WAN shows the static address. Test by visiting a public site or pinging 8.8.8.8.

3) PPPoE

Often used for DSL connections. You’ll need a username and password from the ISP.

How to Configure Wan Step by Step

How to Configure Wan Step by Step
What you need before you start Gather this info from your internet service provider (ISP) and from your equipment manual. That will save time and avoid guesswork. Connection type (DHCP,…
Computer Security

  1. Choose PPPoE as the connection type.
  2. Enter the PPPoE username and password supplied by the ISP.
  3. Leave service name blank unless specified. Save and connect.
  4. Check the router’s status page , it should show an established PPP session and a public IP.

4) VLAN tagging and ISP-specific options

If your ISP requires VLAN tagging (common with fiber or IPTV), set the VLAN ID on the WAN interface.

  • Enable VLAN on the WAN interface and enter the numeric tag supplied by the ISP (e.g., 101).
  • Select the connection type (DHCP/PPPoE) after adding VLAN if needed.
  • Some routers use separate settings for voice or TV services,follow ISP guidance.

Advanced WAN settings worth checking

  • MTU: Usually 1500 for Ethernet. For PPPoE try 1492. If you see fragmentation, lower it (e.g., 1450) and test.
  • DNS: Use ISP DNS or public DNS (8.8.8.8, 1.1.1.1) for performance/privacy as you prefer.
  • NAT: Most home routers use NAT by default. For port forwarding or hosting services, configure port forwarding or DMZ.
  • Firewall and remote management: Disable remote admin access unless you need it. Keep the firewall enabled.

Command-line example for small routers (Cisco IOS)

These show the minimal commands for a DHCP or static WAN on a Cisco router.


! DHCP on interface
interface GigabitEthernet0/0
ip address dhcp
ip nat outside
no shutdown
! Static IP on interface
interface GigabitEthernet0/0
ip address 203.0.113.10 255.255.255.252
ip nat outside
no shutdown
! Default route to ISP
ip route 0.0.0.0 0.0.0.0 203.0.113.9

How to test the connection

  • Check the router’s WAN status page for a public IP and connection uptime.
  • From a client device, open a browser and visit a reliable site (e.g.,
  • Ping a public IP (ping 8.8.8.8) to test basic network reachability.
  • Use traceroute to identify where packets stop if there’s no connectivity.

Troubleshooting tips

  • No WAN IP: power-cycle modem then router, ensure modem is fully online before router boots.
  • Authentication errors for PPPoE: recheck username/password, try a modem/router reboot, confirm credentials with ISP.
  • Wrong VLAN: verify the VLAN ID with ISP; some connections use tagged VLANs for Internet service.
  • Intermittent drops: check cables, firmware updates, and the modem’s logs. Run a speed test and compare to your plan.
  • Still down: contact your ISP,there may be a service or provisioning issue on their side.

Security and maintenance

  • Change the router admin password from defaults and use strong credentials.
  • Keep firmware up to date to fix bugs and security issues.
  • Disable remote administration unless you specifically need it and secure any remote access with strong auth.
  • Enable logs and periodically review WAN events for unusual activity.

Final summary

Configuring a WAN connection is mostly a matter of knowing the ISP’s requirements, plugging devices together, and entering the right settings in the router. Start with the physical setup, log into the router, choose the connection type (DHCP, Static, PPPoE), set any VLAN or MTU values required, and save. Test connectivity, use traceroute and pings for troubleshooting, and keep security in mind by changing default passwords and updating firmware. If problems persist, contact the ISP with the details you’ve gathered.

You may also like