1040N/A#
1040N/A# Configuration file to enable InfiniBand Sockets Direct Protocol.
1040N/A#
1040N/A# Each line that does not start with a comment (#) is a rule to indicate when
1040N/A# the SDP transport protocol should be used. The format of a rule is as follows:
1040N/A# ("bind"|"connect") 1*LWSP-char (hostname|ipaddress["/"prefix]) 1*LWSP-char ("*"|port)["-"("*"|port)]
1040N/A#
1040N/A# A "bind" rule indicates that the SDP protocol transport should be used when
1040N/A# a TCP socket binds to an address/port that matches the rule. A "connect" rule
1040N/A# indicates that the SDP protocol transport should be used when an unbound
1040N/A# TCP socket attempts to connect to an address/port that matches the rule.
1040N/A# Addresses may be specified as hostnames or literal Internet Protocol (IP)
1040N/A# addresses. When a literal IP address is used then a prefix length may be used
1040N/A# to indicate the number of bits for matching (useful when a block of addresses
1040N/A# or subnet is allocated to the InfiniBand fabric).
1040N/A
1040N/A# Use SDP for all sockets that bind to specific local addresses
1040N/A#bind 192.168.1.1 *
1040N/A#bind fe80::21b:24ff:fe3d:7896 *
1040N/A
1040N/A# Use SDP for all sockets that bind to the wildcard address in a port range
1040N/A#bind 0.0.0.0 5000-5999
1040N/A#bind ::0 5000-5999
1040N/A
1040N/A# Use SDP when connecting to all application services on 192.168.1.*
1040N/A#connect 192.168.1.0/24 1024-*
1040N/A
1040N/A# Use SDP when connecting to the http server or MySQL database on hpccluster.
1040N/A#connect hpccluster.foo.com 80
1040N/A#connect hpccluster.foo.com 3306