Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

inet.local(4) [osf1 man page]

inet.local(4)						     Kernel Interfaces Manual						     inet.local(4)

NAME
inet.local - File to invoke local network commands DESCRIPTION
The inet.local file is a file that is called by /sbin/init.d/inet after all the network interfaces are up and running, but before any other network services are started. The file can contain those commands that pertain to the local system. For example, you could set the system time from the local network at boot time by editing the file and adding a line containing the rdate -s command. If you needed to add aliases for existing IP addresses, you could add the ifconfig command and arguments to this file. The inet.local file is a Context-Dependent Symbolic Link (CDSL) and must be maintained as such. See the System Administration manual for more information. FILES
Specifies the command path. RELATED INFORMATION
Commands: inetd(8). delim off inet.local(4)

Check Out this Related Man Page

inet(7F)																  inet(7F)

NAME
inet - Internet protocol family SYNOPSIS
DESCRIPTION
The internet protocol family is a collection of protocols layered on top of the (IP) network layer, which utilizes the internet address format. The internet family supports the SOCK_STREAM and SOCK_DGRAM socket types. Addressing Internet addresses are four byte entities. The include file defines this address as the structure Sockets bound to the internet protocol family utilize an addressing structure called Pointers to this structure can be used in system calls wherever they ask for a pointer to a There are three fields of interest within this structure. The first is which must be set to AF_INET. The next is which specifies the port number to be used on the desired host. The third is which is of type and specifies the address of the desired host. Protocols The internet protocol family is comprised of the IP network protocol, Internet Control Message Protocol (ICMP), Transmission Control Proto- col (TCP), and User Datagram Protocol (UDP). TCP is used to support the socket type while UDP is used to support the socket type. The ICMP message protocol and IP network protocol are not directly accessible. The local port address is selected from independent domains for TCP and UDP sockets. This means that creating a TCP socket and binding it to local port number 10000, for example, does not interfere with creating a UDP socket and also binding it to local port number 10000 at the same time. Port numbers in the range 1-1023 inclusive are reserved for use by the super-user only. Attempts to bind to port numbers in this range by non-super-users fail and result in an error returned. AUTHOR
was developed by the University of California, Berkeley. SEE ALSO
tcp(7P), udp(7P). inet(7F)
Man Page