How to design a network using 1700 series cisco router?
Public Comments
1. you should have 2 network interfaces on the router. Set the ip of one to 192.168.1.1, set the interface of the other to 192.168.2.1
subnet mask 255 255 255 0
add static routes on the 1st interface 192.168.2.0 255.255.255.0 192.168.1.1
this tells all traffic to go to the other interface
on the second interface
route add 192.168.1.0 255.255.255.0 192.168.2.1
This lets you talk back to teh other network
If you use internet on either side you will have to add
route add 0.0.0.0 0.0.0.0 192.168.x.1 (whichever side has internet)
this will let interface 2 traffic route internet to the side that has internet access
2. What kind of network? Strictly LAN, or WAN as well? Any advanced services, such as voice?