|
|
Question : Problem: How to: configure 2 Cisco 3560 siwtches for PTP WAN
|
|
I am looking for as much information as I can on how to properly cofigure 2 CIsco 3560G switches to utilize a PTP WAN.
|
Answer : Problem: How to: configure 2 Cisco 3560 siwtches for PTP WAN
|
|
its fairly easy to setup - just configure a vlan (we use 3040) on both switches set the vlan on each switch with an ip in the same range (192.168.0.1/24 192.168.0.2/24) turn on "ip routing" on both switches on switch 1 (192.168.0.1) put an ip route for each of the networks connected to switch 2 (192.168.0.2) like ip route 10.2.0.0 255.255.255.0 192.168.0.2 then on switch 2 put a route for each net on switch 1 like so ip route 10.1.0.0 255.255.255.0 192.168.0.1 IPs are just examples use whatever fits
Then set a port on each switch like conf t int gi 1/2 switchport mode trunk switchport trunk allowed 3040 switchport trunk encapsulation dot1q
connect that port to the layer two line - job done - you may need a different encapsulation but that works for us
check this out for more info http://www.ciscopress.com/articles/article.asp?p=29803&seqNum=3&rl=1
|
|
|