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