BCM57504 has 4 physical ports, each split in 4 logical ports ending up with 16 interfaces: bnxt0 - bnxt15
class=0x020000 rev=0x12 hdr=0x00 vendor=0x14e4 device=0x1801 subvendor=0x14e4 subdevice=0x5045
I'm connecting physical port 1 and 2 to Cisco Nexus switches in a lacp bundle, trunking interfaces and allowed vlans. Just as we configure for esxi and other platforms.
bnxt0 is physical port 1, logical port 1
bnxt1 is physical port 2, logical port 1
..
bnxt4 is physical port 1, logical port 2
I don't see my laggports as ACTIVE
ifconfig bnxt0 (or bnxt1) both show status: active
I also tried without lagg and just configure an allowed vlan on bnxt0:
ping to a working host in vlan205 immediately give sendto: Network is down
Does someone have experience with the BCM57504 or similar cards as I assume I'm missing options in my config
Thanks
class=0x020000 rev=0x12 hdr=0x00 vendor=0x14e4 device=0x1801 subvendor=0x14e4 subdevice=0x5045
I'm connecting physical port 1 and 2 to Cisco Nexus switches in a lacp bundle, trunking interfaces and allowed vlans. Just as we configure for esxi and other platforms.
bnxt0 is physical port 1, logical port 1
bnxt1 is physical port 2, logical port 1
..
bnxt4 is physical port 1, logical port 2
Code:
ifconfig bnxt0 up
ifconfig bnxt1 up
Code:
ifconfig lagg0 create
ifconfig lagg0 up laggproto lacp laggport bnxt0 laggport bnxt1
ifconfig lagg0 up
ifconfig -v lagg0
lagg0: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
options=4e507bb<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,JUMBO_MTU,VLAN_HWCSUM,TSO4,TSO6,LRO,VLAN_HWFILTER,VLAN_HWTSO,RXCSUM_IPV6,TXCSUM_IPV6,HWSTATS,MEXTPG>
ether 04:32:01:4e:69:b0
hwaddr 00:00:00:00:00:00
laggproto lacp lagghash l2,l3,l4
lagg options:
flags=14<USE_NUMA,LACP_STRICT>
flowid_shift: 16
lagg statistics:
active ports: 0
flapping: 0
lag id: [(0000,00-00-00-00-00-00,0000,0000,0000),
(0000,00-00-00-00-00-00,0000,0000,0000)]
laggport: bnxt0 flags=0<> state=45<ACTIVITY,AGGREGATION,DEFAULTED>
[(8000,04-32-01-4E-69-B0,0299,8000,0004),
(FFFF,00-00-00-00-00-00,0000,FFFF,0000)]
laggport: bnxt1 flags=0<> state=45<ACTIVITY,AGGREGATION,DEFAULTED>
[(8000,04-32-01-4E-69-B0,0299,8000,0005),
(FFFF,00-00-00-00-00-00,0000,FFFF,0000)]
groups: lagg
media: Ethernet autoselect
status: active
nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
drivername: lagg0
ifconfig bnxt0 (or bnxt1) both show status: active
I also tried without lagg and just configure an allowed vlan on bnxt0:
Code:
ifconfig vlan205 create
ifconfig vlan205 vlan 205 vlandev bnxt0 100.205.0.3 netmask 255.255.255.0
ifconfig vlan205 up
ping to a working host in vlan205 immediately give sendto: Network is down
Does someone have experience with the BCM57504 or similar cards as I assume I'm missing options in my config
Thanks