Net-tools,软件包包含了一些用于控制Linux Kernel的网络子系统的程序。
安装
从发行版的源中安装
#!/bin/bash # Kali GNU/Linux Rolling apt-get install net-tools
使用源码编译安装
参考BLFS/Net-tools-CVS_20101030: http://www.linuxfromscratch.org/blfs/view/7.10/basicnet/net-tools.html
安装的可执行程序
arp
is used to manipulate the kernel’s ARP cache, usually to add or delete an entry, or to dump the entire cache.
ipmaddr
adds, deletes and shows an interface’s multicast addresses.
iptunnel
adds, changes, deletes and shows an interface’s tunnels.
miitool
checks or sets the status of a network interface’s Media Independent Interface (MII) unit.
nameif
names network interfaces based on MAC addresses.
netstat
用于报告网络连接,路由表,接口统计信息。
plipconfig
is used to fine tune the PLIP device parameters, to improve its performance.
rarp
is used to manipulate the kernel’s RARP table.
This program is obsolete.
From version 2.3, the Linux kernel no longer contains RARP support.
For a replacement RARP daemon, see ftp://ftp.dementia.org/pub/net-tools
route
用于操作IP路由表。
slattach
attaches a network interface to a serial line.
This allows you to use normal terminal lines for point-to-point links to other computers.
参考文献