what do I need to register in the router so that I can ping other networks in the same vlan?

Viewed 11

How to solve this situation? I have a network and in this network there are: 2 pcs, 2 switches and 1 router.

they are configured -->

pc13 = ip 10.0.10.12/24 GW 10.0.10.254 pc14 = ip 10.10.10.1/24 GW 10.10.10.254

switch1 =

interface Ethernet0/0
 description "To Switch-1"
 switchport trunk encapsulation dot1q
 switchport mode trunk

switch2=

interface Ethernet0/0
     description "To Switch-2"
     switchport trunk encapsulation dot1q
     switchport mode trunk

router =

nterface Ethernet0/0
 description "To Switch-2"
 no ip address
!
interface Ethernet0/0.10
 description VLAN-10
 encapsulation dot1Q 10
 ip address 10.0.10.254 255.255.255.0
    
ip dhcp pool VLAN-10
 network 10.0.10.0 255.255.255.0
 default-router 10.0.10.254
 domain-name VLAN-10.google.com
 dns-server 8.8.8.8
ip dhcp excluded-address 10.0.10.1 10.0.10.9
ip dhcp excluded-address 10.0.10.101 10.0.10.254

I need to configure the router so that it can ping another network in the same vlan.

10.0.10.0/24 works with all other networks 10.0.10-60.0/24 .

but I need to understand how to do and how it works so that the computer can see another network in the same vlan. IP 10.10.10.1 and 10.0.10.12 no longer see each other, although they are in the same vlan.

0 Answers
Related