mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-08 06:41:23 -04:00
Improved documentation for network floppy (#3691)
* add man page for nc * fix typo * add man page for arp * add man page for route
This commit is contained in:
parent
050a0ae7f7
commit
b3f3d0a42b
@ -0,0 +1,8 @@
|
||||
NAME
|
||||
arp - Inspect local address resolution
|
||||
|
||||
SYNOPSIS
|
||||
arp
|
||||
|
||||
DESCRIPTION
|
||||
Displays the address of each network interface
|
@ -12,5 +12,5 @@ EXAMPLES
|
||||
Output network status information
|
||||
|
||||
ifconfig bind [address]
|
||||
Binds addnitional address to this device. Address should match [A-Za-z0-9%-]+ and be max 64 characters length
|
||||
Binds additional address to this device. Address should match [A-Za-z0-9%-]+ and be max 64 characters length
|
||||
|
||||
|
@ -0,0 +1,15 @@
|
||||
NAME
|
||||
nc - Connect STDIN and STDOUT to the network
|
||||
|
||||
SYNOPSIS
|
||||
nc [-l] port [addr]
|
||||
|
||||
DESCRIPTION
|
||||
Connect STDIN and STDOUT to a network socket so that data can be received from and sent to that socket via STDIN and STDOUT
|
||||
|
||||
EXAMPLES
|
||||
nc -l 1337
|
||||
Open a socket on port 1337. If another program connects, it can receive from STDIN and send to STDOUT.
|
||||
|
||||
nc 1337 host1
|
||||
Connect to an open socket at address 'host1' on port 1337. The running program can send to STDOUT and receive from STDIN
|
@ -0,0 +1,8 @@
|
||||
NAME
|
||||
route - Show routing information
|
||||
|
||||
SYNOPSIS
|
||||
route
|
||||
|
||||
DESCRIPTION
|
||||
Displays the contents of the routing table
|
Loading…
x
Reference in New Issue
Block a user