Switches, Hubs, and Modems
1748163 Members
3726 Online
108758 Solutions
New Discussion юеВ

IP routing issue between vlans on 2650

 

IP routing issue between vlans on 2650

I have setup a 2650 with another vlan aside from the default vlan to replace the routing duties of an old cisco 2600 router. The default vlan is connected to the main subnet and the remote vlan is connected to the remote subnet. This is pretty vanilla I know and I have setup ip routing between the two vlans with a default route back to my main router which is a cisco 3640. The problem is I cannot ping the default router from the remote vlan. This means I cannot get to the remote hosts on the default vlan. Something seems to be blocking me from getting to the default route that the old cisco router has no problem with. Now from the switch console I have no problem getting to any ip on the default vlan. Here is whte result of my sh run command but I have a feeling it has nothing to do with the switch.

ProCurve Switch 2650# sh run

Running configuration:

; J4899B Configuration Editor; Created on release #H.10.31

hostname "ProCurve Switch 2650"
time timezone -4
time daylight-time-rule Continental-US-and-Canada

ip routing
snmp-server community "public" Unrestricted
vlan 1
name "DEFAULT_VLAN"
untagged 1-49
ip address 192.9.200.108 255.255.255.0
no untagged 50
exit
vlan 2
name "vlan202sub"
untagged 50
ip address 192.9.202.250 255.255.255.0
exit
ip route 0.0.0.0 0.0.0.0 192.9.200.237

password manager

ProCurve Switch 2650#

When I do a traceroute from the remote subnet it stops right at the ip address for the remote vlan.

Any help?
2 REPLIES 2
Mohieddin Kharnoub
Honored Contributor

Re: IP routing issue between vlans on 2650

Hi

Did you manage to add a static route back on the other router (not the default route on the 2600).

So you have in fact 2 routers connected to each other, and on your cisco router you have to add:

ip route 192.9.202.250 255.255.255.0 192.9.200.108

Also, did you add any device to Vlan2, because Vlan2 IP won;t be inserted in the routing table unless it has an active link.

Good Luck !!!
Science for Everyone

Re: IP routing issue between vlans on 2650

Thaanks Moehieddin,

That Worked, I appreciate it.