Installation guide

Alacritech Accelerator Users Guide: Microsoft Windows Edition 4-9
set REGNET=HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-
11CE-BFC1-08002BE10318}
The ID value returned by slicutil interface list is the same as the registry key
under HKLM\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-
BFC1-08002BE10318} when zero padded to four digits.
So to disable TCP offload (IPv4) on the interface ID 9 (SEN3001), you would first
query it's current state:
C:\Temp> reg query %regnet%\0009 /v *TCPConnectionOffloadIPv4
HKEY_LOCAL_MACHINE\...\0009
*TCPConnectionOffloadIPv4 REG_SZ 1
End of search: 1 match(es) found.
Verify that the change was made as expected.
C:\Temp> reg query %regnet%\0009 /v *TCPConnectionOffloadIPv4
HKEY_LOCAL_MACHINE\...\0009
*TCPConnectionOffloadIPv4 REG_SZ 0
End of search: 1 match(es) found.
Finally, use netsh to reset the interface. This will force the interface to read the up-
dated registry value.
C:\Temp> netsh int set int SEN3001 disable
C:\Temp> netsh int set int SEN3001 enable