Tcp

BGPD.CONF(5) - File Formats Manual

Bgpctl, Rdomain, Ipsec, Bgpd, Isakmpd, Rc.conf.local, Strftime, Tcp, Ipsecctl, Pf, Bgpd-Conf

BGPD.CONF(5) - File Formats Manual # BGPD.CONF(5) - File Formats Manual NAME # bgpd.conf - BGP routing daemon configuration file DESCRIPTION # The bgpd(8) daemon implements the Border Gateway Protocol version 4 as described in RFC 4271. The bgpd.conf config file is divided into the following main sections: MACROS User-defined variables may be defined and used later, simplifying the configuration file. GLOBAL CONFIGURATION Global settings for bgpd(8). SET CONFIGURATION ...

INET(4) - Device Drivers Manual

Inet_net_ntop, Udp, Netintro, Ioctl, Socket, Tcp, Inet_ntop, Icmp, Ip, Inet

INET(4) - Device Drivers Manual # INET(4) - Device Drivers Manual NAME # inet - Internet protocol family SYNOPSIS # #include <sys/types.h> #include <netinet/in.h> DESCRIPTION # The Internet protocol family is a collection of protocols layered atop the Internet Protocol (IP) transport layer, and utilizing the Internet address format. The Internet family provides protocol support for the SOCK_STREAM, SOCK_DGRAM, and SOCK_RAW socket types; the SOCK_RAW interface provides access to the IP protocol. ...

INET6(4) - Device Drivers Manual

Udp, Rad, Ifconfig, Socket, Tcp, Hostname.if, Ip6, Icmp6, Inet6

INET6(4) - Device Drivers Manual # INET6(4) - Device Drivers Manual NAME # inet6 - Internet protocol version 6 family SYNOPSIS # #include <sys/types.h> #include <netinet/in.h> DESCRIPTION # The Internet Protocol version 6 family is an updated version of the Internet Protocol version 4 family. It comprises Internet Protocol version 6 (IPv6), Internet Control Message Protocol version 6 (ICMPv6), Transmission Control Protocol (TCP), and User Datagram Protocol (UDP). tcp(4) is used to support the SOCK_STREAM abstraction while udp(4) is used to support the SOCK_DGRAM abstraction. ...

IP6(4) - Device Drivers Manual

Send, Udp, If_nametoindex, Netintro, Getsockopt, Setsockopt, Bpf, Socket, Inet6, Recv, Tcp, Icmp6, Ip6

IP6(4) - Device Drivers Manual # IP6(4) - Device Drivers Manual NAME # ip6 - Internet Protocol version 6 (IPv6) network layer SYNOPSIS # #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> int socket(AF_INET6, SOCK_RAW, proto); DESCRIPTION # The IPv6 network layer is used by the IPv6 protocol family for transporting data. IPv6 packets contain an IPv6 header that is not provided as part of the payload contents when passed to an application. ...

IPSEC.CONF(5) - File Formats Manual

Enc, Pf.conf, Ipsec, Isakmpd, Openssl, Tcp, Ipsecctl, Ipcomp, Ipsec-Conf

IPSEC.CONF(5) - File Formats Manual # IPSEC.CONF(5) - File Formats Manual NAME # ipsec.conf - IPsec configuration file DESCRIPTION # The ipsec.conf file specifies rules and definitions for IPsec, which provides security services for IP datagrams. IPsec itself is a pair of protocols: Encapsulating Security Payload (ESP), which provides integrity and confidentiality; and Authentication Header (AH), which provides integrity. The IPsec protocol itself is described in ipsec(4). In its most basic form, a flow is established between hosts and/or networks, and then Security Associations (SAs) are established, which detail how the desired protection will be achieved. ...

IPSECCTL(8) - System Manager's Manual

Ipsec.conf, Tcp, Ipsec, Isakmpd, Ipsecctl

IPSECCTL(8) - System Manager’s Manual # IPSECCTL(8) - System Manager’s Manual NAME # ipsecctl - control flows for IPsec SYNOPSIS # ipsecctl [-cdFkmnv] [-D macro=value] [-f file] [-i fifo] [-s modifier] DESCRIPTION # The ipsecctl utility controls flows that determine which packets are to be processed by IPsec. It allows ruleset configuration, and retrieval of status information from the kernel’s SPD (Security Policy Database) and SAD (Security Association Database). It also can control isakmpd(8) and establish tunnels using automatic keying with isakmpd(8). ...

ISCSI.CONF(5) - File Formats Manual

Iscsid, Iscsictl, Tcp, Rc.conf.local, Iscsi-Conf

ISCSI.CONF(5) - File Formats Manual # ISCSI.CONF(5) - File Formats Manual NAME # iscsi.conf - ISCSI daemon configuration file DESCRIPTION # The iscsid(8) daemon implements the Internet Small Computer Systems Interface as described in RFC 3720. The iscsi.conf configuration file is divided into the following main sections: Macros User-defined variables may be defined and used later, simplifying the configuration file. Global Configuration Global settings for iscsid(8). Target Configuration Target-specific parameters. ...

MOUNT_NFS(8) - System Manager's Manual

Nfsd, Udp, Sysctl, Umount, Showmount, Fstab, Mount, Nfsstat, Tcp, Mount-Nfs

MOUNT_NFS(8) - System Manager’s Manual # MOUNT_NFS(8) - System Manager’s Manual NAME # mount_nfs - mount NFS file systems SYNOPSIS # mount_nfs [-23bcdilsTU] [-a maxreadahead] [-g maxgroups] [-I readdirsize] [-o options] [-R retrycnt] [-r readsize] [-t timeout] [-w writesize] [-x retrans] rhost:path node DESCRIPTION # The mount_nfs command calls the mount(2) system call to prepare and graft a remote NFS file system (rhost:path) on to the file system tree at the point node. ...

NETINTRO(4) - Device Drivers Manual

Udp, Bgpd, Lo, Bridge, Mrouted, Ifmedia, Arp, Unix, Inet, Ip6, Mpe, Ripd, Netstart, Intro, Ifconfig, Ioctl, Socket, Hosts, Ip, Route, Config, Ospfd, Netstat, Tcp, Pf, Netintro

NETINTRO(4) - Device Drivers Manual # NETINTRO(4) - Device Drivers Manual NAME # netintro - introduction to networking facilities SYNOPSIS # #include <sys/socket.h> #include <net/route.h> #include <net/if.h> DESCRIPTION # This section is a general introduction to the networking facilities available in the system. Documentation in this part of section 4 is broken up into three areas: protocol families (domains), protocols, and network interfaces. All network protocols are associated with a specific protocol family. ...

TCP(4) - Device Drivers Manual

Tcpbench, Netintro, Getsockopt, Ipsecctl, Socket, Inet, Inet6, Tcpdrop, Ip6, Ip, Tcp

TCP(4) - Device Drivers Manual # TCP(4) - Device Drivers Manual NAME # tcp - Internet Transmission Control Protocol SYNOPSIS # #include <sys/socket.h> #include <netinet/in.h> #include <netinet/tcp.h> int socket(AF_INET, SOCK_STREAM, 0); int socket(AF_INET6, SOCK_STREAM, 0); DESCRIPTION # The TCP protocol provides a reliable, flow-controlled, two-way transmission of data. It is a byte-stream protocol used to support the SOCK_STREAM abstraction. TCP uses the standard Internet address format and, in addition, provides a per-host collection of “port addresses”. ...