Hi Urgon, thanks for the update! I’m really glad to hear you’ve got the 3D printer reachable on the LAN via DHCPServ that’s a solid step forward. Let's now get the internet sharing working too.
If "Internet Connection Sharing" (ICS) option is missing:
That usually happens when:
-The main adapter is using DHCP and/or connected to a managed network
-Network services required for ICS aren't running
Try These Steps:
- Manually Start ICS Service
-Press Win + R, type services.msc
-Find Internet Connection Sharing (ICS)
-Set Startup type to Automatic
-Click Start, then Apply
- Enable ICS via Command Prompt
Sometimes the GUI won't show it, but you can enable it via command:
Open Command Prompt as Admin and run:
netsh interface set interface "Ethernet" admin=enabled
netsh wlan set hostednetwork mode=allow ssid=MyNet key=Password123
netsh wlan start hostednetwork
For ICS:
netsh interface ip set address "Ethernet 2" static 192.168.137.1 255.255.255.0
netsh interface ip set dns "Ethernet 2" static 8.8.8.8
Or use:
netsh routing ip nat install
netsh routing ip nat add interface "YourMainAdapterName" full
netsh routing ip nat add interface "YourSecondAdapterName" private
- Verify IP Routing is Enabled
-Open Registry Editor (regedit)
-Navigate to:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters
-Set or create IPEnableRouter as DWORD = 1
-Restart PC
Once ICS is working or routing is active:
-Your 3D printer should pick up the gateway (192.168.137.1) from DHCPServ
-Internet access should be routed through your main adapter
Warm regards,
Cherrelyn