The detailed steps that I found that follow along the lines of the answers posted. For some reason I had to set the last digits of my 3 LAN connected computers to x1, .x2 and .x3. Things did not work if I used .192.168.10.1. 192.168.10.2, 192.168.10.3
Had to use 2 digits at end :
192.168.10.11,
192.168.10.22,
192.168.10.33
From ChatGPT
Can 2 computers be LAN connected to a network but access the internet via a separate wifi network
ChatGPT said:
Yes — you
can connect two computers to each other on a
wired LAN while both use a
separate Wi-Fi network for Internet access.
Here’s how it works and how to set it up 👇
🔧 The Goal
- LAN (Ethernet): Used for fast local file sharing, gaming, or data transfer between the two PCs.
- Wi-Fi: Used for Internet access.
✅ How to Set It Up (Windows example)
- Connect the two computers via Ethernet
- Either plug both into a switch/router (no Internet needed)
- Or use a direct Ethernet cable between them (modern computers auto-detect crossover).
- Ensure both PCs are on the same local IP subnet
- For example:
- PC1: 192.168.10.1
- PC2: 192.168.10.2
- Subnet mask: 255.255.255.0
- You can set these manually in the Ethernet adapter’s properties if no router assigns IPs.
- Connect each PC to Wi-Fi(your Internet network as usual).
- Make sure the Wi-Fi connection shows "Internet access."
- Tell Windows which adapter to use for Internet
- Open Network Connections → Adapter settings.
- Press Alt → Advanced → Advanced Settings...
- In the "Adapters and Bindings" list, move Wi-Fi to the top (so it’s the preferred route for Internet traffic).
Alternatively, you can:
- Keep automatic routing but make sure the Ethernet interface has no default gateway — that way, Windows won’t try to use it for Internet.
🧠 What Happens
- All local LAN traffic (to the other computer’s IP) goes through Ethernet.
- All Internet traffic goes through the Wi-Fi adapter.
- Both can operate simultaneously.
⚠️ Tips
- Don’t bridge the Wi-Fi and Ethernet connections unless you intend to share Internet.
- File sharing between PCs still requires that they’re on the same Windows workgroup or have permissions set.
Would you like me to show the
exact Windows settings and commands (IP config and route) to make this work step-by-step?
You said:
How do I do this in win 10
ChatGPT said:
Perfect — here’s exactly how to set up
two Windows 10 computers connected by Ethernet (for LAN) while both use
Wi-Fi for Internet.
🧭 Goal Recap
- Ethernet: Used for fast local file transfer or gaming between the two PCs.
- Wi-Fi: Used for Internet access.
- Both active at the same time, without one interfering with the other.
⚙️ Step-by-Step Setup
1. Connect the computers
- Option A: Plug both into the same Ethernet switch/router (the router doesn’t need Internet).
- Option B: Plug a single Ethernet cable directly between them (modern NICs auto-sense, no crossover cable needed).
2. Give the Ethernet adapters fixed local IP addresses
You’ll assign static IPs so they can "see" each other.
On
each PC:
- Press Windows + R, type ncpa.cpl, press Enter → Network Connections window opens.
- Right-click Ethernet → Properties.
- Click Internet Protocol Version 4 (TCP/IPv4) → Properties.
- Select Use the following IP address and enter:
PC IP address Subnet mask Default gateway
1 192.168.10.1 255.255.255.0 (leave blank)
2 192.168.10.2 255.255.255.0 (leave blank)
- Leave DNS server blank as well.
- Click OK twice to save.
3. Make sure Wi-Fi stays your Internet connection
Your Wi-Fi already has an IP from your router and default gateway (Internet).
To ensure Windows prefers Wi-Fi for Internet:
- In the same Network Connections window, press Alt → Advanced → Advanced Settings...
- Under Connections, drag Wi-Fi to the top of the list.
- Click OK.
That tells Windows to use Wi-Fi as the primary route to the Internet.
4. Verify routing
Open
Command Prompt and type:
route print
You should see:
- A default route (0.0.0.0) pointing to your Wi-Fi adapter (gateway = your router’s IP).
- Routes for 192.168.10.0 subnet via your Ethernet adapter.
If the Ethernet route has a gateway set, remove it (since it should only be local).
5. Test the setup
On
PC 1, open Command Prompt and run:
ping 192.168.10.2
You should get replies → means LAN works.
Then open a browser → Internet still works via Wi-Fi → success!
✅ What You Now Have
- Ethernet: Direct, high-speed local network between the two PCs.
- Wi-Fi: Unaffected Internet access.
- Both active at once with no conflict.
Would you like me to include
file-sharing setup (folder access or mapped drives) between the two PCs as the next step?
You said:
Yes
ChatGPT said:
Excellent 👍 — now that both PCs can "see" each other over Ethernet and still use Wi-Fi for the Internet, here’s how to
set up file sharing between them on Windows 10.
🧩 Step-by-Step: File Sharing Between the Two PCs
1. Make sure both PCs are on the same Workgroup
Usually they are by default, but check:
- Press Windows + Pause/Break → "System" window opens.
- Under Computer name, domain, and workgroup settings, look for Workgroup — it should say WORKGROUP (default).
- If they’re different, click Change settings → Change... → type the same name (e.g. WORKGROUP) → OK → reboot if prompted.
2. Enable Network Discovery and File Sharing
Do this on both PCs:
- Open Control Panel → Network and Sharing Center → Advanced sharing settings.
- Under Private (current profile):
- ✅ Turn on Network discovery
- ✅ Turn on File and printer sharing
- Under All Networks:
- Turn off password-protected sharing if you want easy access without logging in (optional, less secure).
- Otherwise, keep it on and share with user accounts that exist on both PCs.
- Click Save changes.
3. Choose what to share
You can share a whole drive or just a folder.
Option A – Share an existing folder
- Right-click the folder → Properties → Sharing tab.
- Click Advanced Sharing...
- ✅ Check Share this folder.
- Click Permissions → select Everyone and give Read or Full Control as needed.
- Click OK → OK → Close.
Option B – Create a special shared folder
- Example: Create C:\Shared on each PC and share it using the steps above.
4. Access the shared folder from the other PC
You can connect by
computer name or
IP address.
In
File Explorer, type one of these in the address bar:
\192円.168.10.1
or
\\ComputerName
You should see the shared folders appear.
You can drag-drop files or right-click →
Map network drive... to make it a permanent letter (e.g., Z:).
5. Optional: Map a network drive
- Open File Explorer → This PC.
- Click Map network drive on the toolbar.
- Choose a letter and enter the folder path, e.g.
- \192円.168.10.1\Shared
- Check Reconnect at sign-in if you want it to auto-mount.
6. Test
- Copy a small file between the two machines — it should transfer quickly over Ethernet.
- Confirm Internet still works over Wi-Fi (e.g., open a webpage).
✅ You now have:
- Ethernet LAN between two PCs for fast transfers.
- Wi-Fi Internet still active.
- Shared folders you can browse or map easily.