I was playing around with Packet Tracer and created this little diagram. Out of curiousity, is there a way for router5 to route packet sent from PC4 to PC6? I added a route on Router5 that looks something like
ip route 192.168.0.0 255.255.255.0 192.168.1.2
but it wouldnt work and when I go through the routing/switching process, I can't seem to figure out why.
- PC4 sends a packet to PC6 and realize that PC6 is on a different network and sends the packet to Router5.
- Router5 sees that packet is destined for the 192.168.0.0 network and looks in its routing table. It finds a route via 192.168.1.2 so it replaces the frame's source/destination MAC address and send it out to Router4.
- Router4 gets the packet and send it out to PC6.
Where did I go wrong/what am I missing?