man-pages/man7/netdevice.7

269 lines
7.0 KiB
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
'\" t
.\" Don't change the first line, it tells man that tbl is needed.
.\" This man page is Copyright (C) 1999 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: netdevice.7,v 1.10 2000/08/17 10:09:54 ak Exp $
2004-11-25 08:11:36 +00:00
.\"
.\" Modified, 2004-11-25, mtk, formatting and a few wording fixes
.\"
2007-05-18 10:09:18 +00:00
.TH NETDEVICE 7 1999-05-02 "Linux" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
netdevice \- Low level access to Linux network devices
.SH SYNOPSIS
.B "#include <sys/ioctl.h>"
.br
.B "#include <net/if.h>"
.SH DESCRIPTION
This man page describes the sockets interface which is used to configure
network devices.
Linux supports some standard ioctls to configure network devices.
They can be used on any socket's file descriptor regardless of the
family or type.
They pass an
2007-06-23 07:56:56 +00:00
.I ifreq
2004-11-03 13:51:07 +00:00
structure:
.nf
struct ifreq {
2004-11-25 08:11:36 +00:00
char ifr_name[IFNAMSIZ]; /* Interface name */
union {
struct sockaddr ifr_addr;
struct sockaddr ifr_dstaddr;
struct sockaddr ifr_broadaddr;
struct sockaddr ifr_netmask;
struct sockaddr ifr_hwaddr;
short ifr_flags;
int ifr_ifindex;
int ifr_metric;
int ifr_mtu;
struct ifmap ifr_map;
char ifr_slave[IFNAMSIZ];
char ifr_newname[IFNAMSIZ];
char * ifr_data;
};
2004-11-03 13:51:07 +00:00
};
struct ifconf {
2004-11-25 08:11:36 +00:00
int ifc_len; /* size of buffer */
union {
char * ifc_buf; /* buffer address */
2004-11-25 08:11:36 +00:00
struct ifreq * ifc_req; /* array of structures */
};
};
2004-11-03 13:51:07 +00:00
.fi
Normally, the user specifies which device to affect by setting
2007-06-23 07:56:56 +00:00
.I ifr_name
to the name of the interface.
All other members of the structure may
share memory.
.SS Ioctls
2004-11-03 13:51:07 +00:00
If an ioctl is marked as privileged then using it requires an effective
2005-07-18 16:02:32 +00:00
user ID of 0 or the
2004-11-03 13:51:07 +00:00
.B CAP_NET_ADMIN
capability.
If this is not the case
2004-11-03 13:51:07 +00:00
.B EPERM
will be returned.
.TP
.B SIOCGIFNAME
Given the
2007-06-23 07:56:56 +00:00
.IR ifr_ifindex ,
2004-11-03 13:51:07 +00:00
return the name of the interface in
2007-06-23 07:56:56 +00:00
.IR ifr_name .
2004-11-03 13:51:07 +00:00
This is the only ioctl which returns its result in
2007-06-23 07:56:56 +00:00
.IR ifr_name .
2004-11-03 13:51:07 +00:00
.TP
.B SIOCGIFINDEX
Retrieve the interface index of the interface into
2007-06-23 07:56:56 +00:00
.IR ifr_ifindex .
2004-11-03 13:51:07 +00:00
.TP
.BR SIOCGIFFLAGS ", " SIOCSIFFLAGS
Get or set the active flag word of the device.
2007-06-23 07:56:56 +00:00
.I ifr_flags
2007-07-01 04:23:34 +00:00
contains a bit mask of the following values:
2004-11-03 13:51:07 +00:00
.TS
tab(:);
c s
l l.
Device flags
IFF_UP:Interface is running.
IFF_BROADCAST:Valid broadcast address set.
IFF_DEBUG:Internal debugging flag.
IFF_LOOPBACK:Interface is a loopback interface.
IFF_POINTOPOINT:Interface is a point-to-point link.
IFF_RUNNING:Resources allocated.
IFF_NOARP:No arp protocol, L2 destination address not set.
IFF_PROMISC:Interface is in promiscuous mode.
IFF_NOTRAILERS:Avoid use of trailers.
IFF_ALLMULTI:Receive all multicast packets.
IFF_MASTER:Master of a load balancing bundle.
IFF_SLAVE:Slave of a load balancing bundle.
IFF_MULTICAST:Supports multicast
IFF_PORTSEL:Is able to select media type via ifmap.
IFF_AUTOMEDIA:Auto media selection active.
IFF_DYNAMIC:T{
The addresses are lost when the interface goes down.
T}
.TE
2004-11-03 13:51:07 +00:00
Setting the active flag word is a privileged operation, but any
process may read it.
.TP
.BR SIOCGIFMETRIC ", " SIOCSIFMETRIC
Get or set the metric of the device using
2007-06-23 07:56:56 +00:00
.IR ifr_metric .
2004-11-03 13:51:07 +00:00
This is currently not implemented; it sets
2007-06-23 07:56:56 +00:00
.I ifr_metric
2004-11-03 13:51:07 +00:00
to 0 if you attempt to read it and returns
.B EOPNOTSUPP
if you attempt to set it.
.TP
.BR SIOCGIFMTU ", " SIOCSIFMTU
Get or set the MTU (Maximum Transfer Unit) of a device using
2007-06-23 07:56:56 +00:00
.IR ifr_mtu .
Setting the MTU is a privileged operation.
Setting the MTU to
2004-11-03 13:51:07 +00:00
too small values may cause kernel crashes.
.TP
.BR SIOCGIFHWADDR ", " SIOCSIFHWADDR
Get or set the hardware address of a device using
2007-06-23 07:56:56 +00:00
.IR ifr_hwaddr .
2004-11-03 13:51:07 +00:00
The hardware address is specified in a struct
.IR sockaddr .
.I sa_family
contains the ARPHRD_* device type,
2004-11-03 13:51:07 +00:00
.I sa_data
the L2 hardware address starting from byte 0.
2004-11-03 13:51:07 +00:00
Setting the hardware address is a privileged operation.
.TP
.B SIOCSIFHWBROADCAST
Set the hardware broadcast address of a device from
2007-06-23 07:56:56 +00:00
.IR ifr_hwaddr .
2004-11-03 13:51:07 +00:00
This is a privileged operation.
.TP
.BR SIOCGIFMAP ", " SIOCSIFMAP
Get or set the interface's hardware parameters using
2007-06-23 07:56:56 +00:00
.IR ifr_map .
2004-11-03 13:51:07 +00:00
Setting the parameters is a privileged operation.
.nf
struct ifmap {
2004-11-25 08:11:36 +00:00
unsigned long mem_start;
unsigned long mem_end;
unsigned short base_addr;
unsigned char irq;
unsigned char dma;
unsigned char port;
2004-11-03 13:51:07 +00:00
};
.fi
The interpretation of the ifmap structure depends on the device driver
and the architecture.
.TP
.BR SIOCADDMULTI ", " SIOCDELMULTI
Add an address to or delete an address from the device's link layer
multicast filters using
2007-06-23 07:56:56 +00:00
.IR ifr_hwaddr .
2004-11-03 13:51:07 +00:00
These are privileged operations.
See also
.BR packet (7)
for an alternative.
.TP
.BR SIOCGIFTXQLEN ", " SIOCSIFTXQLEN
Get or set the transmit queue length of a device using
2007-06-23 07:56:56 +00:00
.IR ifr_qlen .
2004-11-03 13:51:07 +00:00
Setting the transmit queue length is a privileged operation.
.TP
.B SIOCSIFNAME
Changes the name of the interface specified in
2007-06-23 07:56:56 +00:00
.IR ifr_name
2004-11-03 13:51:07 +00:00
to
2007-06-23 07:56:56 +00:00
.IR ifr_newname .
This is a privileged operation.
It is only allowed when the interface
2004-11-03 13:51:07 +00:00
is not up.
.TP
.B SIOCGIFCONF
Return a list of interface (transport layer) addresses.
This currently
2007-06-22 20:40:07 +00:00
means only addresses of the
.B AF_INET
(IPv4) family for compatibility.
The user passes a
2007-06-23 07:56:56 +00:00
.I ifconf
structure as argument to the ioctl.
It contains a pointer to an array of
2004-11-03 13:51:07 +00:00
.I ifreq
structures in
2007-06-23 07:56:56 +00:00
.I ifc_req
and its length in bytes in
2007-06-23 07:56:56 +00:00
.IR ifc_len .
2004-11-03 13:51:07 +00:00
The kernel fills the ifreqs with all current L3 interface addresses that
are running:
.I ifr_name
contains the interface name (eth0:1 etc.),
2004-11-03 13:51:07 +00:00
.I ifr_addr
the address.
The kernel returns with the actual length in
2004-11-03 13:51:07 +00:00
.IR ifc_len .
If
2004-11-03 13:51:07 +00:00
.I ifc_len
is equal to the original length the buffer probably has overflowed
and you should retry with a bigger buffer to get all addresses.
When no error occurs the ioctl returns 0;
otherwise \-1.
Overflow is not an error.
2007-06-13 21:48:16 +00:00
.\" Slaving isn't supported in 2.2
2006-03-05 20:51:13 +00:00
.\" .
2004-11-03 13:51:07 +00:00
.\" .TP
.\" .BR SIOCGIFSLAVE ", " SIOCSIFSLAVE
.\" Get or set the slave device using
2007-06-23 07:56:56 +00:00
.\" .IR ifr_slave .
2004-11-03 13:51:07 +00:00
.\" Setting the slave device is a privileged operation.
.\" .PP
2005-10-26 11:27:52 +00:00
.\" FIXME add amateur radio stuff.
2004-11-03 13:51:07 +00:00
.PP
Most protocols support their own ioctls to configure protocol specific
interface options.
See the protocol man pages for a description.
For configuring IP addresses see
2004-11-03 13:51:07 +00:00
.BR ip (7).
.PP
In addition some devices support private ioctls.
These are not described here.
2004-11-03 13:51:07 +00:00
.SH NOTES
2004-11-25 08:11:36 +00:00
Strictly speaking,
.B SIOCGIFCONF
is IP specific and belongs in
2004-11-03 13:51:07 +00:00
.BR ip (7).
.LP
The names of interfaces with no addresses or that don't have the
.B IFF_RUNNING
2004-11-03 13:51:07 +00:00
flag set can be found via
.IR /proc/net/dev .
.LP
Local IPv6 IP addresses can be found via /proc/net or via
2004-11-03 13:51:07 +00:00
.BR rtnetlink (7).
.SH BUGS
glibc 2.1 is missing the
.I ifr_newname
macro in net/if.h.
Add the following to your program as a workaround:
2004-11-03 13:51:07 +00:00
.sp
.RS
.nf
#ifndef ifr_newname
#define ifr_newname ifr_ifru.ifru_slave
#endif
.fi
.RE
.SH "SEE ALSO"
2007-06-01 05:24:33 +00:00
.BR proc (5),
2004-11-03 13:51:07 +00:00
.BR capabilities (7),
.BR ip (7),
.BR rtnetlink (7)