diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 07:42:04 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 07:42:04 +0000 |
commit | 0d47952611198ef6b1163f366dc03922d20b1475 (patch) | |
tree | 3d840a3b8c0daef0754707bfb9f5e873b6b1ac13 /libdnet-stripped/INSTALL | |
parent | Initial commit. (diff) | |
download | nmap-0d47952611198ef6b1163f366dc03922d20b1475.tar.xz nmap-0d47952611198ef6b1163f366dc03922d20b1475.zip |
Adding upstream version 7.94+git20230807.3be01efb1+dfsg.upstream/7.94+git20230807.3be01efb1+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'libdnet-stripped/INSTALL')
-rw-r--r-- | libdnet-stripped/INSTALL | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/libdnet-stripped/INSTALL b/libdnet-stripped/INSTALL new file mode 100644 index 0000000..6870be5 --- /dev/null +++ b/libdnet-stripped/INSTALL @@ -0,0 +1,59 @@ + +*BSD, MacOS X, Linux +-------------------- + +./configure && make + +Solaris, IRIX, BSD/OS, HP-UX, Tru64 +----------------------------------- + +For firewall support, install Darren Reed's IP Filter package: + + http://coombs.anu.edu.au/~avalon/ + +For tunnel support on Solaris, install the Universal TUN/TAP Driver: + + http://vtun.sourceforge.net/tun/ + +Unixware, AIX +------------- + +These ports are incomplete. If anyone can set me up with legitimate +root access to these platforms, it would be most appreciated. :-) + +Windows 2000/XP +--------------- + +For raw Ethernet sending, install the WinPcap driver and DLLs, and +extract their developer pack to a build directory: + + http://winpcap.polito.it/install/default.htm + +# XXX - unsupported for now +# For tunnel interface support, install the OpenVPN "TAP-Win32 Virtual +# Ethernet Adapter" component (their Windows installer will let you +# install it alone): +# +# http://openvpn.sourceforge.net/ + +For firewall support, install HSC's PktFilter service: + + http://www.hsc.fr/ressources/outils/pktfilter/index.html.en + +Most Windows developers should just use the libdnet developer's pack +(with MinGW and MSVC++ libraries) instead of building it themselves. +But for those who really want to know... + +To build a MinGW native library (under Cygwin+MinGW): + + ./configure && make + +To build a Microsoft Visual C++ native library and Python module +(again, under Cygwin+MinGW): + + ./configure + cd python && C:/Python23/python.exe setup.py build + cd ../src && lib /out:dnet.lib *.obj + + +# $Id: INSTALL 590 2005-02-15 07:38:19Z dugsong $ |