Search

Showing posts with label Cisco Packet Tracer (PKA). Show all posts
Showing posts with label Cisco Packet Tracer (PKA). Show all posts

0 4.1.4.5 Packet Tracer - Configuring and Verifying a Small Network

Friday, 21 October 2016

RTA - CLI

Router>en
Router#conf t
Router(config)#hostname RTA
RTA(config)#banner motd #Warning!#
RTA(config)#line con 0
RTA(config-line)#password cisco
RTA(config-line)#login
RTA(config-line)#line vty 0 15
RTA(config-line)#password cisco
RTA(config-line)#login
RTA(config-line)#exit
RTA(config)#enable secret class
RTA(config)#int g0/0
RTA(config-if)#ip address 10.10.10.1 255.255.255.0
RTA(config-if)#no shutdown

RTA(config-if)#description Connetion to SW1
RTA(config-if)#int g0/1
RTA(config-if)#ip address 10.10.20.1 255.255.255.0
RTA(config-if)#description Connetion to SW2
RTA(config-if)#no shutdown
RTA(config-if)#end
RTA#copy run start
-----------------------------------------------------------------------------------
PC1 - Desktop - IP Configuration
IP Address          : 10.10.10.10
Subnet Mask       : 255.255.255.0
Default Gatewat     : 10.10.10.1
PC2 - Desktop - IP Configuration
IP Address          : 10.10.20.10
Subnet Mask       : 255.255.255.0
Default Gatewat     : 10.10.20.1
-------------------------------------------------------------------------------------
SW1 - CLI

Password : cisco
SW1>en
Password : class
SW1#conf t
SW1(config)#int vlan 1
SW1(config-if)#ip address 10.10.10.2 255.255.255.0
SW1(config-if)#no shutdown
SW1(config-if)#exit
SW1(config)#ip default-gateway 10.10.10.1
SW1(config)#end
SW1#copy run start
-------------------------------------------------------------------------------------
RTA - CLI

RTA#show ip int brief
RTA#show interfaces
RTA#show ip interface
RTA#show ip route
RTA#show ip route connected

RTA#conf t
RTA(config)#int g0/0
RTA(config-if)#shutdown
RTA(config-if)#end

RTA#conf t
RTA(config)#int g0/0
RTA(config-if)#no shutdown
RTA(config-if)#end

Terima Kasih,Semoga bermanfaat
Read more

0 3.2.2.4 Packet Tracer - Configuring Trunks

Wednesday, 17 December 2014


S1 - CLI

S1>en
S1#sh vlan brief
S1#conf t
S1(config)#int range g1/1-2
S1(config-if-range)#switchport mode trunk
S1(config-if-range)#switchport trunk native vlan 99
S1(config-if-range)#end

-------------------------------------------------------------------------------
S2 - CLI

S2>en
S2#sh vlan brief
S2#show inter trunk
S2#conf t
S2(config)#int g1/1
S2(config-if)#switchport trunk native vlan 99
S2(config-if)#end
S2#sh run
S2#conf t
S2(config)#int g1/1
S2(config-if)#switchport mode trunk
S2(config-if)#end
---------------------------------------------------------------------------------
S3 - CLI

S3>en
S3#conf t
S3(config)#int g1/2
S3(config-if)#switchport mode trunk
S3(config-if)#switchport trunk native vlan 99



-------------------------------------------------------------------------------
Read more

1 5.2.2.4 Packet Tracer - Troubleshooting Inter-VLAN Routing

Friday, 12 December 2014

R1 - CLI

R1>en
R1#conf t
R1(config)#int g0/1.10
R1(config-subif)#no encapsulation dot1Q
R1(config-subif)#end
R1#conf t
R1(config)#int g0/1.30
R1(config-subif)#encapsulation dot1Q 30
R1(config-subif)#end
R1#conf t
R1(config)#int g0/1.10
R1(config-subif)#encapsulation dot1Q 10
R1(config-subif)#ip address 172.17.10.1 255.255.255.0
R1(config-subif)#end
----------------------------------------------------------------------------------------------------
PC3 - Desktop - IP Configuration
Ganti Default Gateway 172.17.10.1 Menjadi 172.17.30.1
----------------------------------------------------------------------------------------------------
S1 - CLI

S1>en
S1#conf t
S1(config)#int g1/1
S1(config-if)#switchport mode trunk
S1(config-if)#end
----------------------------------------------------------------------------------------------------
R1 - CLI

R1#conf t
R1(config)#int g0/1.10
R1(config-subif)#no shutdown
R1(config-subif)#end
 

Read more

3 2.3.1.2 Packet Tracer - Skills Integration Challenge

Tuesday, 18 November 2014

S1 CLI
Switch>en
Switch #conf t
Switch(config) #hostname S1
S1 (config) # banner motd #warning#
S1 (config) # line console 0
S1 (config-line) # pass cisco
S1 (config-line) # login
S1 (config-line) # exit
S1 (config) # enable secret class
S1 (config) # service password-encryption
S1 (config) # int vlan 1
S1 (config-if) # ip add 10.10.10.2 255.255.255.0
S1 (config-if) # no shut
S1 (config-if) # exit

S1 (config) # ip domain-name cisco.com
S1 (config) # crypto key generate rsa
How many bits in the modulus [512]: 1024

S1 (config) # ip ssh version 2
S1 (config) # user admin pass ccna
S1 (config) # line vty 0 15
S1 (config-line) # login local
S1 (config-line) # transport input ssh
S1 (config-line) # end

S1#conf t
S1 (config) # int range fa0/1-24, g1/1-2
S1 (config-if-range) # shutdown
S1 (config-if-range) # exit

S1 (config) # int range fa0/1-2
S1 (config-if-range) # switchport mode access
S1 (config-if-range) # switchport port-security
S1 (config-if-range) # switchport port-security maximum 2
S1 (config-if-range) # switchport port-security mac-address sticky
S1 (config-if-range) # switchport port-security violation shutdown
S1 (config-if-range) # no shutdown
----------------------------------------------------------------------------------------------------
PC1 > Destop > IP Configuration
Ip add           : 10.10.10.10
Subnet mask : 255.255.255.0

PC2 > Destop > IP Configuration
Ip add           : 10.10.10.11
Subnet mask : 255.255.255.0

Terima Kasih,Semoga bermanfaat
Read more

0 2.2.1.4 Packet Tracer - Configuring SSH




PC1 > Desktop > Command Propt
PC>telnet 10.10.10.2
pass : cisco

S1>en
pass : cisco
S1#copy run start
S1#sh run
S1#conf t
S1(config)#service password-encryption
S1(config)#end

S1#conf t
S1(config)#ip domain-name netacad.pka
S1(config)#crypto key generate rsa
How many bits in the modulus [512] : 1024

S1(config)#user administrator password cisco
S1(config)#line vty 0 15
S1(config-line)#no password
S1(config-line)#no login
S1(config-line)#login local
S1(config-line)#transport input ssh
S1(config-line)#exit

Terima Kasih,Semoga bermanfaat
Read more

0 1.3.1.3 Packet Tracer - Skills Integration Challenge



Connetion Console
>Manager - Room-145
>Reception - Room-146

Manager - Desktop - Ip Configuration
Ip Address : 10.10.10.4
Subnet Mask : 255.255.255.0

Reception - Desktop - Ip Configuration
Ip Address : 10.10.10.5
Subnet Mark : 255.255.255.0

Manager - Desktop - Terminal.
Switch>en
Switch#config t
Switch(config)#hostname Room-145
Room-145(config)#enable secret C9WrE
Room-145(config)#line console 0
Room-145(config-line)#password 8ubRu
Room-145(config-line)#line vty 0
Room-145(config-line)#password 8ubRu
Room-145(config-line)#exit
Room-145(config)#service password-encryption
Room-145(config)#banner motd %
Enter TEXT message. End with the character '%'
warning %
Room-145(config)#interface VLAN 1
Room-145(config-if)#ip address 10.10.10.100 255.255.255.0
Room-145(config-if)#no shutdown
Room-145(config-if)#exit
Room-145(config)#exit
Room-145#wr

Reception - Desktop - Terminal
Switch>en
Switch#config t
Switch(config)#hostname Room-146
Room-146(config)#enable secret C9WrE
Room-146(config)#line console 0
Room-146(config-line)#password 8ubRu
Room-146(config-line)#line vty 0
Room-146(config-line)#password 8ubRu
Room-146(config-line)#exit
Room-146(config)#service password-encryption
Room-146(config)#banner motd %
Enter TEXT message. End with the character '%'
warning
Room-146(config)#interface VLAN 1
Room-146(config-if)#ip address 10.10.10.150 255.255.255.0
Room-146(config-if)#no shutdown
Room-146(config-if)#exit
Room-146(config)#exit
Room-146#wr

Terima Kasih,Semoga bermanfaat
Read more
Back to top