IF(4N) — SPECIAL FILES
NAME
if − general properties of network interfaces
DESCRIPTION
Each network interface in a system corresponds to a path through which messages may be sent and received. A network interface usually has a hardware device associated with it, though certain interfaces such as the loopback interface, lo(4), do not.
At boot time each interface which has underlying hardware support makes itself known to the system during the autoconfiguration process. Once the interface has acquired its address it is expected to install a routing table entry so that messages may be routed through it. Most interfaces require some part of their address specified with an SIOCSIFADDR ioctl before they will allow traffic to flow through them. On interfaces where the network-link layer address mapping is static, only the network number is taken from the ioctl; the remainder is found in a hardware specific manner. On interfaces which provide dynamic network-link layer address mapping facilities (for example, 10Mb/s Ethernets using arp(4P),), the entire address specified in the ioctl is used.
The following ioctl calls may be used to manipulate network interfaces. Unless specified otherwise, the request takes an ifreq structure as its parameter. This structure has the form
structifreq {
charifr_name[16];/∗ name of interface (e.g. "ec0") ∗/
union {
structsockaddr ifru_addr;
structsockaddr ifru_dstaddr;
shortifru_flags;
} ifr_ifru;
#defineifr_addrifr_ifru.ifru_addr/∗ address ∗/
#defineifr_dstaddrifr_ifru.ifru_dstaddr/∗ other end of p-to-p link ∗/
#defineifr_flagsifr_ifru.ifru_flags/∗ flags ∗/
};
SIOCSIFADDR
Set interface address. Following the address assignment, the “initialization” routine for the interface is called.
SIOCGIFADDR
Get interface address.
SIOCSIFDSTADDR
Set point to point address for interface.
SIOCGIFDSTADDR
Get point to point address for interface.
SIOCSIFFLAGS
Set interface flags field. If the interface is marked down, any processes currently routing packets through the interface are notified.
SIOCGIFFLAGS
Get interface flags.
SIOCGIFCONF
Get interface configuration list. This request takes an ifconf structure (see below) as a value-result parameter. The ifc_len field should be initially set to the size of the buffer pointed to by ifc_buf. On return it will contain the length, in bytes, of the configuration list.
/∗
∗ Structure used in SIOCGIFCONF request.
∗ Used to retrieve interface configuration
∗ for machine (useful for programs which
∗ must know all networks accessible).
∗/
structifconf {
intifc_len;/∗ size of associated buffer ∗/
union {
caddr_tifcu_buf;
structifreq ∗ifcu_req;
} ifc_ifcu;
#defineifc_bufifc_ifcu.ifcu_buf/∗ buffer address ∗/
#defineifc_reqifc_ifcu.ifcu_req/∗ array of structures returned ∗/
};
SEE ALSO
arp(4P), ec(4S), en(4S), lo(4)
Sun Release 2.0 — Last change: 1 November 1984