netdevice(7) | Miscellaneous Information Manual | netdevice(7) |
netdevice - low-level access to Linux network devices
#include <sys/ioctl.h> #include <net/if.h>
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. Most of them pass an ifreq structure:
struct ifreq { 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; }; };
AF_INET6 is an exception. It passes an in6_ifreq structure:
struct in6_ifreq { struct in6_addr ifr6_addr; u32 ifr6_prefixlen; int ifr6_ifindex; /* Interface index */ };
Normally, the user specifies which device to affect by setting ifr_name to the name of the interface or ifr6_ifindex to the index of the interface. All other members of the structure may share memory.
If an ioctl is marked as privileged, then using it requires an effective user ID of 0 or the CAP_NET_ADMIN capability. If this is not the case, EPERM will be returned.
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 | The addresses are lost when the interface goes down. |
IFF_LOWER_UP | Driver signals L1 up (since Linux 2.6.17) |
IFF_DORMANT | Driver signals dormant (since Linux 2.6.17) |
IFF_ECHO | Echo sent packets (since Linux 2.6.25) |
Setting the active flag word is a privileged operation, but any process may read it.
Private flags | |
IFF_802_1Q_VLAN | Interface is 802.1Q VLAN device. |
IFF_EBRIDGE | Interface is Ethernet bridging device. |
IFF_SLAVE_INACTIVE | Interface is inactive bonding slave. |
IFF_MASTER_8023AD | Interface is 802.3ad bonding master. |
IFF_MASTER_ALB | Interface is balanced-alb bonding master. |
IFF_BONDING | Interface is a bonding master or slave. |
IFF_SLAVE_NEEDARP | Interface needs ARPs for validation. |
IFF_ISATAP | Interface is RFC4214 ISATAP interface. |
Setting the extended (private) interface flags is a privileged operation.
struct ifmap { unsigned long mem_start; unsigned long mem_end; unsigned short base_addr; unsigned char irq; unsigned char dma; unsigned char port; };
struct ifconf { int ifc_len; /* size of buffer */ union { char *ifc_buf; /* buffer address */ struct ifreq *ifc_req; /* array of structures */ }; };
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 ip(7).
In addition, some devices support private ioctls. These are not described here.
SIOCGIFCONF and the other ioctls that accept or return only AF_INET socket addresses are IP-specific and perhaps should rather be documented in ip(7).
The names of interfaces with no addresses or that don't have the IFF_RUNNING flag set can be found via /proc/net/dev.
AF_INET6 IPv6 addresses can be read from /proc/net/if_inet6 or via rtnetlink(7). Adding a new IPv6 address and deleting an existing IPv6 address can be done via SIOCSIFADDR and SIOCDIFADDR or via rtnetlink(7). Retrieving or changing destination IPv6 addresses of a point-to-point interface is possible only via rtnetlink(7).
glibc 2.1 is missing the ifr_newname macro in <net/if.h>. Add the following to your program as a workaround:
#ifndef ifr_newname #define ifr_newname ifr_ifru.ifru_slave #endif
proc(5), capabilities(7), ip(7), rtnetlink(7)
2023-10-31 | Linux man-pages 6.7 |