You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.
The Windows installer has been changed to check to check for WinPcap/Npcap post install as follows -
if wpcap.dll exists in standard system path
all good
else if wpcap.dll exists in Npcap native path
add npcap native path to PATH
else
inform user to install npcap
add npcap native path to PATH (assuming user will install in native mode, which is the default)
endif
This however doesn't prefer npcap over winpcap at runtime if both are installed
When npcap is installed in native mode, the DLLs are installed in
C:\windows\system32\Npcap\
.But Ostinato always looks at the standard
C:\windows\system32\
only.One workaround is to add
C:\windows\system32\Npcap\
to the%PATH%
env var so that it can find itThe text was updated successfully, but these errors were encountered: