Hi guys,
Yesterday I tried connecting 2x FreeBSD 9-STABLE machines between each other in a lagg lacp configuration using 2x 1GB igb (igb1 & igb3) interfaces from each machine (the idea is to get the throughput of both connections - the machines are connected to a NAS).
What I did on both machines was:
Then, when I tried pinging ... nothing. The interface is up, active and both ports are working, according to ifconfig:
I read the docs and in there, there was described how-to configure a lacp lagg interface but it was pointed out that the other end of the cable connects to a switch, and therefor my question, do I need to connect each machine to a switch and then configure lacp on the switch or should this simply work if I have 2 boxes back-to-back?
PS: We have HP ProCurve 2910al-48g switches there.
Yesterday I tried connecting 2x FreeBSD 9-STABLE machines between each other in a lagg lacp configuration using 2x 1GB igb (igb1 & igb3) interfaces from each machine (the idea is to get the throughput of both connections - the machines are connected to a NAS).
What I did on both machines was:
Code:
ifconfig igb1 up
ifconfig igb3 up
ifconfig lagg0 create
ifconfig lagg0 up laggproto lacp laggport igb1 laggport igb3
ifconfig lagg0 10.1.0.16x (x= 0 and 2 -> on the first and on the second machine)
Then, when I tried pinging ... nothing. The interface is up, active and both ports are working, according to ifconfig:
Code:
lagg0: flags=8843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST> metric 0 mtu 1500
options=401bb<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,JUMBO_MTU,VLAN_HWCSUM,TSO4,VLAN_HWTSO>
ether 00:25:90:1a:2e:73
inet 10.1.0.162 netmask 0xff000000 broadcast 10.255.255.255
nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
media: Ethernet autoselect
status: active
laggproto lacp
laggport: igb3 flags=1c<ACTIVE,COLLECTING,DISTRIBUTING>
laggport: igb1 flags=1c<ACTIVE,COLLECTING,DISTRIBUTING>
I read the docs and in there, there was described how-to configure a lacp lagg interface but it was pointed out that the other end of the cable connects to a switch, and therefor my question, do I need to connect each machine to a switch and then configure lacp on the switch or should this simply work if I have 2 boxes back-to-back?
PS: We have HP ProCurve 2910al-48g switches there.