Posted: 4/26/2013 8:14:15 PM EDT
|
I am trying to span a port on a Cisco 3550 switch. Here is what I am doing
Config # monitor session 1 source interface FastEthernet 0/1 Config# monitor session 1 destination interface FastEthernet 0/22 #sh mon session 1 Session 1 --------- Type : Local Session Source Ports : Both : Fa0/1 Destination Ports : Fa0/22 Encapsulation : Native Ingress : Disabled All that I am seeing on port 22 is ARP traffic. What am I doing wrong? |
|
Quoted:
I am trying to span a port on a Cisco 3550 switch. Here is what I am doing Config # monitor session 1 source interface FastEthernet 0/1 Config# monitor session 1 destination interface FastEthernet 0/22 #sh mon session 1 Session 1 --------- Type : Local Session Source Ports : Both : Fa0/1 Destination Ports : Fa0/22 Encapsulation : Native Ingress : Disabled All that I am seeing on port 22 is ARP traffic. What am I doing wrong? Ingress: disabled - that right? I haven't had to SPAN a port in 12 years. ETA - I can't find anything wrong. Are you sure you're actually getting traffic on 0/1? |
|
Quoted:
Quoted:
I am trying to span a port on a Cisco 3550 switch. Here is what I am doing Config # monitor session 1 source interface FastEthernet 0/1 Config# monitor session 1 destination interface FastEthernet 0/22 #sh mon session 1 Session 1 --------- Type : Local Session Source Ports : Both : Fa0/1 Destination Ports : Fa0/22 Encapsulation : Native Ingress : Disabled All that I am seeing on port 22 is ARP traffic. What am I doing wrong? Ingress: disabled - that right? I haven't had to SPAN a port in 12 years. I believe ingress is only used for spanning vlans. I did some playing with enabling ingress and it didn't seem to make a difference. |
|
Your syntax looks fine.
C2950#configure terminal C2950(config)# C2950(config)#monitor session 1 source interface fastethernet 0/2 !--- This configures interface Fast Ethernet 0/2 as source port. C2950(config)#monitor session 1 destination interface fastethernet 0/3 !--- This configures interface Fast Ethernet 0/3 as destination port. C2950(config)# C2950#show monitor session 1 Session 1 --------- Source Ports: RX Only: None TX Only: None Both: Fa0/2 Destination Ports: Fa0/3 C2950# |
That's possible. Do you see anything obviously wrong?
FastEthernet0/1 is up, line protocol is up (connected) FastEthernet0/22 is up, line protocol is down (monitoring) |
|
A few things: 1. I know the output shows native vlan, but have you tried explicitly setting it: monitor session 1 destination interface Fa 0/22 encapsulation dot1q2. The 2950 and 3550 can be a bastard with the duplex/speed. Try setting those and not relying on auto under the interface. 3. All your vlans exist and mapped properly? ETA: try adding "both" to end of your first monitor session statement to tell it to capture both in/outbound traffic. |
|
I got it figured out. Have a look if you are interested.
http://www.ar15.com/forums/t_1_5/1476433_Cisco_Port_Spanning_Problem.html |