2021-11-01

Windows acting as a router between two interfaces

This is a registry merge, and it is WAY stale.  It's many years ago that I researched this, and memory serves, this works.  Passing traffic THROUGH a Windows server(regular windows too?) between two network interfaces, perhaps wired to wireless, even if the wireless is USB-attached.


==================
 Windows Registry Editor Version 5.00


[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters]
"IPEnableRouter"=dword:00000001

No comments:

Post a Comment

Script to see network interface connection speed

cat network-speed #!/usr/bin/bash # ethtool enp2s0 | grep Speed ethtool $1 | grep Speed # mii-tool -v enp2s0 mii-tool -v $1   network-speed ...