source: networking/netutils/nmap.xml@ 6d772cc

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 7.10 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 6d772cc was 6d772cc, checked in by Fernando de Oliveira <fernando@…>, 9 years ago
  • Update to wireshark-1.12.7.
  • Update to mpg123-1.22.4.
  • more short descriptions.
  • sddm-0.11.0: reformat.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@16344 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 8.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY nmap-download-http "http://nmap.org/dist/nmap-&nmap-version;.tar.bz2">
8<!-- <!ENTITY nmap-download-ftp "&gentoo-ftp-repo;/nmap-&nmap-version;.tar.bz2">-->
9 <!ENTITY nmap-download-ftp " ">
10 <!ENTITY nmap-md5sum "edfe81f6763223c0a29bfa15a8526e2a">
11 <!ENTITY nmap-size "7.5 MB">
12 <!ENTITY nmap-buildsize "133 MB (additional 1 MB for the tests)">
13 <!ENTITY nmap-time "1.3 SBU (additional 0.1 SBU for the tests)">
14]>
15
16<sect1 id="nmap" xreflabel="Nmap-&nmap-version;">
17 <?dbhtml filename="nmap.html"?>
18
19 <sect1info>
20 <othername>$LastChangedBy$</othername>
21 <date>$Date$</date>
22 </sect1info>
23
24 <title>Nmap-&nmap-version;</title>
25
26 <indexterm zone="nmap">
27 <primary sortas="a-Nmap">Nmap</primary>
28 </indexterm>
29
30 <sect2 role="package">
31 <title>Introduction to Nmap</title>
32
33 <para><application>Nmap</application> is a utility for network exploration
34 and security auditing. It supports ping scanning, port scanning and
35 TCP/IP fingerprinting.</para>
36
37 &lfs77_checked; &gcc5_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>Download (HTTP): <ulink url="&nmap-download-http;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download (FTP): <ulink url="&nmap-download-ftp;"/></para>
46 </listitem>
47 <listitem>
48 <para>Download MD5 sum: &nmap-md5sum;</para>
49 </listitem>
50 <listitem>
51 <para>Download size: &nmap-size;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated disk space required: &nmap-buildsize;</para>
55 </listitem>
56 <listitem>
57 <para>Estimated build time: &nmap-time;</para>
58 </listitem>
59 </itemizedlist>
60
61 <bridgehead renderas="sect3">Nmap Dependencies</bridgehead>
62
63 <bridgehead renderas="sect4">Recommended</bridgehead>
64 <note>
65 <para>
66 These packages are recommended because if they're not installed, the
67 build process will compile and link against its own (often older)
68 version.
69 </para>
70 </note>
71
72 <para role="recommended">
73 <xref linkend="libpcap"/>,
74<!-- <xref linkend="lua"/>, broken with lua-5.3.0-->
75 <xref linkend="pcre"/> and
76 <xref linkend="liblinear"/>
77<!-- This is not recommended, see: http://nmap.org/svn/libdnet-stripped/NMAP_MODIFICATIONS
78 <ulink url="http://code.google.com/p/libdnet/">libdnet</ulink>
79-->
80 </para>
81
82 <bridgehead renderas="sect4">Optional</bridgehead>
83 <para role="optional">
84 <xref linkend="openssl"/>,
85 <xref linkend="pygtk"/> (required for <command>zenmap</command>),
86 <xref linkend="python2"/> (required for <command>ndiff</command>) and
87 <xref linkend="subversion"/> (required for <command>nmap-update</command>)
88 </para>
89
90 <para condition="html" role="usernotes">User Notes:
91 <ulink url="&blfs-wiki;/nmap"/></para>
92
93 </sect2>
94
95 <sect2 role="installation">
96 <title>Installation of Nmap</title>
97
98 <note>
99 <para>
100 This package does not support parallel build.
101 </para>
102 </note>
103
104 <para>Install <application>Nmap</application> by running the following
105 commands:</para>
106
107<screen><userinput>./configure --prefix=/usr --with-liblua=included &amp;&amp;
108make -j1</userinput></screen>
109
110 <para>If you wish to run the test suite, run the following command:</para>
111
112<screen><userinput>sed -i 's/lib./lib/' zenmap/test/run_tests.py</userinput></screen>
113
114 <para>To test the results, issue: <command>make check</command> as the
115 <systemitem class="username">root</systemitem> user. Tests need a
116 graphical session.</para>
117
118 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
119
120<screen role="root"><userinput>make install</userinput></screen>
121
122 </sect2>
123
124 <sect2 role="commands">
125 <title>Command Explanations</title>
126
127 <para><parameter>--with-liblua=included</parameter>: This switch is
128 required to fix compilation with <application>lua</application> 5.3.</para>
129
130 </sect2>
131
132 <sect2 role="content">
133 <title>Contents</title>
134
135 <segmentedlist>
136 <segtitle>Installed Programs</segtitle>
137 <segtitle>Installed Libraries</segtitle>
138 <segtitle>Installed Directories</segtitle>
139
140 <seglistitem>
141 <seg>
142 ncat, ndiff, nmap, nmapfe, nmap-update, nping, uninstall_zenmap,
143 xnmap and zenmap
144 </seg>
145<!-- <seg>/usr/lib/python&python2-version;/site-packages/</seg>-->
146 <seg>
147 None
148 </seg>
149 <seg>
150 /usr/lib/python&python2-majorver;/site-packages/{radialnet,zenmapCore,zenmapGUI},
151 /usr/share/ncat, /usr/share/nmap and /usr/share/zenmap
152 </seg>
153 </seglistitem>
154 </segmentedlist>
155
156 <variablelist>
157 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
158 <?dbfo list-presentation="list"?>
159 <?dbhtml list-presentation="table"?>
160
161 <varlistentry id="ncat">
162 <term><command>ncat</command></term>
163 <listitem>
164 <para>is a utility for reading and writing data across networks from
165 the command line.</para>
166 <indexterm zone="nmap ncat">
167 <primary sortas="b-ncat">ncat</primary>
168 </indexterm>
169 </listitem>
170 </varlistentry>
171
172 <varlistentry id="ndiff">
173 <term><command>ndiff</command></term>
174 <listitem>
175 <para>is a tool to aid in the comparison of Nmap scans.</para>
176 <indexterm zone="nmap ndiff">
177 <primary sortas="b-ndiff">ndiff</primary>
178 </indexterm>
179 </listitem>
180 </varlistentry>
181
182 <varlistentry id="nmap-prog">
183 <term><command>nmap</command></term>
184 <listitem>
185 <para>is a utility for network exploration and security auditing. It
186 supports ping scanning, port scanning and TCP/IP
187 fingerprinting.</para>
188 <indexterm zone="nmap nmap-prog">
189 <primary sortas="b-nmap">nmap</primary>
190 </indexterm>
191 </listitem>
192 </varlistentry>
193
194 <varlistentry id="nmapfe">
195 <term><command>nmapfe</command></term>
196 <listitem>
197 <para>is a symbolic link to <command>zenmap</command>.</para>
198 <indexterm zone="nmap nmapfe">
199 <primary sortas="b-nmapfe">nmapfe</primary>
200 </indexterm>
201 </listitem>
202 </varlistentry>
203
204 <varlistentry id="nmap-update">
205 <term><command>nmap-update</command></term>
206 <listitem>
207 <para>is an updater for Nmap architecture-independent files.</para>
208 <indexterm zone="nmap nmap-update">
209 <primary sortas="b-nmap-update">nmap-update</primary>
210 </indexterm>
211 </listitem>
212 </varlistentry>
213
214 <varlistentry id="nping">
215 <term><command>nping</command></term>
216 <listitem>
217 <para>
218 is an open-source tool for network packet generation, response
219 analysis and response time measurement.
220 </para>
221 <indexterm zone="nmap nping">
222 <primary sortas="b-nping">nping</primary>
223 </indexterm>
224 </listitem>
225 </varlistentry>
226
227 <varlistentry id="uninstall_zenmap">
228 <term><command>uninstall_zenmap</command></term>
229 <listitem>
230 <para>
231 is a Python script to uninstall <command>zenmap</command>.
232 </para>
233 <indexterm zone="nmap uninstall_zenmap">
234 <primary sortas="b-uninstall_zenmap">uninstall_zenmap</primary>
235 </indexterm>
236 </listitem>
237 </varlistentry>
238
239 <varlistentry id="xnmap">
240 <term><command>xnmap</command></term>
241 <listitem>
242 <para>is a symbolic link to <command>zenmap</command>.</para>
243 <indexterm zone="nmap xnmap">
244 <primary sortas="f-xnmap">xnmap</primary>
245 </indexterm>
246 </listitem>
247 </varlistentry>
248
249 <varlistentry id="zenmap">
250 <term><command>zenmap</command></term>
251 <listitem>
252 <para>is a Python based graphical nmap frontend viewer.</para>
253 <indexterm zone="nmap zenmap">
254 <primary sortas="f-zenmap">zenmap</primary>
255 </indexterm>
256 </listitem>
257 </varlistentry>
258
259 </variablelist>
260
261 </sect2>
262
263</sect1>
Note: See TracBrowser for help on using the repository browser.