cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1503
Views
5
Helpful
3
Replies

Simple SVI / Routed Interface scenario does not work

Photogregor
Level 1
Level 1

Hi everybody,

 I tried to setup a simple L2/L3 routing environment with switch and router, just for learning purpose. Please see attached screenshot for the topology. It does not work, I cannot figure out why. Both PC can ping each other and can ping L3-port on switch(192.168.0.1). From switch I can ping everything and from router as well. But what I cannot ping is from PC to routers IP addresses. I would expect to be able to ping both of them. What's wrong?

 Thanks for anyone to have a look at that,

Stefano

 Excerpts from the configs:

 ---------------------------

Config on Switch 3650:

 ip routing

!

interface GigabitEthernet1/0/1

 switchport access vlan 10

!

interface GigabitEthernet1/0/2

 switchport access vlan 20

!

!

interface GigabitEthernet1/0/24

 no switchport

 ip address 192.168.0.1 255.255.255.248

!

interface Vlan10

 ip address 10.1.1.1 255.0.0.0

!

interface Vlan20

 ip address 10.2.2.1 255.0.0.0

!

ip route 0.0.0.0 0.0.0.0 GigabitEthernet1/0/24

 ---------------------------

Config on Router 2911:

 interface GigabitEthernet0/0

 ip address 192.168.0.2 255.255.255.248

!

interface GigabitEthernet0/1

 ip address 99.0.0.1 255.0.0.0

!

interface GigabitEthernet0/2

 no ip address

 shutdown

!

ip route 0.0.0.0 0.0.0.0 99.0.0.2

1 Accepted Solution

Accepted Solutions

Hi,

PCs are in 10.x.x.x/8 network.
Switch (3650) is configured as a router ("IP routing" enabled).
Router (2911) is connected on one side with the switch on 192.168.0.2/29 network.

PC <--> SW (Layer 3 SW) <--> Router.

You can not ping from PCs to the 2911 router. The reason is there is no route from the router back to the PCs in the router RIB (run "show ip route"). You can simply fix this by adding a static route in the router:
ip route 10.1.1.0 255.0.0.0 192.168.0.1
ip route 10.2.2.0 255.0.0.0 192.168.0.1

HTH,
Meheretab
HTH,
Meheretab

View solution in original post

3 Replies 3

Hi,

PCs are in 10.x.x.x/8 network.
Switch (3650) is configured as a router ("IP routing" enabled).
Router (2911) is connected on one side with the switch on 192.168.0.2/29 network.

PC <--> SW (Layer 3 SW) <--> Router.

You can not ping from PCs to the 2911 router. The reason is there is no route from the router back to the PCs in the router RIB (run "show ip route"). You can simply fix this by adding a static route in the router:
ip route 10.1.1.0 255.0.0.0 192.168.0.1
ip route 10.2.2.0 255.0.0.0 192.168.0.1

HTH,
Meheretab
HTH,
Meheretab

Predrag Jovic
Level 3
Level 3

Route on 2911 is missing (as meheretabm said, but just one route is missing)

 

ip route 10.0.0.0 255.0.0.0 192.168.0.1

 

However:

interface Vlan10
 ip address 10.1.1.1 255.0.0.0
!
interface Vlan20
 ip address 10.2.2.1 255.0.0.0

 

Should not be allowed on device (at least with both interfaces active) since network IP address ranges overlap.

 

Photogregor
Level 1
Level 1

Hi Meheretab, hi Predrag,

 

thanks to both of you. Backwards routes where missing, now it works. And yes, the subnet mask for SVI addresses was wrong in my posting, on the switch it was correct (255.255.255.0).

 

Sorry for creating efforts, should have seen that myself.

 

Regards, Stefano

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community: