SlideShare a Scribd company logo
1 of 24
Download to read offline
CCNA : Intro To Cisco IOS
Lab Practice
Profile
Nama : M. Taufik Nurhuda
Pekerjaan : Guru TKJ, IT Support, Mikrotik Academy Trainer SMK
Pelita Pesawaran
Facebook : https://www.facebook.com/taufik.nurhuda.5/
LinkedIn : https://www.linkedin.com/in/taufik-nurhuda-5224b1180/
Website : www.taufiknurhuda.web.id
Topic Discussion
● Basic Mode
● How To Access IOS Cisco Router/Switch
● Configure Initial Setting on IOS Cisco Router/Switch
● Interface Configuration
● Display Config
● Edit/Remove Config
● Configure Telnet/SSH Remote
● Backup & Restore Config
● IOS vs Mikrotik Syntax
IOS Mode
● Setup
○ This mode appear when the NVRAM router/switch is empty or not have configuration.
● User Mode
○ For Monitoring Only (limited show, ping, traceroute)
○ Marked by : Router>
● Privileges Mode
○ There are several command for monitoring and troubleshooting (show, ping, copy, trace,
erase)
○ Marked by : Router#
● Global Configuration Mode
○ For Configuration Cisco IOS router/switch
○ Marked by : Router(config)#
● Interface Mode
○ For interface / ip configuration
○ Marked by : Router(config-if)#
Configuration Access
● Using Console
○ Console Cable to USB/RJ45
○ Remote console with Putty (Windows OS) and minicom -s (Linux OS)
● Remote Access (Need for IP Address)
○ Telnet
○ SSH
Basic Configuration
● IOS Login
○ User mode to Privileges mode
Router> enable
Router#
○ Privileges mode to Global config mode
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#
● Hostname
○ Router(config)#
hostname ROUTER-ME
○ ROUTER-ME(config)#
● Disable DNS Lookup
○ ROUTER-ME(config)#
no ip domain-lookup
○ ROUTER-ME(config)#
Basic Configuration
● Secure Privileges Mode
○ ROUTER-ME(config)#enable secret mypass
○ ROUTER-ME(config)#exit
TEST THE CONFIGURATION :
○ ROUTER-ME>enable
○ Password: ->enter_the_password
○ ROUTER-ME#
● Secure Global Config Mode
○ ROUTER-ME(config)#line console 0
○ ROUTER-ME(config-line)# password pass123
○ ROUTER-ME(config-line)# login
○ ROUTER-ME(config-line)#
TEST THE CONFIGURATION
○ User Access Verification
○ Password: ->enter the password
○ ROUTER-ME>
Basic Configuration
● Secure Remote access Telnet/SSH (VTY Password)
○ ROUTER-ME(config)#
line vty 0 4
○ ROUTER-ME(config-line)#
password mypass
○ ROUTER-ME(config-line)#
login
○ ROUTER-ME(config-line)#
exit
○ ROUTER-ME(config)#
● Encrypt All Plaintext passwords
○ ROUTER-ME(config)#service password-encryption
○ ROUTER-ME(config)#
● Provide Legal Notification on Cisco IOS (MOTD)
○ ROUTER-ME(config)#banner motd "THIS IS MY ROUTER"
TEST THE CONFIGURATION :
Press RETURN to get started!
THIS IS MY ROUTER
User Access Verification
Password:
● Save the configuration
○ ROUTER-ME#copy running-config startup-config
○ Destination filename [startup-config]? PressEnter
○ Building configuration...
○ [OK]
Interface Configuration
● IP configuration
○ ROUTER-ME(config)#interface gig0/0/0
○ ROUTER-ME(config-if)#ip address 192.168.10.1 255.255.255.0
● Interface description
○ ROUTER-ME(config-if)#description "Interface for LAN Networks"
● Enable Interface
○ ROUTER-ME(config-if)#no shutdown
○ ROUTER-ME(config-if)#
○ %LINK-5-CHANGED: Interface GigabitEthernet0/0/0, changed state to up
○ %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed
state to up
○ ROUTER-ME(config-if)#
● For Disable Interface use command :
○ ROUTER-ME(config-if)# shutdown
Display Config
● Show full configuration
○ ROUTER-ME#show running-config
○ Building configuration...
○
○ Current configuration : 850 bytes
○ !
○ version 16.6.4
○ no service timestamps log datetime msec
○ no service timestamps debug datetime msec
○ service password-encryption
○ !
○ hostname ROUTER-ME
○ !
○ enable secret 5 $1$mERr$OP8FVb8wv5vae/zbiXUkx/
○ !
○ ip cef
○ no ipv6 cef
○ !
○ spanning-tree mode pvst
!
○ interface GigabitEthernet0/0/0
○ description "Interface for LAN Networks"
○ ip address 192.168.10.1 255.255.255.0
○ duplex auto
○ speed auto
○ !
Display Config
● Show summary interface information
○ ROUTER-ME#show ip interface brief
○ Interface IP-Address OK? Method Status
Protocol
○ GigabitEthernet0/0/0 192.168.10.1 YES manual up
up
○ GigabitEthernet0/0/1 unassigned YES unset administratively
down down
○ GigabitEthernet0/0/2 unassigned YES unset administratively
down down
○ Vlan1 unassigned YES unset administratively
down down
○ ROUTER-ME#
Display Config
● Using do command for show config
○ ROUTER-ME(config)#do show ip interface brief
○ Interface IP-Address OK? Method Status
Protocol
○ GigabitEthernet0/0/0 192.168.10.1 YES manual up up
○ GigabitEthernet0/0/1 unassigned YES unset administratively down down
○ GigabitEthernet0/0/2 unassigned YES unset administratively down down
○ Vlan1 unassigned YES unset administratively down down
○ ROUTER-ME(config)#do copy running-config startup-config
○ Destination filename [startup-config]?
○ Building configuration...
○ [OK]
○ ROUTER-ME(config)#
Edit/Remove Config
● Edit IP address configuration
○ ROUTER-ME(config)#do show ip int brief
○ Interface IP-Address OK? Method Status Protocol
○ GigabitEthernet0/0/0 192.168.10.1 YES manual up up
○ GigabitEthernet0/0/1 unassigned YES unset administratively down down
○ GigabitEthernet0/0/2 unassigned YES unset administratively down down
○ Vlan1 unassigned YES unset administratively down down
○ ROUTER-ME(config)#int gig0/0/0
○ ROUTER-ME(config-if)#ip add 192.168.20.1 255.255.255.0
○ ROUTER-ME(config-if)#exit
○ ROUTER-ME(config)#do show ip int brief
○ Interface IP-Address OK? Method Status Protocol
○ GigabitEthernet0/0/0 192.168.20.1 YES manual up up
○ GigabitEthernet0/0/1 unassigned YES unset administratively down down
○ GigabitEthernet0/0/2 unassigned YES unset administratively down down
○ Vlan1 unassigned YES unset administratively down down
○ ROUTER-ME(config)#
Edit/Remove Config
● Remove IP Address configuration
○ ROUTER-ME(config)# do show ip int brief
○ Interface IP-Address OK? Method Status Protocol
○ GigabitEthernet0/0/0 192.168.20.1 YES manual up up
○ GigabitEthernet0/0/1 unassigned YES unset administratively down down
○ GigabitEthernet0/0/2 unassigned YES unset administratively down down
○ Vlan1 unassigned YES unset administratively down down
○ ROUTER-ME(config)# int gig0/0/0
○ ROUTER-ME(config-if)# no ip add 192.168.20.1 255.255.255.0
○ ROUTER-ME(config-if)# exit
○ ROUTER-ME(config)# do show ip int brief
○ Interface IP-Address OK? Method Status Protocol
○ GigabitEthernet0/0/0 unassigned YES manual up up
○ GigabitEthernet0/0/1 unassigned YES unset administratively down down
○ GigabitEthernet0/0/2 unassigned YES unset administratively down down
○ Vlan1 unassigned YES unset administratively down down
○ ROUTER-ME(config)#
Configure Telnet Remote
● For access Telnet/SSH you must configure privileges password using enable password or enable
secret command first
● Configure VTY Password
● Test connect from client
C:>telnet 192.168.10.1
Trying 192.168.10.1 ...OpenTHIS IS MY ROUTER
User Access Verification
Password: ->EnterVTYPassword
ROUTER-ME>enable
Password:
ROUTER-ME#
Configure SSH Remote
● Configure domain router
● Configure username and password login
● Configure transport input ssh on line vty
● Generate Crypto key rsa 1024
○ ROUTER-ME(config)#ip domain-name taufik.net
○ ROUTER-ME(config)#username taufik secret taufikpass
○ ROUTER-ME(config)#line vty 0 4
○ ROUTER-ME(config-line)# transport input ssh
○ ROUTER-ME(config-line)# login local
○ ROUTER-ME(config-line)# exit
○ ROUTER-ME(config)#crypto key generate rsa
○ The name for the keys will be: ROUTER-ME.taufik.net
○ Choose the size of the key modulus in the range of 360 to 2048 for your
○ General Purpose Keys. Choosing a key modulus greater than 512 may take
○ a few minutes.
○ How many bits in the modulus [512]: 1024
○ % Generating 1024 bit RSA keys, keys will be non-exportable...[OK]
○ ROUTER-ME(config)#
Backup & Restore Config
● Backup configuration
● Make sure your router can connected to TFTP Server and enable TFTP Server.
● Setting Backup from router/switch.
ROUTER-ME#copy running-config tftp:
Address or name of remote host []? 192.168.50.2 <-IP Server TFTP
Destination filename [ROUTER-ME-confg]?<-PressEnter
Writing running-config....!!
[OK - 785 bytes]
785 bytes copied in 3.004 secs (261 bytes/sec)
ROUTER-ME#
Cek Backup file from TFTP Server
Backup & Restore Config
● Reset configuration
○ ROUTER-ME#write erase
○ Erasing the nvram filesystem will remove all configuration files!
Continue? [confirm]
○ [OK]
○ Erase of nvram: complete
○ %SYS-7-NV_BLOCK_INIT: Initialized the geometry of nvram
○ ROUTER-ME#reload
○ Proceed with reload? [confirm]
Backup & Restore Config
● Restore configuration
Router#copy tftp: running-config
Address or name of remote host []? 192.168.50.2 <-IPTFTPSERVER
Source filename []? ROUTER-ME-config <-SourceFileBackupName
Destination filename [running-config]? <-PressEnter
Accessing tftp://192.168.50.2/ROUTER-ME-config...
%Error opening tftp://192.168.50.2/ROUTER-ME-config (No such file or directory)
Router#copy tftp: running-config
Address or name of remote host []? 192.168.50.2
Source filename []? ROUTER-ME-confg
Destination filename [running-config]?
Accessing tftp://192.168.50.2/ROUTER-ME-confg...
Loading ROUTER-ME-confg from 192.168.50.2: !
[OK - 785 bytes]
785 bytes copied in 0 secs
ROUTER-ME#
Cisco IOS vs Mikrotik RouterOS Syntax
● Add ip address on interface
● Add route/Default Gateway
Cisco IOS vs Mikrotik RouterOS Syntax
● Reset Configuration
Cisco IOS vs Mikrotik RouterOS
Remote Access
● Mikrotik
○ IP Address Based (winbox, Webfig, Telnet,SSH,FTP)
○ Mac Address (Neighbors)
● Cisco
○ IP Address (Telnet,SSH)
THANKS

More Related Content

What's hot

Best Current Practice (BCP) 38 Ingress Filtering for Security
Best Current Practice (BCP) 38 Ingress Filtering for SecurityBest Current Practice (BCP) 38 Ingress Filtering for Security
Best Current Practice (BCP) 38 Ingress Filtering for SecurityGLC Networks
 
Layer 7 Firewall on Mikrotik
Layer 7 Firewall on MikrotikLayer 7 Firewall on Mikrotik
Layer 7 Firewall on MikrotikGLC Networks
 
Troubleshooting Layer 2 Ethernet Problem: Loop, Broadcast, Security
Troubleshooting Layer 2 Ethernet Problem: Loop, Broadcast, Security Troubleshooting Layer 2 Ethernet Problem: Loop, Broadcast, Security
Troubleshooting Layer 2 Ethernet Problem: Loop, Broadcast, Security GLC Networks
 
Internet Protocol Deep-Dive
Internet Protocol Deep-DiveInternet Protocol Deep-Dive
Internet Protocol Deep-DiveGLC Networks
 
Automatic Backup via FTP - Part 1
Automatic Backup via FTP - Part 1Automatic Backup via FTP - Part 1
Automatic Backup via FTP - Part 1GLC Networks
 
Mikrotik Bridge Deep Dive
Mikrotik Bridge Deep DiveMikrotik Bridge Deep Dive
Mikrotik Bridge Deep DiveGLC Networks
 
Up and Running DNS Service
Up and Running DNS ServiceUp and Running DNS Service
Up and Running DNS ServiceGLC Networks
 
Radio Optimization In Telco - Part 1
Radio Optimization In Telco - Part 1Radio Optimization In Telco - Part 1
Radio Optimization In Telco - Part 1GLC Networks
 
Mikrotik IP Settings For Performance and Security
Mikrotik IP Settings For Performance and SecurityMikrotik IP Settings For Performance and Security
Mikrotik IP Settings For Performance and SecurityGLC Networks
 
Manage Your Router with Dynamic Public IP
Manage Your Router with Dynamic Public IPManage Your Router with Dynamic Public IP
Manage Your Router with Dynamic Public IPGLC Networks
 
BGP on RouterOS7 -Part 1
BGP on RouterOS7 -Part 1BGP on RouterOS7 -Part 1
BGP on RouterOS7 -Part 1GLC Networks
 
Socket Programming with Python
Socket Programming with PythonSocket Programming with Python
Socket Programming with PythonGLC Networks
 
Building a Web Server with NGINX
Building a Web Server with NGINXBuilding a Web Server with NGINX
Building a Web Server with NGINXGLC Networks
 
Running Moodle for High Concurrent Users
Running Moodle for High Concurrent UsersRunning Moodle for High Concurrent Users
Running Moodle for High Concurrent UsersGLC Networks
 
Up and Running SSH Service - Part 1
Up and Running SSH Service - Part 1Up and Running SSH Service - Part 1
Up and Running SSH Service - Part 1GLC Networks
 
Using Mikrotik Switch Features to Improve Your Network
Using Mikrotik Switch Features to Improve Your Network Using Mikrotik Switch Features to Improve Your Network
Using Mikrotik Switch Features to Improve Your Network GLC Networks
 
Up and Running with Freebsd
Up and Running with FreebsdUp and Running with Freebsd
Up and Running with FreebsdGLC Networks
 
Network Monitoring with The Dude and Whatsapp
Network Monitoring with The Dude and WhatsappNetwork Monitoring with The Dude and Whatsapp
Network Monitoring with The Dude and WhatsappGLC Networks
 

What's hot (20)

EOIP Deep Dive
EOIP Deep DiveEOIP Deep Dive
EOIP Deep Dive
 
Best Current Practice (BCP) 38 Ingress Filtering for Security
Best Current Practice (BCP) 38 Ingress Filtering for SecurityBest Current Practice (BCP) 38 Ingress Filtering for Security
Best Current Practice (BCP) 38 Ingress Filtering for Security
 
Layer 7 Firewall on Mikrotik
Layer 7 Firewall on MikrotikLayer 7 Firewall on Mikrotik
Layer 7 Firewall on Mikrotik
 
Troubleshooting Layer 2 Ethernet Problem: Loop, Broadcast, Security
Troubleshooting Layer 2 Ethernet Problem: Loop, Broadcast, Security Troubleshooting Layer 2 Ethernet Problem: Loop, Broadcast, Security
Troubleshooting Layer 2 Ethernet Problem: Loop, Broadcast, Security
 
Internet Protocol Deep-Dive
Internet Protocol Deep-DiveInternet Protocol Deep-Dive
Internet Protocol Deep-Dive
 
Automatic Backup via FTP - Part 1
Automatic Backup via FTP - Part 1Automatic Backup via FTP - Part 1
Automatic Backup via FTP - Part 1
 
Mikrotik Bridge Deep Dive
Mikrotik Bridge Deep DiveMikrotik Bridge Deep Dive
Mikrotik Bridge Deep Dive
 
Up and Running DNS Service
Up and Running DNS ServiceUp and Running DNS Service
Up and Running DNS Service
 
Radio Optimization In Telco - Part 1
Radio Optimization In Telco - Part 1Radio Optimization In Telco - Part 1
Radio Optimization In Telco - Part 1
 
Mikrotik IP Settings For Performance and Security
Mikrotik IP Settings For Performance and SecurityMikrotik IP Settings For Performance and Security
Mikrotik IP Settings For Performance and Security
 
Manage Your Router with Dynamic Public IP
Manage Your Router with Dynamic Public IPManage Your Router with Dynamic Public IP
Manage Your Router with Dynamic Public IP
 
BGP on RouterOS7 -Part 1
BGP on RouterOS7 -Part 1BGP on RouterOS7 -Part 1
BGP on RouterOS7 -Part 1
 
Socket Programming with Python
Socket Programming with PythonSocket Programming with Python
Socket Programming with Python
 
Building a Web Server with NGINX
Building a Web Server with NGINXBuilding a Web Server with NGINX
Building a Web Server with NGINX
 
Running Moodle for High Concurrent Users
Running Moodle for High Concurrent UsersRunning Moodle for High Concurrent Users
Running Moodle for High Concurrent Users
 
Up and Running SSH Service - Part 1
Up and Running SSH Service - Part 1Up and Running SSH Service - Part 1
Up and Running SSH Service - Part 1
 
Mikrotik Hotspot
Mikrotik HotspotMikrotik Hotspot
Mikrotik Hotspot
 
Using Mikrotik Switch Features to Improve Your Network
Using Mikrotik Switch Features to Improve Your Network Using Mikrotik Switch Features to Improve Your Network
Using Mikrotik Switch Features to Improve Your Network
 
Up and Running with Freebsd
Up and Running with FreebsdUp and Running with Freebsd
Up and Running with Freebsd
 
Network Monitoring with The Dude and Whatsapp
Network Monitoring with The Dude and WhatsappNetwork Monitoring with The Dude and Whatsapp
Network Monitoring with The Dude and Whatsapp
 

Similar to CCNA : Intro to Cisco IOS - Part 2

01 ip oc180 e1_1 zxr10 m6000_t8000 basic operation (v1.00.20)
01 ip oc180 e1_1 zxr10 m6000_t8000 basic operation (v1.00.20)01 ip oc180 e1_1 zxr10 m6000_t8000 basic operation (v1.00.20)
01 ip oc180 e1_1 zxr10 m6000_t8000 basic operation (v1.00.20)legasu zemene
 
Cisco router configuration tutorial
Cisco router configuration tutorialCisco router configuration tutorial
Cisco router configuration tutorialIT Tech
 
Detailed explanation of Basic router configuration
Detailed explanation of Basic router configurationDetailed explanation of Basic router configuration
Detailed explanation of Basic router configurationsamreenghauri786
 
CCNA at a glance
CCNA at a glanceCCNA at a glance
CCNA at a glanceVikas Raut
 
operating and configuring cisco a cisco IOS device
operating and configuring cisco a cisco IOS deviceoperating and configuring cisco a cisco IOS device
operating and configuring cisco a cisco IOS devicescooby_doo
 
Aula04 - configuração da topologia ppp - resolvido
Aula04 -  configuração da topologia ppp - resolvidoAula04 -  configuração da topologia ppp - resolvido
Aula04 - configuração da topologia ppp - resolvidoCarlos Veiga
 
04 module operating & configuring ios
04  module operating & configuring ios04  module operating & configuring ios
04 module operating & configuring iosAsif
 
CCNA ppt Day 4
CCNA ppt Day 4CCNA ppt Day 4
CCNA ppt Day 4VISHNU N
 
ACIT - CCNA Training - Wan Interface
ACIT - CCNA Training - Wan InterfaceACIT - CCNA Training - Wan Interface
ACIT - CCNA Training - Wan InterfaceSleek International
 
Chapter 04 - Router Conf
Chapter 04 - Router ConfChapter 04 - Router Conf
Chapter 04 - Router Confphanleson
 
Cisco Internetworking Operating System (ios)
Cisco Internetworking Operating System (ios)Cisco Internetworking Operating System (ios)
Cisco Internetworking Operating System (ios)Netwax Lab
 

Similar to CCNA : Intro to Cisco IOS - Part 2 (20)

OSWAN.pptx
OSWAN.pptxOSWAN.pptx
OSWAN.pptx
 
01 ip oc180 e1_1 zxr10 m6000_t8000 basic operation (v1.00.20)
01 ip oc180 e1_1 zxr10 m6000_t8000 basic operation (v1.00.20)01 ip oc180 e1_1 zxr10 m6000_t8000 basic operation (v1.00.20)
01 ip oc180 e1_1 zxr10 m6000_t8000 basic operation (v1.00.20)
 
CCNA presentation.
CCNA presentation.CCNA presentation.
CCNA presentation.
 
Cisco router configuration tutorial
Cisco router configuration tutorialCisco router configuration tutorial
Cisco router configuration tutorial
 
Modes of router
Modes of routerModes of router
Modes of router
 
Detailed explanation of Basic router configuration
Detailed explanation of Basic router configurationDetailed explanation of Basic router configuration
Detailed explanation of Basic router configuration
 
Ccna command
Ccna commandCcna command
Ccna command
 
CCNA at a glance
CCNA at a glanceCCNA at a glance
CCNA at a glance
 
operating and configuring cisco a cisco IOS device
operating and configuring cisco a cisco IOS deviceoperating and configuring cisco a cisco IOS device
operating and configuring cisco a cisco IOS device
 
Aula04 - configuração da topologia ppp - resolvido
Aula04 -  configuração da topologia ppp - resolvidoAula04 -  configuração da topologia ppp - resolvido
Aula04 - configuração da topologia ppp - resolvido
 
04 module operating & configuring ios
04  module operating & configuring ios04  module operating & configuring ios
04 module operating & configuring ios
 
Day 5.2 startingarouter
Day 5.2 startingarouterDay 5.2 startingarouter
Day 5.2 startingarouter
 
CCNA ALL IN ONE
CCNA ALL IN ONE CCNA ALL IN ONE
CCNA ALL IN ONE
 
CCNA ppt Day 4
CCNA ppt Day 4CCNA ppt Day 4
CCNA ppt Day 4
 
Networking Lab Report
Networking Lab ReportNetworking Lab Report
Networking Lab Report
 
ACIT - CCNA Training - Wan Interface
ACIT - CCNA Training - Wan InterfaceACIT - CCNA Training - Wan Interface
ACIT - CCNA Training - Wan Interface
 
Chapter 04 - Router Conf
Chapter 04 - Router ConfChapter 04 - Router Conf
Chapter 04 - Router Conf
 
Mod11
Mod11Mod11
Mod11
 
Cisco Internetworking Operating System (ios)
Cisco Internetworking Operating System (ios)Cisco Internetworking Operating System (ios)
Cisco Internetworking Operating System (ios)
 
Ciso commands
Ciso commandsCiso commands
Ciso commands
 

More from GLC Networks

Firewall mangle PBR: steering outbound path similar to inbound
Firewall mangle PBR: steering outbound path similar to inboundFirewall mangle PBR: steering outbound path similar to inbound
Firewall mangle PBR: steering outbound path similar to inboundGLC Networks
 
Internal BGP tuning: Mesh peering to avoid loop
Internal BGP tuning: Mesh peering to avoid loopInternal BGP tuning: Mesh peering to avoid loop
Internal BGP tuning: Mesh peering to avoid loopGLC Networks
 
BGP tuning: Peer with loopback
BGP tuning: Peer with loopbackBGP tuning: Peer with loopback
BGP tuning: Peer with loopbackGLC Networks
 
BGP security tuning: pull-up route
BGP security tuning: pull-up routeBGP security tuning: pull-up route
BGP security tuning: pull-up routeGLC Networks
 
BGP troubleshooting: route origin
BGP troubleshooting: route originBGP troubleshooting: route origin
BGP troubleshooting: route originGLC Networks
 
Steering traffic in OSPF: Interface cost
Steering traffic in OSPF: Interface costSteering traffic in OSPF: Interface cost
Steering traffic in OSPF: Interface costGLC Networks
 
Tuning OSPF: Bidirectional Forwarding Detection (BFD)
Tuning OSPF: Bidirectional Forwarding Detection (BFD)Tuning OSPF: Bidirectional Forwarding Detection (BFD)
Tuning OSPF: Bidirectional Forwarding Detection (BFD)GLC Networks
 
Tuning OSPF: Prefix Aggregate
Tuning OSPF: Prefix AggregateTuning OSPF: Prefix Aggregate
Tuning OSPF: Prefix AggregateGLC Networks
 
Tuning OSPF: area hierarchy, LSA, and area type
Tuning OSPF:  area hierarchy, LSA, and area typeTuning OSPF:  area hierarchy, LSA, and area type
Tuning OSPF: area hierarchy, LSA, and area typeGLC Networks
 
Stable OSPF: choosing network type.pdf
Stable OSPF: choosing network type.pdfStable OSPF: choosing network type.pdf
Stable OSPF: choosing network type.pdfGLC Networks
 
Controlling Access Between Devices in the same Layer 2 Segment
Controlling Access Between Devices in the same Layer 2 SegmentControlling Access Between Devices in the same Layer 2 Segment
Controlling Access Between Devices in the same Layer 2 SegmentGLC Networks
 
GIT as Mikrotik Configuration Management
GIT as Mikrotik Configuration ManagementGIT as Mikrotik Configuration Management
GIT as Mikrotik Configuration ManagementGLC Networks
 
RouterOS Migration From v6 to v7
RouterOS Migration From v6 to v7RouterOS Migration From v6 to v7
RouterOS Migration From v6 to v7GLC Networks
 
Policy Based Routing with Indirect BGP - Part 2
Policy Based Routing with Indirect BGP - Part 2Policy Based Routing with Indirect BGP - Part 2
Policy Based Routing with Indirect BGP - Part 2GLC Networks
 
Policy Based Routing with Indirect BGP - Part 1
Policy Based Routing with Indirect BGP - Part 1Policy Based Routing with Indirect BGP - Part 1
Policy Based Routing with Indirect BGP - Part 1GLC Networks
 
Automatic Backup via FTP - Part 2
Automatic Backup via FTP - Part 2Automatic Backup via FTP - Part 2
Automatic Backup via FTP - Part 2GLC Networks
 
Voice Services, From Circuit Switch to VoIP
Voice Services, From Circuit Switch to VoIPVoice Services, From Circuit Switch to VoIP
Voice Services, From Circuit Switch to VoIPGLC Networks
 
MPLS on Router OS V7 - Part 2
MPLS on Router OS V7 - Part 2MPLS on Router OS V7 - Part 2
MPLS on Router OS V7 - Part 2GLC Networks
 
BGP on RouterOS7 - Part 2
BGP on RouterOS7 - Part 2BGP on RouterOS7 - Part 2
BGP on RouterOS7 - Part 2GLC Networks
 
OSPF On Router OS7 - Part 2
OSPF On Router OS7 - Part 2OSPF On Router OS7 - Part 2
OSPF On Router OS7 - Part 2GLC Networks
 

More from GLC Networks (20)

Firewall mangle PBR: steering outbound path similar to inbound
Firewall mangle PBR: steering outbound path similar to inboundFirewall mangle PBR: steering outbound path similar to inbound
Firewall mangle PBR: steering outbound path similar to inbound
 
Internal BGP tuning: Mesh peering to avoid loop
Internal BGP tuning: Mesh peering to avoid loopInternal BGP tuning: Mesh peering to avoid loop
Internal BGP tuning: Mesh peering to avoid loop
 
BGP tuning: Peer with loopback
BGP tuning: Peer with loopbackBGP tuning: Peer with loopback
BGP tuning: Peer with loopback
 
BGP security tuning: pull-up route
BGP security tuning: pull-up routeBGP security tuning: pull-up route
BGP security tuning: pull-up route
 
BGP troubleshooting: route origin
BGP troubleshooting: route originBGP troubleshooting: route origin
BGP troubleshooting: route origin
 
Steering traffic in OSPF: Interface cost
Steering traffic in OSPF: Interface costSteering traffic in OSPF: Interface cost
Steering traffic in OSPF: Interface cost
 
Tuning OSPF: Bidirectional Forwarding Detection (BFD)
Tuning OSPF: Bidirectional Forwarding Detection (BFD)Tuning OSPF: Bidirectional Forwarding Detection (BFD)
Tuning OSPF: Bidirectional Forwarding Detection (BFD)
 
Tuning OSPF: Prefix Aggregate
Tuning OSPF: Prefix AggregateTuning OSPF: Prefix Aggregate
Tuning OSPF: Prefix Aggregate
 
Tuning OSPF: area hierarchy, LSA, and area type
Tuning OSPF:  area hierarchy, LSA, and area typeTuning OSPF:  area hierarchy, LSA, and area type
Tuning OSPF: area hierarchy, LSA, and area type
 
Stable OSPF: choosing network type.pdf
Stable OSPF: choosing network type.pdfStable OSPF: choosing network type.pdf
Stable OSPF: choosing network type.pdf
 
Controlling Access Between Devices in the same Layer 2 Segment
Controlling Access Between Devices in the same Layer 2 SegmentControlling Access Between Devices in the same Layer 2 Segment
Controlling Access Between Devices in the same Layer 2 Segment
 
GIT as Mikrotik Configuration Management
GIT as Mikrotik Configuration ManagementGIT as Mikrotik Configuration Management
GIT as Mikrotik Configuration Management
 
RouterOS Migration From v6 to v7
RouterOS Migration From v6 to v7RouterOS Migration From v6 to v7
RouterOS Migration From v6 to v7
 
Policy Based Routing with Indirect BGP - Part 2
Policy Based Routing with Indirect BGP - Part 2Policy Based Routing with Indirect BGP - Part 2
Policy Based Routing with Indirect BGP - Part 2
 
Policy Based Routing with Indirect BGP - Part 1
Policy Based Routing with Indirect BGP - Part 1Policy Based Routing with Indirect BGP - Part 1
Policy Based Routing with Indirect BGP - Part 1
 
Automatic Backup via FTP - Part 2
Automatic Backup via FTP - Part 2Automatic Backup via FTP - Part 2
Automatic Backup via FTP - Part 2
 
Voice Services, From Circuit Switch to VoIP
Voice Services, From Circuit Switch to VoIPVoice Services, From Circuit Switch to VoIP
Voice Services, From Circuit Switch to VoIP
 
MPLS on Router OS V7 - Part 2
MPLS on Router OS V7 - Part 2MPLS on Router OS V7 - Part 2
MPLS on Router OS V7 - Part 2
 
BGP on RouterOS7 - Part 2
BGP on RouterOS7 - Part 2BGP on RouterOS7 - Part 2
BGP on RouterOS7 - Part 2
 
OSPF On Router OS7 - Part 2
OSPF On Router OS7 - Part 2OSPF On Router OS7 - Part 2
OSPF On Router OS7 - Part 2
 

Recently uploaded

Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfSeasiaInfotech2
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 

Recently uploaded (20)

Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdf
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 

CCNA : Intro to Cisco IOS - Part 2

  • 1. CCNA : Intro To Cisco IOS Lab Practice
  • 2. Profile Nama : M. Taufik Nurhuda Pekerjaan : Guru TKJ, IT Support, Mikrotik Academy Trainer SMK Pelita Pesawaran Facebook : https://www.facebook.com/taufik.nurhuda.5/ LinkedIn : https://www.linkedin.com/in/taufik-nurhuda-5224b1180/ Website : www.taufiknurhuda.web.id
  • 3. Topic Discussion ● Basic Mode ● How To Access IOS Cisco Router/Switch ● Configure Initial Setting on IOS Cisco Router/Switch ● Interface Configuration ● Display Config ● Edit/Remove Config ● Configure Telnet/SSH Remote ● Backup & Restore Config ● IOS vs Mikrotik Syntax
  • 4. IOS Mode ● Setup ○ This mode appear when the NVRAM router/switch is empty or not have configuration. ● User Mode ○ For Monitoring Only (limited show, ping, traceroute) ○ Marked by : Router> ● Privileges Mode ○ There are several command for monitoring and troubleshooting (show, ping, copy, trace, erase) ○ Marked by : Router# ● Global Configuration Mode ○ For Configuration Cisco IOS router/switch ○ Marked by : Router(config)# ● Interface Mode ○ For interface / ip configuration ○ Marked by : Router(config-if)#
  • 5. Configuration Access ● Using Console ○ Console Cable to USB/RJ45 ○ Remote console with Putty (Windows OS) and minicom -s (Linux OS) ● Remote Access (Need for IP Address) ○ Telnet ○ SSH
  • 6. Basic Configuration ● IOS Login ○ User mode to Privileges mode Router> enable Router# ○ Privileges mode to Global config mode Router#configure terminal Enter configuration commands, one per line. End with CNTL/Z. Router(config)# ● Hostname ○ Router(config)# hostname ROUTER-ME ○ ROUTER-ME(config)# ● Disable DNS Lookup ○ ROUTER-ME(config)# no ip domain-lookup ○ ROUTER-ME(config)#
  • 7. Basic Configuration ● Secure Privileges Mode ○ ROUTER-ME(config)#enable secret mypass ○ ROUTER-ME(config)#exit TEST THE CONFIGURATION : ○ ROUTER-ME>enable ○ Password: ->enter_the_password ○ ROUTER-ME# ● Secure Global Config Mode ○ ROUTER-ME(config)#line console 0 ○ ROUTER-ME(config-line)# password pass123 ○ ROUTER-ME(config-line)# login ○ ROUTER-ME(config-line)# TEST THE CONFIGURATION ○ User Access Verification ○ Password: ->enter the password ○ ROUTER-ME>
  • 8. Basic Configuration ● Secure Remote access Telnet/SSH (VTY Password) ○ ROUTER-ME(config)# line vty 0 4 ○ ROUTER-ME(config-line)# password mypass ○ ROUTER-ME(config-line)# login ○ ROUTER-ME(config-line)# exit ○ ROUTER-ME(config)# ● Encrypt All Plaintext passwords ○ ROUTER-ME(config)#service password-encryption ○ ROUTER-ME(config)# ● Provide Legal Notification on Cisco IOS (MOTD) ○ ROUTER-ME(config)#banner motd "THIS IS MY ROUTER" TEST THE CONFIGURATION : Press RETURN to get started! THIS IS MY ROUTER User Access Verification Password: ● Save the configuration ○ ROUTER-ME#copy running-config startup-config ○ Destination filename [startup-config]? PressEnter ○ Building configuration... ○ [OK]
  • 9. Interface Configuration ● IP configuration ○ ROUTER-ME(config)#interface gig0/0/0 ○ ROUTER-ME(config-if)#ip address 192.168.10.1 255.255.255.0 ● Interface description ○ ROUTER-ME(config-if)#description "Interface for LAN Networks" ● Enable Interface ○ ROUTER-ME(config-if)#no shutdown ○ ROUTER-ME(config-if)# ○ %LINK-5-CHANGED: Interface GigabitEthernet0/0/0, changed state to up ○ %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed state to up ○ ROUTER-ME(config-if)# ● For Disable Interface use command : ○ ROUTER-ME(config-if)# shutdown
  • 10. Display Config ● Show full configuration ○ ROUTER-ME#show running-config ○ Building configuration... ○ ○ Current configuration : 850 bytes ○ ! ○ version 16.6.4 ○ no service timestamps log datetime msec ○ no service timestamps debug datetime msec ○ service password-encryption ○ ! ○ hostname ROUTER-ME ○ ! ○ enable secret 5 $1$mERr$OP8FVb8wv5vae/zbiXUkx/ ○ ! ○ ip cef ○ no ipv6 cef ○ ! ○ spanning-tree mode pvst ! ○ interface GigabitEthernet0/0/0 ○ description "Interface for LAN Networks" ○ ip address 192.168.10.1 255.255.255.0 ○ duplex auto ○ speed auto ○ !
  • 11. Display Config ● Show summary interface information ○ ROUTER-ME#show ip interface brief ○ Interface IP-Address OK? Method Status Protocol ○ GigabitEthernet0/0/0 192.168.10.1 YES manual up up ○ GigabitEthernet0/0/1 unassigned YES unset administratively down down ○ GigabitEthernet0/0/2 unassigned YES unset administratively down down ○ Vlan1 unassigned YES unset administratively down down ○ ROUTER-ME#
  • 12. Display Config ● Using do command for show config ○ ROUTER-ME(config)#do show ip interface brief ○ Interface IP-Address OK? Method Status Protocol ○ GigabitEthernet0/0/0 192.168.10.1 YES manual up up ○ GigabitEthernet0/0/1 unassigned YES unset administratively down down ○ GigabitEthernet0/0/2 unassigned YES unset administratively down down ○ Vlan1 unassigned YES unset administratively down down ○ ROUTER-ME(config)#do copy running-config startup-config ○ Destination filename [startup-config]? ○ Building configuration... ○ [OK] ○ ROUTER-ME(config)#
  • 13. Edit/Remove Config ● Edit IP address configuration ○ ROUTER-ME(config)#do show ip int brief ○ Interface IP-Address OK? Method Status Protocol ○ GigabitEthernet0/0/0 192.168.10.1 YES manual up up ○ GigabitEthernet0/0/1 unassigned YES unset administratively down down ○ GigabitEthernet0/0/2 unassigned YES unset administratively down down ○ Vlan1 unassigned YES unset administratively down down ○ ROUTER-ME(config)#int gig0/0/0 ○ ROUTER-ME(config-if)#ip add 192.168.20.1 255.255.255.0 ○ ROUTER-ME(config-if)#exit ○ ROUTER-ME(config)#do show ip int brief ○ Interface IP-Address OK? Method Status Protocol ○ GigabitEthernet0/0/0 192.168.20.1 YES manual up up ○ GigabitEthernet0/0/1 unassigned YES unset administratively down down ○ GigabitEthernet0/0/2 unassigned YES unset administratively down down ○ Vlan1 unassigned YES unset administratively down down ○ ROUTER-ME(config)#
  • 14. Edit/Remove Config ● Remove IP Address configuration ○ ROUTER-ME(config)# do show ip int brief ○ Interface IP-Address OK? Method Status Protocol ○ GigabitEthernet0/0/0 192.168.20.1 YES manual up up ○ GigabitEthernet0/0/1 unassigned YES unset administratively down down ○ GigabitEthernet0/0/2 unassigned YES unset administratively down down ○ Vlan1 unassigned YES unset administratively down down ○ ROUTER-ME(config)# int gig0/0/0 ○ ROUTER-ME(config-if)# no ip add 192.168.20.1 255.255.255.0 ○ ROUTER-ME(config-if)# exit ○ ROUTER-ME(config)# do show ip int brief ○ Interface IP-Address OK? Method Status Protocol ○ GigabitEthernet0/0/0 unassigned YES manual up up ○ GigabitEthernet0/0/1 unassigned YES unset administratively down down ○ GigabitEthernet0/0/2 unassigned YES unset administratively down down ○ Vlan1 unassigned YES unset administratively down down ○ ROUTER-ME(config)#
  • 15. Configure Telnet Remote ● For access Telnet/SSH you must configure privileges password using enable password or enable secret command first ● Configure VTY Password ● Test connect from client C:>telnet 192.168.10.1 Trying 192.168.10.1 ...OpenTHIS IS MY ROUTER User Access Verification Password: ->EnterVTYPassword ROUTER-ME>enable Password: ROUTER-ME#
  • 16. Configure SSH Remote ● Configure domain router ● Configure username and password login ● Configure transport input ssh on line vty ● Generate Crypto key rsa 1024 ○ ROUTER-ME(config)#ip domain-name taufik.net ○ ROUTER-ME(config)#username taufik secret taufikpass ○ ROUTER-ME(config)#line vty 0 4 ○ ROUTER-ME(config-line)# transport input ssh ○ ROUTER-ME(config-line)# login local ○ ROUTER-ME(config-line)# exit ○ ROUTER-ME(config)#crypto key generate rsa ○ The name for the keys will be: ROUTER-ME.taufik.net ○ Choose the size of the key modulus in the range of 360 to 2048 for your ○ General Purpose Keys. Choosing a key modulus greater than 512 may take ○ a few minutes. ○ How many bits in the modulus [512]: 1024 ○ % Generating 1024 bit RSA keys, keys will be non-exportable...[OK] ○ ROUTER-ME(config)#
  • 17. Backup & Restore Config ● Backup configuration ● Make sure your router can connected to TFTP Server and enable TFTP Server. ● Setting Backup from router/switch. ROUTER-ME#copy running-config tftp: Address or name of remote host []? 192.168.50.2 <-IP Server TFTP Destination filename [ROUTER-ME-confg]?<-PressEnter Writing running-config....!! [OK - 785 bytes] 785 bytes copied in 3.004 secs (261 bytes/sec) ROUTER-ME#
  • 18. Cek Backup file from TFTP Server
  • 19. Backup & Restore Config ● Reset configuration ○ ROUTER-ME#write erase ○ Erasing the nvram filesystem will remove all configuration files! Continue? [confirm] ○ [OK] ○ Erase of nvram: complete ○ %SYS-7-NV_BLOCK_INIT: Initialized the geometry of nvram ○ ROUTER-ME#reload ○ Proceed with reload? [confirm]
  • 20. Backup & Restore Config ● Restore configuration Router#copy tftp: running-config Address or name of remote host []? 192.168.50.2 <-IPTFTPSERVER Source filename []? ROUTER-ME-config <-SourceFileBackupName Destination filename [running-config]? <-PressEnter Accessing tftp://192.168.50.2/ROUTER-ME-config... %Error opening tftp://192.168.50.2/ROUTER-ME-config (No such file or directory) Router#copy tftp: running-config Address or name of remote host []? 192.168.50.2 Source filename []? ROUTER-ME-confg Destination filename [running-config]? Accessing tftp://192.168.50.2/ROUTER-ME-confg... Loading ROUTER-ME-confg from 192.168.50.2: ! [OK - 785 bytes] 785 bytes copied in 0 secs ROUTER-ME#
  • 21. Cisco IOS vs Mikrotik RouterOS Syntax ● Add ip address on interface ● Add route/Default Gateway
  • 22. Cisco IOS vs Mikrotik RouterOS Syntax ● Reset Configuration
  • 23. Cisco IOS vs Mikrotik RouterOS Remote Access ● Mikrotik ○ IP Address Based (winbox, Webfig, Telnet,SSH,FTP) ○ Mac Address (Neighbors) ● Cisco ○ IP Address (Telnet,SSH)