Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cisco 1750 Route Problem

Status
Not open for further replies.

Tmcdon05

Programmer
Apr 11, 2013
2
US
First of all, I am NOT a Cisco expert! I can move around, but never wanted to get into them too deeply, so don't holler at me!

I have a Cisco 1750 router and am trying to figure out what the routing is telling me, I will detail it below from the info I get when I do a show ip route...(I have two routers, the main router is a Buffalo and the other is a Cisco - The Cisco has two addresses - 192.168.1.2 & 205.190.90.254)

Gateway of last resport is 192.168.1.1 to network 0.0.0.0
207.187.49.0/32 is subnetted, 1 subnets
S 207.187.49.1 [1/0] via 205.190.90.198
C 192.168.1.0/24 is directly connected, FastEthernet0
205.190.90.0/26 is subnetted, 1 subnets
C 205.190.90.192 is directly connected, FastEthernet0
S* 0.0.0.0/0 [1/0] via 192.168.1.1

My Buffalo router has two static routes, one for a destination lan of 207.187.49.1 with a gateway of 192.168.1.2, and the other is destination lan 205.190.90.0 with gateway of 192.168.1.2.
From what I understand, traffic going to 207.189.49.0 is routed through the Buffalo over to the Cisco, don't know what the second static route is for, I think it is a holdover from an earlier date when our in-house business system wasn't accessed over the web but was actually in house (don't know that for sure)

I just don't understand enough about Cisco to know eactly what the items above are telling me. Thanks for any info...
 
Post a sh run, that'll tell a lot

ip access-list extended IP-Options-and-Powerball
deny ip any any winning-powerball-ticket
permit ip any any option any-options
!
class-map ACL-Options-and-Powerball
match access-group name IP-Options-and-Powerball
!
policy-map CoPP-POLICY
class ACL-Options-and-Powerball
drop
!
control-plane
service-policy input CoPP-POLICY
 
hostname Router
enable secret 5 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
memory-size iomem 25
ip subnet-zero
!
interface Ethernet0
ip address 192.168.1.2 255.255.255.0
shutdown
half-duplex
!
interface FastEthernet0
ip address 192.168.1.2 255.255.255.0 secondary
ip address 205.190.90.254 255.255.255.192
speed auto
!
ip classless
ip route 0.0.0.0 0.0.0.0 192.168.1.1
ip route 207.187.49.1 255.255.255.255 205.190.90.198
no ip http server
!
dialer-list 1 protocol ip permit
dialer-list 1 protocol ipx permit
!
line con 0
line aux 0
line vty 0 4
password xxxxxxxxxxxxxxx
login
!
no scheduler allocate
end

Router#
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top