ip(3): il protocol
This commit is contained in:
parent
1de9ca2de5
commit
30b2154e75
1 changed files with 39 additions and 4 deletions
43
sys/man/3/ip
43
sys/man/3/ip
|
@ -1,6 +1,6 @@
|
||||||
.TH IP 3
|
.TH IP 3
|
||||||
.SH NAME
|
.SH NAME
|
||||||
ip, esp, gre, icmp, icmpv6, ipmux, rudp, tcp, udp \- network protocols over IP
|
ip, esp, gre, icmp, icmpv6, ipmux, rudp, tcp, udp, il \- network protocols over IP
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.nf
|
.nf
|
||||||
.2C
|
.2C
|
||||||
|
@ -29,6 +29,7 @@ ip, esp, gre, icmp, icmpv6, ipmux, rudp, tcp, udp \- network protocols over IP
|
||||||
.B /net/rudp
|
.B /net/rudp
|
||||||
.B /net/tcp
|
.B /net/tcp
|
||||||
.B /net/udp
|
.B /net/udp
|
||||||
|
.B /net/il
|
||||||
.sp 0.3v
|
.sp 0.3v
|
||||||
.B /net/tcp/clone
|
.B /net/tcp/clone
|
||||||
.B /net/tcp/stats
|
.B /net/tcp/stats
|
||||||
|
@ -461,9 +462,11 @@ The possible items are:
|
||||||
.BR ip ,
|
.BR ip ,
|
||||||
.BR fs ,
|
.BR fs ,
|
||||||
.BR tcp ,
|
.BR tcp ,
|
||||||
|
.BR il ,
|
||||||
.BR icmp ,
|
.BR icmp ,
|
||||||
.BR udp ,
|
.BR udp ,
|
||||||
.BR compress ,
|
.BR compress ,
|
||||||
|
.BR ilmsg ,
|
||||||
.BR gre ,
|
.BR gre ,
|
||||||
.BR tcpwin ,
|
.BR tcpwin ,
|
||||||
.BR tcprxmt ,
|
.BR tcprxmt ,
|
||||||
|
@ -515,7 +518,7 @@ The
|
||||||
.I ip
|
.I ip
|
||||||
device
|
device
|
||||||
supports IP as well as several protocols that run over it:
|
supports IP as well as several protocols that run over it:
|
||||||
TCP, UDP, RUDP, ICMP, GRE, and ESP.
|
TCP, UDP, RUDP, ICMP, IL, GRE, and ESP.
|
||||||
TCP and UDP provide the standard Internet
|
TCP and UDP provide the standard Internet
|
||||||
protocols for reliable stream and unreliable datagram
|
protocols for reliable stream and unreliable datagram
|
||||||
communication.
|
communication.
|
||||||
|
@ -525,8 +528,8 @@ low level error messages and to implement
|
||||||
.IR ping (8).
|
.IR ping (8).
|
||||||
GRE is a general encapsulation protocol.
|
GRE is a general encapsulation protocol.
|
||||||
ESP is the encapsulation protocol for IPsec.
|
ESP is the encapsulation protocol for IPsec.
|
||||||
IL provided a reliable datagram service for communication
|
IL provides a reliable datagram service for communication
|
||||||
between Plan 9 machines over IPv4, but is no longer part of the system.
|
between Plan 9 machines but is now deprecated.
|
||||||
.PP
|
.PP
|
||||||
Each protocol is a subdirectory of the IP stack.
|
Each protocol is a subdirectory of the IP stack.
|
||||||
The top level directory of each protocol contains a
|
The top level directory of each protocol contains a
|
||||||
|
@ -930,6 +933,21 @@ must be executed before performing I/O on the corresponding
|
||||||
.I data
|
.I data
|
||||||
file.
|
file.
|
||||||
.
|
.
|
||||||
|
.SS IL
|
||||||
|
IL is a reliable point-to-point datagram protocol that runs over IPv4.
|
||||||
|
Like TCP, IL delivers datagrams
|
||||||
|
reliably and in order. Also like TCP, a connection is
|
||||||
|
determined by the address and port numbers of the two ends.
|
||||||
|
Like UDP, each read and write transfers a single datagram.
|
||||||
|
.PP
|
||||||
|
IL is efficient for LANs but doesn't have the
|
||||||
|
congestion control features needed for use through
|
||||||
|
the Internet.
|
||||||
|
It is no longer necessary, except to communicate with old standalone
|
||||||
|
.IR fs (4)
|
||||||
|
file servers.
|
||||||
|
Its use is now deprecated.
|
||||||
|
.
|
||||||
.SS GRE
|
.SS GRE
|
||||||
GRE is the encapsulation protocol used by PPTP.
|
GRE is the encapsulation protocol used by PPTP.
|
||||||
The kernel implements just enough of the protocol
|
The kernel implements just enough of the protocol
|
||||||
|
@ -1234,6 +1252,23 @@ datagrams sent
|
||||||
.EE
|
.EE
|
||||||
.PP
|
.PP
|
||||||
Reading
|
Reading
|
||||||
|
.B /net/il/stats
|
||||||
|
returns a list of 6 tagged and newline-separated fields representing:
|
||||||
|
.EX
|
||||||
|
.ft 1
|
||||||
|
.2C
|
||||||
|
.in +0.25i
|
||||||
|
checksum errors
|
||||||
|
header length errors
|
||||||
|
out of order messages
|
||||||
|
retransmitted messages
|
||||||
|
duplicate messages
|
||||||
|
duplicate bytes
|
||||||
|
.in -0.25i
|
||||||
|
.1C
|
||||||
|
.EE
|
||||||
|
.PP
|
||||||
|
Reading
|
||||||
.B /net/gre/stats
|
.B /net/gre/stats
|
||||||
returns a list of 1 tagged number representing:
|
returns a list of 1 tagged number representing:
|
||||||
.EX
|
.EX
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue