can BeeGFS utilize multiple network cards simultaneously ? #9
-
Dear Development Team, Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @yxmingming, This is expected behavior. In BeeGFS when you specify multiple network cards/interfaces, only the first one listed is used unless that interface fails, at which point connections will fall back to the next interface (and so on). If you want to use multiple network cards/interfaces simultaneously you should configure network bonding (i.e., link aggregation) in Linux. This will combine multiple physical interfaces into a logical interface that you can then use with BeeGFS. One exception to this is if you're using RDMA instead of TCP. Then you can configure BeeGFS clients to automatically use multiple RDMA NICs. However on the server-side still only a single interface is used unless you configure bonding. |
Beta Was this translation helpful? Give feedback.
Hi @yxmingming,
This is expected behavior. In BeeGFS when you specify multiple network cards/interfaces, only the first one listed is used unless that interface fails, at which point connections will fall back to the next interface (and so on). If you want to use multiple network cards/interfaces simultaneously you should configure network bonding (i.e., link aggregation) in Linux. This will combine multiple physical interfaces into a logical interface that you can then use with BeeGFS.
One exception to this is if you're using RDMA instead of TCP. Then you can configure BeeGFS clients to automatically use multiple RDMA NICs. However on the server-side still only a single interface is used…