I've run into the limits of my tech skills and was hoping someone could help. I'm putting together a DSL connection for a satellite office to offset the slow WAN link we have to the facility. I've got a 827 Router setup that I would like to use to route internet traffic out to the internet. I don't, however, want to route out the local ip traffic.
Given this setup:
campus switch: 192.168.3.5 Cisco 827 Router: 192.168.3.45
how would I go about achieving a simple routing table? Basically anything on the 192.x.x.x network goes out to the switch, anything for the internet goes out ATM0.
Would something like this work:
! ip nat inside source list 1 interface Dialer0 overload ip classless ip route 192.0.0.0 255.0.0.0 eth0 ip route 0.0.0.0 0.0.0.0 Dialer1 no ip http server !
for a quick and dirty route?
Thanks.