Sometimes I have to troubleshoot a network where there are brocade switches (which I personally like) and Ill need to do a packet capture on the network. Its very different in the CLI on how you configure this than Cisco. You dont do the normal "monitor session" commands in Brocade like you do in Cisco. Here below is some sample config I put together and some side notes.
Where your laptop resides:
config t
mirror-port ethernet 1/1/17 <--------- This is the port you connect your packet capture to (your laptop).
If you are monitoring a VLAN:
int ve 1
monitor <--------- This is the vlan that you will be monitoring (capturing packets from)
If you are monitoring a certain port:
interface ethernet 1/1/23 <--------- The port you are going to monitor.
dual-mode 25
mon ethe 1/1/17 both <-------- This says capture packets on int 1/1/23 in both directions and send it 1/1/17.
inline power
trust dscp
Now you are ready to capture packets on the Brocade switch.
This is the retired Shane Killen personal blog, an IT technical blog about configs and topics related to the Network and Security Engineer working with Cisco, Brocade, Check Point, and Palo Alto and Sonicwall. I hope this blog serves you well. -- May The Lord bless you and keep you. May He shine His face upon you, and bring you peace.
Subscribe to:
Post Comments (Atom)
FYI: I know this is old, but on my FCX, if I want to monitor a VLAN, I need to put "monitor" in my VLAN, not the VLAN interface, like you have in your example. ie:
ReplyDeleteconfig t
!
vlan 1
monitor
!
end
How do I disable a mirror port?
ReplyDelete