man-pages/man7/ipv6.7

312 lines
8.9 KiB
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" This man page is Copyright (C) 2000 Andi Kleen <ak@muc.de>.
.\" Permission is granted to distribute possibly modified copies
.\" of this page provided the header is included verbatim,
.\" and in case of nontrivial modification author and date
.\" of the modification is added to the header.
.\" $Id: ipv6.7,v 1.3 2000/12/20 18:10:31 ak Exp $
.TH IPV6 7 2007-10-14 "Linux" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
ipv6, PF_INET6 \- Linux IPv6 protocol implementation
.SH SYNOPSIS
.B #include <sys/socket.h>
.br
.B #include <netinet/in.h>
2004-11-03 13:51:07 +00:00
.sp
.IB tcp6_socket " = socket(PF_INET6, SOCK_STREAM, 0);"
.br
2004-11-03 13:51:07 +00:00
.IB raw6_socket " = socket(PF_INET6, SOCK_RAW, " protocol ");"
.br
.IB udp6_socket " = socket(PF_INET6, SOCK_DGRAM, " protocol ");"
.SH DESCRIPTION
Linux 2.2 optionally implements the Internet Protocol, version 6.
This man page contains a description of the IPv6 basic API as
implemented by the Linux kernel and glibc 2.1.
The interface
2004-11-03 13:51:07 +00:00
is based on the BSD sockets interface; see
.BR socket (7).
2004-11-03 13:51:07 +00:00
.PP
The IPv6 API aims to be mostly compatible with the
.BR ip (7)
v4 API.
Only differences are described in this man page.
2004-11-03 13:51:07 +00:00
.PP
To bind an
2007-06-23 07:56:56 +00:00
.B AF_INET6
socket to any process the local address should be copied from the
2007-06-23 07:56:56 +00:00
.I in6addr_any
variable which has
.I in6_addr
2004-11-03 13:51:07 +00:00
type.
In static initializations
2004-11-03 13:51:07 +00:00
.B IN6ADDR_ANY_INIT
may also be used, which expands to a constant expression.
Both of them are in network order.
.PP
The IPv6 loopback address (::1) is available in the global
2007-06-23 07:56:56 +00:00
.I in6addr_loopback
variable.
For initializations
2004-11-03 13:51:07 +00:00
.B IN6ADDR_LOOPBACK_INIT
should be used.
.PP
IPv4 connections can be handled with the v6 API by using the
v4-mapped-on-v6 address type;
thus a program only needs only to support this API type to
support both protocols.
This is handled transparently by the address
handling functions in libc.
2004-11-03 13:51:07 +00:00
.PP
IPv4 and IPv6 share the local port space.
When you get an IPv4 connection
or packet to a IPv6 socket its source address will be mapped
to v6 and it will be mapped to v6.
2007-05-21 12:46:25 +00:00
.SS "Address Format"
.in +4n
2004-11-03 13:51:07 +00:00
.nf
struct sockaddr_in6 {
uint16_t sin6_family; /* AF_INET6 */
uint16_t sin6_port; /* port number */
uint32_t sin6_flowinfo; /* IPv6 flow information */
2007-04-05 12:36:57 +00:00
struct in6_addr sin6_addr; /* IPv6 address */
uint32_t sin6_scope_id; /* Scope ID (new in 2.4) */
2004-11-03 13:51:07 +00:00
};
struct in6_addr {
2007-04-05 12:36:57 +00:00
unsigned char s6_addr[16]; /* IPv6 address */
2004-11-03 13:51:07 +00:00
};
.fi
.in
2004-11-03 13:51:07 +00:00
.sp
2007-06-23 07:56:56 +00:00
.I sin6_family
is always set to
.BR AF_INET6 ;
2007-06-23 07:56:56 +00:00
.I sin6_port
2004-11-03 13:51:07 +00:00
is the protocol port (see
2007-06-23 07:56:56 +00:00
.I sin_port
in
2004-11-03 13:51:07 +00:00
.BR ip (7));
2007-06-23 07:56:56 +00:00
.I sin6_flowinfo
2004-11-03 13:51:07 +00:00
is the IPv6 flow identifier;
2007-06-23 07:56:56 +00:00
.I sin6_addr
is the 128-bit IPv6 address.
.I sin6_scope_id
is an ID of depending of on the scope of the address.
It is new in Linux 2.4.
2004-11-03 13:51:07 +00:00
Linux only supports it for link scope addresses, in that case
.I sin6_scope_id
contains the interface index (see
.BR netdevice (7))
.PP
IPv6 supports several address types: unicast to address a single
host, multicast to address a group of hosts,
anycast to address the nearest member of a group of hosts
(not implemented in Linux), IPv4-on-IPv6 to
2004-11-03 13:51:07 +00:00
address a IPv4 host, and other reserved address types.
.PP
The address notation for IPv6 is a group of 16 2-digit hexadecimal
numbers, separated with a \':\'.
\&"::" stands for a string of 0 bits.
Special addresses are ::1 for loopback and ::FFFF:<IPv4 address>
for IPv4-mapped-on-IPv6.
2004-11-03 13:51:07 +00:00
.PP
The port space of IPv6 is shared with IPv4.
2007-05-21 12:46:25 +00:00
.SS "Socket Options"
2007-12-25 20:50:22 +00:00
IPv6 supports some protocol-specific socket options that can be set with
2004-11-03 13:51:07 +00:00
.BR setsockopt (2)
and read with
.BR getsockopt (2).
The socket option level for IPv6 is
2004-11-03 13:51:07 +00:00
.BR IPPROTO_IPV6 .
A boolean integer flag is zero when it is false, otherwise true.
.TP
2005-12-05 16:16:07 +00:00
.B IPV6_ADDRFORM
Turn an
2007-06-23 07:56:56 +00:00
.B AF_INET6
socket into a socket of a different address family.
Only
2007-06-23 07:56:56 +00:00
.B AF_INET
is currently supported for that.
It is only allowed for IPv6 sockets
that are connected and bound to a v4-mapped-on-v6 address.
The argument is a pointer to an integer containing
.BR AF_INET .
This is useful to pass v4-mapped sockets as file descriptors to
2005-12-05 16:16:07 +00:00
programs that don't know how to deal with the IPv6 API.
.TP
2006-01-04 09:21:10 +00:00
.B IPV6_ADD_MEMBERSHIP, IPV6_DROP_MEMBERSHIP
Control membership in multicast groups.
Argument is a pointer to a
2005-12-05 16:16:07 +00:00
.I struct ipv6_mreq
structure.
.\" FIXME IPV6_CHECKSUM is not documented, and probably should be
.\" FIXME IPV6_JOIN_ANYCAST is not documented, and probably should be
.\" FIXME IPV6_LEAVE_ANYCAST is not documented, and probably should be
2005-12-08 16:19:38 +00:00
.\" FIXME IPV6_V6ONLY is not documented, and probably should be
.\" FIXME IPV6_RECVPKTINFO is not documented, and probably should be
.\" FIXME IPV6_2292PKTINFO is not documented, and probably should be
.\" FIXME there are probably many other IPV6_* socket options that
2005-12-05 16:16:07 +00:00
.\" should be documented
.TP
.B IPV6_MTU
Set the MTU to be used for the socket.
The MTU is limited by the device
2005-12-05 16:16:07 +00:00
MTU or the path mtu when path mtu discovery is enabled.
Argument is a pointer to integer.
.TP
.B IPV6_MTU_DISCOVER
Control path mtu discovery on the socket.
See
2007-06-23 07:56:56 +00:00
.B IP_MTU_DISCOVER
in
2005-12-05 16:16:07 +00:00
.BR ip (7)
for details.
2004-11-03 13:51:07 +00:00
.TP
.B IPV6_MULTICAST_HOPS
Set the multicast hop limit for the socket.
Argument is a pointer to an
integer.
\-1 in the value means use the route default, otherwise it should be
2004-11-03 13:51:07 +00:00
between 0 and 255.
.TP
2004-11-03 13:51:07 +00:00
.B IPV6_MULTICAST_IF
Set the device for outgoing multicast packets on the socket.
This is only allowed
for
2007-06-23 07:56:56 +00:00
.B SOCK_DGRAM
and
2007-06-23 07:56:56 +00:00
.B SOCK_RAW
2004-11-03 13:51:07 +00:00
socket.
2007-10-04 16:02:10 +00:00
The argument is a pointer to an interface index (see
2004-11-03 13:51:07 +00:00
.BR netdevice (7))
in an integer.
.TP
2005-12-05 16:16:07 +00:00
.B IPV6_MULTICAST_LOOP
Control whether the socket sees multicast packets that it has send itself.
Argument is a pointer to boolean.
.TP
2004-11-03 13:51:07 +00:00
.B IPV6_PKTINFO
Set delivery of the
.B IPV6_PKTINFO
control message on incoming datagrams.
Only allowed for
2004-11-03 13:51:07 +00:00
.B SOCK_DGRAM
or
.B SOCK_RAW
sockets.
Argument is a pointer to a boolean value in an integer.
2004-11-03 13:51:07 +00:00
.TP
.nh
.B IPV6_RTHDR, IPV6_AUTHHDR, IPV6_DSTOPS, IPV6_HOPOPTS, IPV6_FLOWINFO, IPV6_HOPLIMIT
.hy
Set delivery of control messages for incoming datagrams containing
extension headers from the received packet.
2007-06-23 07:56:56 +00:00
.B IPV6_RTHDR
2004-11-03 13:51:07 +00:00
delivers the routing header,
2007-06-23 07:56:56 +00:00
.B IPV6_AUTHHDR
2004-11-03 13:51:07 +00:00
delivers the authentication header,
2007-06-23 07:56:56 +00:00
.B IPV6_DSTOPTS
2004-11-03 13:51:07 +00:00
delivers the destination options,
2007-06-23 07:56:56 +00:00
.B IPV6_HOPOPTS
delivers the hop options,
2007-06-23 07:56:56 +00:00
.B IPV6_FLOWINFO
2005-07-18 16:02:32 +00:00
delivers an integer containing the flow ID,
2007-06-23 07:56:56 +00:00
.B IPV6_HOPLIMIT
delivers an integer containing the hop count of the packet.
The control messages have the same type as the socket option.
All these header options can also be set for outgoing packets
by putting the appropriate control message into the control buffer of
2004-11-03 13:51:07 +00:00
.BR sendmsg (2).
Only allowed for
.B SOCK_DGRAM
or
.B SOCK_RAW
sockets.
Argument is a pointer to a boolean value.
2004-11-03 13:51:07 +00:00
.TP
.B IPV6_RECVERR
Control receiving of asynchronous error options.
See
2007-06-23 07:56:56 +00:00
.B IP_RECVERR
2004-11-03 13:51:07 +00:00
in
.BR ip (7)
for details.
Argument is a pointer to boolean.
.TP
.B IPV6_ROUTER_ALERT
Pass forwarded packets containing a router alert hop-by-hop option to
this socket.
Only allowed for SOCK_RAW sockets.
The tapped packets are not forwarded by the kernel, it is the
user's responsibility to send them out again.
Argument is a pointer to an integer.
A positive integer indicates a router alert option value to intercept.
Packets carrying a router alert option with a value field containing
this integer will be delivered to the socket.
A negative integer disables delivery of packets with router alert options
to this socket.
2005-12-05 16:16:07 +00:00
.TP
.B IPV6_UNICAST_HOPS
Set the unicast hop limit for the socket.
Argument is a pointer to an integer.
\-1 in the value means use the route default,
otherwise it should be between 0 and 255.
2004-11-03 13:51:07 +00:00
.\" FLOWLABEL_MGR, FLOWINFO_SEND
.SH VERSIONS
The older
2004-11-03 13:51:07 +00:00
.I libinet6
libc5 based IPv6 API implementation for Linux is not described here
and may vary in details.
2004-11-03 13:51:07 +00:00
.PP
2007-06-23 07:56:56 +00:00
Linux 2.4 will break binary compatibility for the
.I sockaddr_in6
for 64-bit
2004-11-03 13:51:07 +00:00
hosts by changing the alignment of
.I in6_addr
and adding an additional
2004-11-03 13:51:07 +00:00
.I sin6_scope_id
field.
The kernel interfaces stay compatible, but a program including
2007-06-23 07:56:56 +00:00
.I sockaddr_in6
or
.I in6_addr
into other structures may not be.
This is not
2007-06-23 07:56:56 +00:00
a problem for 32-bit hosts like i386.
2004-11-03 13:51:07 +00:00
.PP
The
2007-06-23 07:56:56 +00:00
.I sin6_flowinfo
field is new in Linux 2.4.
It is transparently passed/read by the kernel
when the passed address length contains it.
Some programs that pass a longer address buffer and then
check the outgoing address length may break.
2007-05-21 12:46:25 +00:00
.SH "NOTES"
2004-11-03 13:51:07 +00:00
The
2005-11-02 13:55:25 +00:00
.I sockaddr_in6
2004-11-03 13:51:07 +00:00
structure is bigger than the generic
2007-06-23 07:56:56 +00:00
.IR sockaddr .
Programs that assume that all address types can be stored safely in a
2005-11-02 13:55:25 +00:00
.I struct sockaddr
need to be changed to use
2005-11-02 13:55:25 +00:00
.I struct sockaddr_storage
2004-11-03 13:51:07 +00:00
for that instead.
.SH BUGS
The IPv6 extended API as in RFC\ 2292 is currently only partly
implemented;
2004-11-03 13:51:07 +00:00
although the 2.2 kernel has near complete support for receiving options,
the macros for generating IPv6 options are missing in glibc 2.1.
2004-11-03 13:51:07 +00:00
.PP
IPSec support for EH and AH headers is missing.
.PP
Flow label management is not complete and not documented here.
.PP
This man page is not complete.
.SH "SEE ALSO"
.BR cmsg (3),
.BR ip (7)
.PP
RFC\ 2553: IPv6 BASIC API.
Linux tries to be compliant to this.
2004-11-03 13:51:07 +00:00
.PP
RFC\ 2460: IPv6 specification.