Hello all,
Ok, so I want to do a building-to-building iperf bandwidth test. Our pipe between the buildings are 10G. I set up a Win11 box with a 10G fiber card and a 10G SFP+. I connected the other 10G SFP+ to an EX3400 xe-1/2/1 port, which I configured as trunk mode and assigned it a vlan who's subnet is 10.100.128.0/22. I gave the Windows box a static IP, also within the same subnet but I cannot ping back and forth. I also disabled the firewall on the Windows box just to make sure ICMP wasn't being blocked. I used an existing VLAN that we use for the access ports. Do the 10G(xe) ports need to be set up with encapsulation? Or maybe what I'm trying to accomplish isn't possible. Any advice on this is appreciated.
Edit: I'm thinking the xe-1/2/1 needs to set up as an access port, not a trunk. Correct me if I'm wrong. Thanks
Config should look something like this:
**********************************************************************************
configure
# Configure the interface as access port
set interfaces xe-1/2/1 unit 0 family ethernet-switching interface-mode access
# Assign to a VLAN (replace 'default' with your desired VLAN name)
set interfaces xe-1/2/1 unit 0 family ethernet-switching vlan members default
# Optional: Set port description
set interfaces xe-1/2/1 description "Computer Connection"
# Optional: Configure speed/duplex if needed (usually auto-negotiation works)
set interfaces xe-1/2/1 speed 1g
set interfaces xe-1/2/1 link-mode full-duplex
# Optional: Enable PoE if your switch supports it and device needs power
set interfaces xe-1/2/1 unit 0 family ethernet-switching port-mode access
commit
-------------------------------------------