Ad Home

Como simular un switch en GNS3

Share:

Como simular un switch en GNS3 diferente al que viene por defecto ?


REQUISITOS:

GNS3
IOS:    vIOS-L2.vmdk

Seguir el paso a paso:

 Crear el QEMU VM y utilizar la siguientes configuraciones







Opcional cambiar el símbolo.



Arrastrar, crear el diseño de red y encender los dispositivos.





CONFIGURACIONES


R1#
interface FastEthernet0/0.10
 encapsulation dot1Q 10
 ip address 10.0.10.10 255.255.255.0
--------------------------
SW1#
interface GigabitEthernet0/0
 switchport trunk encapsulation dot1q
 switchport mode trunk
 no negotiation auto
!
interface GigabitEthernet0/1
 switchport access vlan 10
 media-type rj45
 negotiation auto
---------------------------------
PC1 : 10.0.10.1 255.255.255.0 gateway 10.0.10.10


PRUEBAS


SWL#sh vlan

VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
1    default                          active    Gi0/2, Gi0/3, Gi1/0, Gi1/1
                                                Gi1/2, Gi1/3
10   VLAN0010                         active    Gi0/1
100  VLAN100                          active  
200  VLAN0200                         active  
300  VLAN0300                         active  
1002 fddi-default                     act/unsup
1003 trcrf-default                    act/unsup
1004 fddinet-default                  act/unsup
1005 trbrf-default                    act/unsup


R1#ping 10.0.10.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.10.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 12/31/52 ms

PC1> ping 10.0.10.10
84 bytes from 10.0.10.10 icmp_seq=1 ttl=255 time=64.000 ms
84 bytes from 10.0.10.10 icmp_seq=2 ttl=255 time=92.000 ms
84 bytes from 10.0.10.10 icmp_seq=3 ttl=255 time=31.000 ms

Ad Home