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
Complete Network Setup Guide
📋 Topics Covered
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
- Open Command Prompt
-
Type:
ipconfig - Look for:
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
- Connect to router via Ethernet cable (default WiFi password on router)
-
Open browser:
http://192.168.1.1orhttp://192.168.0.1 - Login with default credentials (admin/admin or from router manual)
- Change admin password immediately
- Find Wireless/WiFi settings section
CONFIGURE WiFi Name & Security
In router admin panel:
- WiFi Name (SSID): Use clear, professional name
- Security: Select WPA3 (or WPA2 if older devices)
- Password: Use strong password (12+ chars, mix of upper/lower/numbers/symbols)
- WiFi Channel: Auto or manually choose 1, 6, or 11 (no interference)
- 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:
- Settings → Network & Internet → VPN
- Click "Add VPN"
- VPN Provider: "Windows (built-in)"
- Connection name: [company name] VPN
- Server name or address: [from IT]
- VPN type: [protocol from IT - usually L2TP or IKEv2]
- Type of sign-in info: Username and password
- Enter username and password
- Click "Save"
CONNECT Using VPN
- Click network icon (system tray bottom-right)
- Click "VPN" section
- Select your VPN connection
- Click "Connect"
- Wait for "Connected" status
- You should see VPN icon in system tray when active
TROUBLESHOOT VPN Connection Issues
VPN won't connect:
- Verify internet connection is working
- Check username and password are correct
- Restart computer
- Update Windows
- 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
- Right-click "This PC" or "My Computer" → Properties
- Click "Advanced system settings" (left side)
- Click "Remote" tab
- Under Remote Desktop: check "Allow remote connections to this computer"
- Uncheck "Allow only from computers running Remote Desktop with Network Level Authentication" (if older OS)
- Click "Apply" → "OK"
FIND Your Computer's Name
- Right-click "This PC" → Properties
- Find "Computer name" (e.g., DESKTOP-ABC1234)
- Share this with person who will connect remotely
CONNECT Using Remote Desktop
From another computer:
- Open "Remote Desktop Connection" (search for it)
- Enter computer name or IP address
- Click "Connect"
- Enter username and password when prompted
- 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:
- Open Command Prompt
-
Type:
ping 8.8.8.8 - If you get "Reply from": internet is working
- If you get "Request timed out": connection issue
CHECK DNS Resolution
- Open Command Prompt
-
Type:
nslookup google.com - Should return IP address (DNS working)
- If no address returned: DNS problem
TRACE Network Route
- Open Command Prompt
-
Type:
tracert google.com - Shows network path to destination
- Identifies where connection fails
RESET Network Settings
If all else fails:
- Settings → Network & Internet → Status
- Scroll down → "Network troubleshooter"
- OR Settings → System → Recovery → Reset this PC
- 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
- • Windows 10/11 Setup Guide
- • Common IT Issues Troubleshooting
- • Network Security Best Practices
- • VPN Provider Comparison
🛠️ Useful Resources
- • Speedtest - Internet speed test
- • Whoami - Check public IP
- • Advanced IP Scanner - Network scanning
- • Wireshark - Network analysis