01-17-2018 05:25 AM - edited 03-10-2019 01:14 PM
Hello guys, I am begginer in Packet Tracer, I have a problem with overlapping on router interfaces, and i don't know why it happens, what they mean or how to prevent them.
The point of this topology is to can ping all devices from any of them also between VLANs, if you know what i mean guys.
When overlapping appreared, i didn't even try to configure 3rd interface on router, i think it would also overlap.
Guys i hope you can help me :)
01-17-2018 05:59 AM - edited 01-17-2018 06:00 AM
Hi there,
Since you want to connect each switch to the router, you will not be able to use routed interfaces on the router, as you will encounter the issue of over-lapping interfaces subnets.
To achieve your topology you need to configure SVIs and trunk the required VLANs to the switches. Try the following:
! no int fa0/0.10 default interface fa0/0 ! int vlan10 ip address 192.168.1.1 255.255.255.0 int vlan20 ip address 192.168.2.1 255.255.255.0 int vlan30 ip address 192.168.3.1 255.255.255.0 ! int range fa0/0-2
no shut switchport switchport mode trunk switchport trunk allowed vlan 10,20,30 !
cheers,
Seb.
01-17-2018 06:05 AM
01-17-2018 09:22 AM
01-17-2018 12:02 PM
Hi there,
The commands I specified earlier must be typed on the router.
Assuming that switch1 is connected to fa0/0, switch2 is connected to fa0/1 and switch3 is connected to fa0/3.
Taking switch1 as an example, lets assume it has the following connectivity:
Fa0/0 -- connects to router fa0/0
fa0/1 -- connects to PC1 (192.168.1.2)
fa0/2 -- connects to PC1 (192.168.2.2)
fa0/3 -- connects to PC1 (192.168.3.2)
...you would need the following configuration:
! vlan 10 vlan 20 vlan 30 ! int fa0/0 switchport mode trunk switchport trunk allowed vlan 10,20,30 ! int range fa0/1-3 switchport mode access spanning-tree portfast no shut ! int fa0/1 switchport access vlan 10 int fa0/2 switchport access vlan 20 int fa0/3 switchport access vlan 30 !
Hope that helps.
cheers,
Seb.
01-18-2018 01:08 AM
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide