trying to do this lab with inter-VLAN routing with SVI, but I can't get it to work and can't figure out whats missing.
PC 1 and 2 are in VLAN 10 (10.10.10.1/24)
PC 3 and 4 are in VLAN 20 (10.20.20.1/24)
I've configured L3 switch in both Packet Tracer and GNS3 with these commands:
ip routingint vlan 10ip address 10.10.10.1 255.255.255.0int vlan 20ip address 10.20.20.1 255.255.255.0int range f0/1-2switchport mode accessswitchport access vlan 10int range f0/3-4switchport mode accessswitchport access vlan 20show ip int brief
10 VLAN0010 active Fa0/1, Fa0/2
20 VLAN0020 active Fa0/3, Fa0/4
show vlan brief
FastEthernet0/1 unassigned YES unset up up
FastEthernet0/2 unassigned YES unset up up
FastEthernet0/3 unassigned YES unset up up
FastEthernet0/4 unassigned YES unset up up
Vlan1 unassigned YES unset administratively down down
Vlan10 10.10.10.1 YES manual up up
Vlan20 10.20.20.1 YES manual up up
ping within VLAN works:
PC1 can ping PC2 and 10.10.10.1
PC2 can ping PC1 and 10.10.10.1
PC3 can ping PC4 and 10.20.20.1
PC4 can ping PC3 and 10.20.20.1
but inter-VLAN pings fail:
PC1 cannot ping PC3/4/10.20.20.1
PC2 cannot ping PC3/4/10.20.20.1
PC3 cannot ping PC1/2/10.10.10.1
PC4 cannot ping PC1/2/10.10.10.1
sames results in
packet tracer and
GNS3.
is something missing? thanks for reading.