Network tools

This page lists various network tools. ping and ip are covered by Network configuration.

Traceroute

Traceroute is a tool to display the path of packets across an IP network.

There are several implementations available:

Netcat

See also Wikipedia:Netcat.

A more complex alternative is socat.

Whois

See also Wikipedia:WHOIS.

inetd

Arch Linux does not have inetd but you can instead use systemd or xinetd (xinetd).

gollark: ```pythonimport itertoolschars = [chr(x) for x in range(32, 126)]chars.extend(["\t", "\n"])def generate_for_length(length): return map(lambda chars: "".join(chars),itertools.combinations(chars, length))def generate(): for i in itertools.count(): for s in generate_for_length(i): yield sfor x in generate(): print(x)```<@!330678593904443393>
gollark: YOUR CODE MUST BE BAD.
gollark: What if we try generating random programs in *your* language?
gollark: I wonder how to do this *efficiently*...
gollark: Ah...

See also

This article is issued from Archlinux. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.