Documentation/devtools/maemo5/iputils

(New page: == Description == iputils is a small collection of TCP/IP related utilities. * ''ping'': is already provided on the device by BusyBox and it's a tool to monitor and test network function...)
Line 45: Line 45:
[[Documentation/devtools/maemo5/netcat|netcat]], [[Documentation/devtools/maemo5/tcpdump|tcpdump]], [[Documentation/devtools/maemo5/traceroute|traceroute]]
[[Documentation/devtools/maemo5/netcat|netcat]], [[Documentation/devtools/maemo5/tcpdump|tcpdump]], [[Documentation/devtools/maemo5/traceroute|traceroute]]
 +
 +
[[Category:Devtools]]
 +
[[Category:Fremantle]]

Revision as of 11:14, 12 February 2010

Contents

Description

iputils is a small collection of TCP/IP related utilities.

  • ping: is already provided on the device by BusyBox and it's a tool

to monitor and test network functionality.

  • arping: sends ARP requests to a host.
  • tracepath: trace a path to a host discovering MTU along the

way. This is similar to [traceroute], but does not require superuser rights or offer fancy options.

Packages

source: iputils

binary: iputils-ping, iputils-arping, iputils-tracepath

Usage Examples

To test if a host is in the network and responding to ping:

# ping host.name.net

Send four ARP requests to host:

# arping -c 4 host.name.net

Discover the path to www.maemo.org:

# tracepath www.maemo.org

Links

[arping man page](/development/documentation/man_pages/arping.html)

[tracepath man page](/development/documentation/man_pages/tracepath.html)

See Also

netcat, tcpdump, traceroute