IT Support Documentation

Network & Remote Access Setup Guide

A complete guide for setting up network infrastructure, VPN, remote desktop access, and troubleshooting connectivity issues.

Project Type

Technical documentation for network setup and remote access configuration.

Target Audience

Network administrators, IT support staff, and remote workers.

Coverage

Network VPN Remote Desktop

Complete Network Setup Guide

📋 Topics Covered

Network Basics & IP Addressing
WiFi Network Configuration
VPN Setup & Connection
Remote Desktop Protocol (RDP)
Network Troubleshooting
Connectivity Diagnostics

1. Network Basics & IP Addressing

Understanding Network Fundamentals

📌 IP Address Basics

IPv4 Format: 192.168.1.100 (four numbers separated by dots, each 0-255)

Private IP Ranges:

  • 10.0.0.0 to 10.255.255.255
  • 172.16.0.0 to 172.31.255.255
  • 192.168.0.0 to 192.168.255.255

What you need to know: Used for local networks, not accessible from internet

📌 Subnet Mask

Determines which part of IP is network, which is device.

Common Subnet Masks:

  • 255.255.255.0 (Class C - home/small office)
  • 255.255.0.0 (Class B - larger network)

Check Your Network Configuration

  1. Open Command Prompt
  2. Type: ipconfig
  3. Look for:
IPv4 Address: 192.168.1.100
Subnet Mask: 255.255.255.0
Default Gateway: 192.168.1.1
DNS Servers: 8.8.8.8

2. WiFi Network Configuration

SETUP Initial Router Configuration

  1. Connect to router via Ethernet cable (default WiFi password on router)
  2. Open browser: http://192.168.1.1 or http://192.168.0.1
  3. Login with default credentials (admin/admin or from router manual)
  4. Change admin password immediately
  5. Find Wireless/WiFi settings section

CONFIGURE WiFi Name & Security

In router admin panel:

  1. WiFi Name (SSID): Use clear, professional name
  2. Security: Select WPA3 (or WPA2 if older devices)
  3. Password: Use strong password (12+ chars, mix of upper/lower/numbers/symbols)
  4. WiFi Channel: Auto or manually choose 1, 6, or 11 (no interference)
  5. Save changes and restart router

BEST PRACTICE WiFi Security Tips

  • ✓ Always enable security (WPA2/WPA3)
  • ✓ Change default admin password
  • ✓ Update router firmware regularly
  • ✓ Hide SSID if maximum security needed
  • ✓ Enable guest network for visitors (separate from main network)
  • ✗ Avoid: Open networks, weak passwords, default credentials

3. VPN Setup & Connection

VPN (Virtual Private Network) encrypts your connection for security and privacy

Why Use VPN?

  • Secure connection on public WiFi
  • Access company resources remotely
  • Encrypt all network traffic
  • Hide IP address and location

SETUP Built-in Windows VPN

Get Connection Details from IT:

  • VPN server address
  • Connection name
  • Username and password (or certificate)
  • VPN protocol type

Setup Steps:

  1. Settings → Network & Internet → VPN
  2. Click "Add VPN"
  3. VPN Provider: "Windows (built-in)"
  4. Connection name: [company name] VPN
  5. Server name or address: [from IT]
  6. VPN type: [protocol from IT - usually L2TP or IKEv2]
  7. Type of sign-in info: Username and password
  8. Enter username and password
  9. Click "Save"

CONNECT Using VPN

  1. Click network icon (system tray bottom-right)
  2. Click "VPN" section
  3. Select your VPN connection
  4. Click "Connect"
  5. Wait for "Connected" status
  6. You should see VPN icon in system tray when active

TROUBLESHOOT VPN Connection Issues

VPN won't connect:

  1. Verify internet connection is working
  2. Check username and password are correct
  3. Restart computer
  4. Update Windows
  5. Contact IT with connection failure details

4. Remote Desktop Protocol (RDP) Setup

RDP allows remote connection to a computer desktop from another location

ENABLE RDP on Your Computer

  1. Right-click "This PC" or "My Computer" → Properties
  2. Click "Advanced system settings" (left side)
  3. Click "Remote" tab
  4. Under Remote Desktop: check "Allow remote connections to this computer"
  5. Uncheck "Allow only from computers running Remote Desktop with Network Level Authentication" (if older OS)
  6. Click "Apply" → "OK"

FIND Your Computer's Name

  1. Right-click "This PC" → Properties
  2. Find "Computer name" (e.g., DESKTOP-ABC1234)
  3. Share this with person who will connect remotely

CONNECT Using Remote Desktop

From another computer:

  1. Open "Remote Desktop Connection" (search for it)
  2. Enter computer name or IP address
  3. Click "Connect"
  4. Enter username and password when prompted
  5. You'll see the remote desktop

SECURITY RDP Best Practices

  • ✓ Use strong passwords (minimum 12 characters)
  • ✓ Only enable RDP when needed
  • ✓ Disable RDP for guest accounts
  • ✓ Use VPN for remote connections when possible
  • ✓ Keep Windows updated for security patches
  • ✗ Avoid: Port forwarding for RDP without VPN

5. Network Troubleshooting

TEST Basic Network Connectivity

Using Command Prompt:

  1. Open Command Prompt
  2. Type: ping 8.8.8.8
  3. If you get "Reply from": internet is working
  4. If you get "Request timed out": connection issue

CHECK DNS Resolution

  1. Open Command Prompt
  2. Type: nslookup google.com
  3. Should return IP address (DNS working)
  4. If no address returned: DNS problem

TRACE Network Route

  1. Open Command Prompt
  2. Type: tracert google.com
  3. Shows network path to destination
  4. Identifies where connection fails

RESET Network Settings

If all else fails:

  1. Settings → Network & Internet → Status
  2. Scroll down → "Network troubleshooter"
  3. OR Settings → System → Recovery → Reset this PC
  4. Keep files and reset network stack

💡 Network Admin Pro Tips

  • • Document all network configurations and changes
  • • Use consistent naming conventions for networks
  • • Always change default router credentials
  • • Keep a network diagram for troubleshooting
  • • Test connectivity before declaring it fixed
  • • Monitor bandwidth for unusual activity
  • • Regular backups of router configuration

⚡ Quick Reference: Useful Commands

ipconfig

View network configuration

ipconfig /all

Detailed network info

ping [IP/domain]

Test connectivity

nslookup [domain]

DNS lookup

tracert [IP/domain]

Trace network route

netstat -an

Network connections

📚 Related Documentation

🛠️ Useful Resources