I have the following topology:
Click here, unfortunently I don't have enough rep to post images
Essentially I would like the packet flow to go from PC1, to the Core Switch, to the Edge Switch, and to the Firewall. I need to "bump the wire" to force traffic through the IPS. Ideally I would put it inline between the edge and firewall but there are issues with that (different interface types) so I need to do it this way.
The theory is as follows.
Packet is destined for the internet, the client doesn't know how to get there so it directs the packet to the default route. The source MAC is the client, the destination Mac is the PC.
The Core siwtch recieves it. It checks it's CAM table and knows that 10.1.0.1's MAC address is somewhere on port 2.
The Edge switch recieves it and in it's CAM table it doesn't have a direct entry for the MAC of 10.1.0.1 in VLAN 10. It does know it's in port 3 though.
Through the IPS it goes.
Now the Edge switch sees that 10.1.0.1's MAC address is on port 1.
The point is I don't want to "route" from port 2 to 1 directly through the backplane, I need to force it to go through the IPS.
Here's my proposed config
Edge:
int FastEthernet0/1
switchport mode access
switchport access vlan 20
int FastEthernet0/4
switchport mode access
switchport access vlan 20
int FastEthernet0/2
switchport mode access
switchport access vlan 10
int FastEthernet0/3
switchport mode access
switchport access vlan 10
Core:
int FastEthernet0/1
switchport mode access
switchport access vlan 10
int FastEthernet0/4
switchport mode access
switchport access vlan 10
Before you laugh I am using a 2960 as the edge and a 3560 for the Core. I am testing this in a lab environment ;).
Is this "proper" or is there a better way of doing this?