1.\" Copyright (c) 1983, 1991, 1993 2.\" The Regents of the University of California. All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. 9.\" 2. Redistributions in binary form must reproduce the above copyright 10.\" notice, this list of conditions and the following disclaimer in the 11.\" documentation and/or other materials provided with the distribution. 12.\" 3. All advertising materials mentioning features or use of this software 13.\" must display the following acknowledgement: 14.\" This product includes software developed by the University of 15.\" California, Berkeley and its contributors. 16.\" 4. Neither the name of the University nor the names of its contributors 17.\" may be used to endorse or promote products derived from this software 18.\" without specific prior written permission. 19.\" 20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30.\" SUCH DAMAGE. 31.\" 32.\" @(#)ip.4 8.2 (Berkeley) 11/30/93 33.\" $FreeBSD$ 34.\" 35.Dd March 3, 2001 36.Dt IP 4 37.Os 38.Sh NAME 39.Nm ip 40.Nd Internet Protocol 41.Sh SYNOPSIS 42.In sys/types.h 43.In sys/socket.h 44.In netinet/in.h 45.Ft int 46.Fn socket AF_INET SOCK_RAW proto 47.Sh DESCRIPTION 48.Tn IP 49is the transport layer protocol used 50by the Internet protocol family. 51Options may be set at the 52.Tn IP 53level 54when using higher-level protocols that are based on 55.Tn IP 56(such as 57.Tn TCP 58and 59.Tn UDP ) . 60It may also be accessed 61through a 62.Dq raw socket 63when developing new protocols, or 64special-purpose applications. 65.Pp 66There are several 67.Tn IP-level 68.Xr setsockopt 2 69and 70.Xr getsockopt 2 71options. 72.Dv IP_OPTIONS 73may be used to provide 74.Tn IP 75options to be transmitted in the 76.Tn IP 77header of each outgoing packet 78or to examine the header options on incoming packets. 79.Tn IP 80options may be used with any socket type in the Internet family. 81The format of 82.Tn IP 83options to be sent is that specified by the 84.Tn IP 85protocol specification (RFC-791), with one exception: 86the list of addresses for Source Route options must include the first-hop 87gateway at the beginning of the list of gateways. 88The first-hop gateway address will be extracted from the option list 89and the size adjusted accordingly before use. 90To disable previously specified options, 91use a zero-length buffer: 92.Bd -literal 93setsockopt(s, IPPROTO_IP, IP_OPTIONS, NULL, 0); 94.Ed 95.Pp 96.Dv IP_TOS 97and 98.Dv IP_TTL 99may be used to set the type-of-service and time-to-live 100fields in the 101.Tn IP 102header for 103.Dv SOCK_STREAM , SOCK_DGRAM , 104and certain types of 105.Dv SOCK_RAW 106sockets. 107For example, 108.Bd -literal 109int tos = IPTOS_LOWDELAY; /* see <netinet/ip.h> */ 110setsockopt(s, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)); 111 112int ttl = 60; /* max = 255 */ 113setsockopt(s, IPPROTO_IP, IP_TTL, &ttl, sizeof(ttl)); 114.Ed 115.Pp 116If the 117.Dv IP_RECVDSTADDR 118option is enabled on a 119.Dv SOCK_DGRAM 120socket, 121the 122.Xr recvmsg 2 123call will return the destination 124.Tn IP 125address for a 126.Tn UDP 127datagram. 128The msg_control field in the msghdr structure points to a buffer 129that contains a cmsghdr structure followed by the 130.Tn IP 131address. 132The cmsghdr fields have the following values: 133.Bd -literal 134cmsg_len = sizeof(struct in_addr) 135cmsg_level = IPPROTO_IP 136cmsg_type = IP_RECVDSTADDR 137.Ed 138.Pp 139The source address to be used for outgoing 140.Tn UDP 141datagrams on a socket that is not bound to a specific 142.Tn IP 143address can be specified as ancillary data with a type code of 144.Dv IP_SENDSRCADDR . 145The msg_control field in the msghdr structure should point to a buffer 146that contains a cmsghdr structure followed by the 147.Tn IP 148address. 149The cmsghdr fields should have the following values: 150.Bd -literal 151cmsg_len = sizeof(struct in_addr) 152cmsg_level = IPPROTO_IP 153cmsg_type = IP_SENDSRCADDR 154.Ed 155.Pp 156For convenience, 157.Dv IP_SENDSRCADDR 158is defined to have the same value as 159.Dv IP_RECVDSTADDR , 160so the 161.Dv IP_RECVDSTADDR 162control message from 163.Xr recvmsg 2 164can be used directly as a control message for 165.Xr sendmsg 2 . 166.Pp 167If the 168.Dv IP_RECVTTL 169option is enabled on a 170.Dv SOCK_DGRAM 171socket, the 172.Xr recvmsg 2 173call will return the 174.Tn IP 175.Tn TTL 176(time to live) field for a 177.Tn UDP 178datagram. 179The msg_control field in the msghdr structure points to a buffer 180that contains a cmsghdr structure followed by the 181.Tn TTL . 182The cmsghdr fields have the following values: 183.Bd -literal 184cmsg_len = sizeof(u_char) 185cmsg_level = IPPROTO_IP 186cmsg_type = IP_RECVTTL 187.Ed 188.Pp 189If the 190.Dv IP_RECVIF 191option is enabled on a 192.Dv SOCK_DGRAM 193socket, the 194.Xr recvmsg 2 195call returns a struct sockaddr_dl corresponding to the interface on which the 196packet was received. The msg_control field in the msghdr structure points 197to a buffer that contains a cmsghdr structure followed by the 198struct sockaddr_dl. The cmsghdr fields have the following values: 199.Bd -literal 200cmsg_len = sizeof(struct sockaddr_dl) 201cmsg_level = IPPROTO_IP 202cmsg_type = IP_RECVIF 203.Ed 204.Pp 205.Dv IP_PORTRANGE 206may be used to set the port range used for selecting a local port number 207on a socket with an unspecified (zero) port number. 208It has the following 209possible values: 210.Bl -tag -width IP_PORTRANGE_DEFAULT 211.It Dv IP_PORTRANGE_DEFAULT 212use the default range of values, normally 213.Dv IPPORT_HIFIRSTAUTO 214through 215.Dv IPPORT_HILASTAUTO . 216This is adjustable through the sysctl setting: 217.Va net.inet.ip.portrange.first 218and 219.Va net.inet.ip.portrange.last . 220.It Dv IP_PORTRANGE_HIGH 221use a high range of values, normally 222.Dv IPPORT_HIFIRSTAUTO 223and 224.Dv IPPORT_HILASTAUTO . 225This is adjustable through the sysctl setting: 226.Va net.inet.ip.portrange.hifirst 227and 228.Va net.inet.ip.portrange.hilast . 229.It Dv IP_PORTRANGE_LOW 230use a low range of ports, which are normally restricted to 231privileged processes on 232.Ux 233systems. The range is normally from 234.Dv IPPORT_RESERVED 235\- 1 down to 236.Li IPPORT_RESERVEDSTART 237in descending order. 238This is adjustable through the sysctl setting: 239.Va net.inet.ip.portrange.lowfirst 240and 241.Va net.inet.ip.portrange.lowlast . 242.El 243.Pp 244The range of privileged ports which only may be opened by 245root-owned processes may be modified by the 246.Va net.inet.ip.portrange.reservedlow 247and 248.Va net.inet.ip.portrange.reservedhigh 249sysctl settings. 250The values default to the traditional range, 2510 through 252.Dv IPPORT_RESERVED 253\- 1 254(0 through 1023), respectively. 255Note that these settings do not affect and are not accounted for in the 256use or calculation of the other 257.Va net.inet.ip.portrange 258values above. 259Changing these values departs from 260.Ux 261tradition and has security 262consequences that the administrator should carefully evaluate before 263modifying these settings. 264.Ss "Multicast Options" 265.Pp 266.Tn IP 267multicasting is supported only on 268.Dv AF_INET 269sockets of type 270.Dv SOCK_DGRAM 271and 272.Dv SOCK_RAW , 273and only on networks where the interface 274driver supports multicasting. 275.Pp 276The 277.Dv IP_MULTICAST_TTL 278option changes the time-to-live (TTL) 279for outgoing multicast datagrams 280in order to control the scope of the multicasts: 281.Bd -literal 282u_char ttl; /* range: 0 to 255, default = 1 */ 283setsockopt(s, IPPROTO_IP, IP_MULTICAST_TTL, &ttl, sizeof(ttl)); 284.Ed 285.Pp 286Datagrams with a TTL of 1 are not forwarded beyond the local network. 287Multicast datagrams with a TTL of 0 will not be transmitted on any network, 288but may be delivered locally if the sending host belongs to the destination 289group and if multicast loopback has not been disabled on the sending socket 290(see below). Multicast datagrams with TTL greater than 1 may be forwarded 291to other networks if a multicast router is attached to the local network. 292.Pp 293For hosts with multiple interfaces, each multicast transmission is 294sent from the primary network interface. 295The 296.Dv IP_MULTICAST_IF 297option overrides the default for 298subsequent transmissions from a given socket: 299.Bd -literal 300struct in_addr addr; 301setsockopt(s, IPPROTO_IP, IP_MULTICAST_IF, &addr, sizeof(addr)); 302.Ed 303.Pp 304where "addr" is the local 305.Tn IP 306address of the desired interface or 307.Dv INADDR_ANY 308to specify the default interface. 309An interface's local IP address and multicast capability can 310be obtained via the 311.Dv SIOCGIFCONF 312and 313.Dv SIOCGIFFLAGS 314ioctls. 315Normal applications should not need to use this option. 316.Pp 317If a multicast datagram is sent to a group to which the sending host itself 318belongs (on the outgoing interface), a copy of the datagram is, by default, 319looped back by the IP layer for local delivery. 320The 321.Dv IP_MULTICAST_LOOP 322option gives the sender explicit control 323over whether or not subsequent datagrams are looped back: 324.Bd -literal 325u_char loop; /* 0 = disable, 1 = enable (default) */ 326setsockopt(s, IPPROTO_IP, IP_MULTICAST_LOOP, &loop, sizeof(loop)); 327.Ed 328.Pp 329This option 330improves performance for applications that may have no more than one 331instance on a single host (such as a router daemon), by eliminating 332the overhead of receiving their own transmissions. It should generally not 333be used by applications for which there may be more than one instance on a 334single host (such as a conferencing program) or for which the sender does 335not belong to the destination group (such as a time querying program). 336.Pp 337A multicast datagram sent with an initial TTL greater than 1 may be delivered 338to the sending host on a different interface from that on which it was sent, 339if the host belongs to the destination group on that other interface. The 340loopback control option has no effect on such delivery. 341.Pp 342A host must become a member of a multicast group before it can receive 343datagrams sent to the group. To join a multicast group, use the 344.Dv IP_ADD_MEMBERSHIP 345option: 346.Bd -literal 347struct ip_mreq mreq; 348setsockopt(s, IPPROTO_IP, IP_ADD_MEMBERSHIP, &mreq, sizeof(mreq)); 349.Ed 350.Pp 351where 352.Fa mreq 353is the following structure: 354.Bd -literal 355struct ip_mreq { 356 struct in_addr imr_multiaddr; /* IP multicast address of group */ 357 struct in_addr imr_interface; /* local IP address of interface */ 358} 359.Ed 360.Pp 361.Dv imr_interface 362should 363be 364.Dv INADDR_ANY 365to choose the default multicast interface, 366or the 367.Tn IP 368address of a particular multicast-capable interface if 369the host is multihomed. 370Membership is associated with a single interface; 371programs running on multihomed hosts may need to 372join the same group on more than one interface. 373Up to 374.Dv IP_MAX_MEMBERSHIPS 375(currently 20) memberships may be added on a 376single socket. 377.Pp 378To drop a membership, use: 379.Bd -literal 380struct ip_mreq mreq; 381setsockopt(s, IPPROTO_IP, IP_DROP_MEMBERSHIP, &mreq, sizeof(mreq)); 382.Ed 383.Pp 384where 385.Fa mreq 386contains the same values as used to add the membership. 387Memberships are dropped when the socket is closed or the process exits. 388.\"----------------------- 389.Ss "Raw IP Sockets" 390.Pp 391Raw 392.Tn IP 393sockets are connectionless, 394and are normally used with the 395.Xr sendto 2 396and 397.Xr recvfrom 2 398calls, though the 399.Xr connect 2 400call may also be used to fix the destination for future 401packets (in which case the 402.Xr read 2 403or 404.Xr recv 2 405and 406.Xr write 2 407or 408.Xr send 2 409system calls may be used). 410.Pp 411If 412.Fa proto 413is 0, the default protocol 414.Dv IPPROTO_RAW 415is used for outgoing 416packets, and only incoming packets destined for that protocol 417are received. 418If 419.Fa proto 420is non-zero, that protocol number will be used on outgoing packets 421and to filter incoming packets. 422.Pp 423Outgoing packets automatically have an 424.Tn IP 425header prepended to 426them (based on the destination address and the protocol 427number the socket is created with), 428unless the 429.Dv IP_HDRINCL 430option has been set. 431Incoming packets are received with 432.Tn IP 433header and options intact. 434.Pp 435.Dv IP_HDRINCL 436indicates the complete IP header is included with the data 437and may be used only with the 438.Dv SOCK_RAW 439type. 440.Bd -literal 441#include <netinet/in_systm.h> 442#include <netinet/ip.h> 443 444int hincl = 1; /* 1 = on, 0 = off */ 445setsockopt(s, IPPROTO_IP, IP_HDRINCL, &hincl, sizeof(hincl)); 446.Ed 447.Pp 448Unlike previous 449.Bx 450releases, the program must set all 451the fields of the IP header, including the following: 452.Bd -literal 453ip->ip_v = IPVERSION; 454ip->ip_hl = hlen >> 2; 455ip->ip_id = 0; /* 0 means kernel set appropriate value */ 456ip->ip_off = offset; 457.Ed 458.Pp 459If the header source address is set to 460.Dv INADDR_ANY , 461the kernel will choose an appropriate address. 462.Sh ERRORS 463A socket operation may fail with one of the following errors returned: 464.Bl -tag -width Er 465.It Bq Er EISCONN 466when trying to establish a connection on a socket which 467already has one, or when trying to send a datagram with the destination 468address specified and the socket is already connected; 469.It Bq Er ENOTCONN 470when trying to send a datagram, but 471no destination address is specified, and the socket hasn't been 472connected; 473.It Bq Er ENOBUFS 474when the system runs out of memory for 475an internal data structure; 476.It Bq Er EADDRNOTAVAIL 477when an attempt is made to create a 478socket with a network address for which no network interface 479exists. 480.It Bq Er EACCES 481when an attempt is made to create 482a raw IP socket by a non-privileged process. 483.El 484.Pp 485The following errors specific to 486.Tn IP 487may occur when setting or getting 488.Tn IP 489options: 490.Bl -tag -width EADDRNOTAVAILxx 491.It Bq Er EINVAL 492An unknown socket option name was given. 493.It Bq Er EINVAL 494The IP option field was improperly formed; 495an option field was shorter than the minimum value 496or longer than the option buffer provided. 497.El 498.Sh SEE ALSO 499.Xr getsockopt 2 , 500.Xr recv 2 , 501.Xr send 2 , 502.Xr icmp 4 , 503.Xr inet 4 , 504.Xr intro 4 505.Sh HISTORY 506The 507.Nm 508protocol appeared in 509.Bx 4.2 . 510