Net 412 (Practical Part) LAB 3 - Telnet

Slides:



Advertisements
Similar presentations
Configuring a Router Harold Hernandez, MS, CCNI. 3.1 Configuring a Router Name a router Set passwords Examine show commands Configure a serial interface.
Advertisements

CCNA2-1 Chapter 1 Introduction to Routing and Packet Forwarding CLI Configuration and Addressing.
Cisco Router. Overview Understanding and configuring the Cisco Internetwork Operating System (IOS) Connecting to a router Bringing up a router Logging.
1 CCNA 2 v3.1 Module 3. 2 CCNA 2 Module 3 Configuring a Router.
Introduction to the Cisco IOS
CPIT 470 Lab 2 Lab Instructor: Aisha Ehsan.
© 2004 Cisco Systems, Inc. All rights reserved. Operating and Configuring Cisco IOS Devices Configuring a Router INTRO v2.0—8-1.
Network Security1 – Chapter 3 – Device Security (B) Security of major devices: How to protect the device against attacks aimed at compromising the device.
Network technologies lab, Sunday, 24 August ´97 CEENet 97 / track 1 1/11 Network Technologies Lab Sunday Exercises
Summer Classes Router - Initial Configuration By Roshan Chaudhary Lecturer Islington College.
Configuring a network os
© 2007 Cisco Systems, Inc. All rights reserved.ICND2 v1.0—1-1 Small Network Implementation Introducing the Review Lab.
Chapter 2: Basic Router Configuration
© Wiley Inc All Rights Reserved. CHAPTER 4: Introduction to the Cisco IOS CCNA: Cisco Certified Network Associate Study Guide.
Instructor & Todd Lammle
CSE 304 Computer network lab lecture 02
Saeed Darvish Pazoki – MCSE, CCNA Abstracted From: Cisco Press – ICND 1 – Chapter 9 Ethernet Switch Configuration 1.
Basic Router Configuration 1.1 Global configuration Cisco allows us to configure the router to support various protocols and interfaces. The router stores.
User Access to Router Securing Access.
Module 4: Learning about Other Devices These Labs can be performed using the following topology or using the ones in the lab books: Creating a Network.
1 © 2005 Cisco Systems, Inc. All rights reserved. 111 © 2004, Cisco Systems, Inc. All rights reserved. CNIT 221 Security 1 ver.2 Module 6 City College.
Chapter 3: Authentication, Authorization, and Accounting
Module 3 Configuring a Router.
Router Fundamentals PJC CCNA Semester 2 Ver. 3.0 by William Kelly.
NETWORK ADMINISTRATION CPIT 470 Instructor: Mrs Aisha Ehsan.
Sybex CCNA Chapter 6: Cisco’s IOS Instructor & Todd Lammle.
© 2006 Cisco Systems, Inc. All rights reserved.Cisco PublicITE I Chapter 6 1 Basic Switch Configurations.
Jose Luis Flores / Amel Walkinshaw
Chapter 4 Internetworking Operating System )IOS) and Security Device Manager (SDM)
Chapter 6.  Upon completion of this chapter, you should be able to:  Configure switches  Configure VLANs  Verify configuration settings  Troubleshoot.
Instructor Materials Chapter 8 Configuring Cisco Devices
Managing a Cisco Devices Internetwork
SECURE LAB: CREATING A CISCO 3550 VLSM NETWORK
Managing Your Network Environment
Chapter 10 Layer 2 Switching
Lec5: Applying Dynamic Routing Protocols in CISCO Packet Tracer
CISCO CERTIFIED NETWORK ASSOCIATE
CISCO IOS CLI (Command-Line Interface)
Introduction to Cisco IOS -(Internetwork Operating System)
Managing IP Traffic with ACLs
© 2002, Cisco Systems, Inc. All rights reserved.
Instructor & Todd Lammle
Cisco Switching Basics
Introduction to Networking
Basic configuration of a switch in packet tracer
Instructor: Mr Malik Zaib
Securing Access.
© 2011 ITT Educational Services Inc.
Basic switch and router configuration
Chapter 5: Switch Configuration
– Chapter 3 – Device Security (B)
Net 412 (Practical Part) Networks and Communication Department LAB 2.
Net 412 (Practical Part) LAB 5-port security
Understanding Cisco Router Security
Configuring a Router Module 3 Semester 2.
2 - IP Routing.
Net 412 (Practical Part) LAB 4 - SSH
– Chapter 3 – Device Security (B)
Routers & Cisco IOS.
Net 412 (Practical Part) Networks and Communication Department LAB 1.
Lecture#3: Configuring a Network Operating System
Fundamentals of Computer Networks
Fundamentals of Computer Networks
Introduction to Cisco IOS -(Internetwork Operating System)
Lecture9: Embedded Network Operating System: cisco IOS
Review - week 4 Basic device access security
ACCESS CONTROL LIST Slides Prepared By Adeel Ahmed,
CCNA 2 2 Double JEOPARDY Midterm REVIEW S2C06 Jeopardy Review.
Lec5: Applying Dynamic Routing Protocols in CISCO Packet Tracer
Lecture9: Embedded Network Operating System: cisco IOS
Presentation transcript:

Net 412 (Practical Part) LAB 3 - Telnet Networks and Communication Department LAB 3 - Telnet

Goals This lab is going to demonstrate how to configure and enable telnet on Cisco router and switches. The Telnet is an old and non secure application protocol of remote control services. You can configure telnet on all Cisco switches and routers with the following step by step guides. But it’s not the best way on the wide area network. Networks and Communication Department

Topology Networks and Communication Department

Enable Telnet on Cisco Router Open the packet tracer. Add 1 PC , 1 switch general-pt,1router general-pt Link all the devices together type of link copper cross . Configure Ip address for all Network like topology above Networks and Communication Department

Configure pc 0 Networks and Communication Department

Configure R0 Router>en Router#conf t Enter configuration commands, one per line. End with CNTL/Z. Router(config)#int f0/0 Router(config-if)#no shut Router(config-if)#ip add 10.1.1.1 255.255.255.0 Router(config-if)#exit Networks and Communication Department

Configure R0 Router(config)#line vty 0 4 Router(config-line)#password pass123 Router(config-line)#login Router(config-line)#logging synchronous Router(config-line)#exec-timeout 40 Router(config-line)#motd-banner Router(config-line)#exit Router(config)#enable password pass123 Router(config)#exit Networks and Communication Department

Configure R0 The “line vty” command enable the telnet and the “0″ is just to start a session to the router. The “password” command is set to “Pass123” as password for telnet. The “login” command authenticate and ask you the password of telnet. If you type “no login” command, the telnet never authenticate for password which is not a good practice in real network environment. The “logging synchronous” command stops any message output from splitting your typing. The “exec-timeout” command just sets the time-out limit on the line from the default to “40″ minutes. The motd-banner forces a banner message to appear when logging in. Now the Telnet services is enabled successfully. But you must set the enable password for router in order to control it remotely line vty : logical "connection points" to the router, that are used by Telnet as well as SSH to remotely access your router. Some routers and switches, can support more than just the 5 ( 0-4 ). If a device has lines VTY 0 - 4, 5 users can access through telnet at the same time EXEC timeout close the connection after 40 minutes of inactivity logging synchronous : do not show output info when your typing into the console so that making you loose your place and unable to see what you are typing in. Networks and Communication Department

Testing Telnet Connectivity Now from a client PC test the telnet connectivity and to insure that it works fine or not yet. Let’s test telnet from the admin PC. Type telnet 10.1.1.1 and press enter, then enter the telnet password. Next type enable command and press enter, then type the router password. Networks and Communication Department

Test PC 0 Packet Tracer PC Command Line 1.0 PC>telnet 10.1.1.1 Trying 192.168.10.1 …Open User Access Verification Password:  // here you write pass123 R1>enable  Password:  // here you write pass123 R1# Now you are remotely connected to router R1 and you can execute all router commands through telnet command line interface. Networks and Communication Department

Test PC0 Networks and Communication Department

Test PC0 Networks and Communication Department

The End Any Questions ? Networks and Communication Department