1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
# Net configuration file example
#
# The file defines node records as follows:
# < node header line: >
# < first connected port >
# < second connected port >
# < ... >
# < last connected port >
# < newlines (at least one) >
# < next record ...>
#
# The header line format is as follows:
# type(Switch|Hca) ports(1-255) "nodeid"(unique string)
#
# The connected port line format is:
# [localport] "remoteid" [remoteport]
#
# The first port in the file is used as the SM port.
#
Switch 8 "Switch1"
[1] "Hca1"[1]
[2] "Hca3"[1]
[3] "Switch2"[3]
[5] "Switch2"[5]
Switch 8 "Switch2"
[1] "Hca2"[1]
[2] "Hca4"[1]
[3] "Switch1"[3]
[5] "Switch1"[5]
Hca 2 "Hca1"
[1] "Switch1"[1]
Hca 2 "Hca2"
[1] "Switch2"[1]
Hca 2 "Hca3"
[1] "Switch1"[2]
Hca 2 "Hca4"
[1] "Switch2"[2]
|