packet tracer中交換機的基本配置以及使用telnet方式鏈接交換機

管理交換機的兩種方式

帶內管理shell

網絡的管理控制信息與用戶網絡的承載業務信息經過同一個邏輯信道傳輸,也就是佔用業務帶寬;安全

例子:網絡

經過telnet方式管理交換機。實現了遠程管理交換機;ui

帶外管理spa

網絡的管理控制信息與用戶網絡的承載業務信息在不一樣的邏輯通道,是交換機提供專門用於管理的寬帶;命令行

例子:debug

使用console口鏈接交換機;PC串口鏈接交換機;能夠經過PC機上的超級終端鏈接到交換機;code

交換機基本信息的配置

交換機的命令行模式有:blog

Switch> #用戶模式
Switch# #特權模式
Switch(config)# #全局配置模式
Switch(config-if)# #端口模式 if是interface的縮寫;

交換機的命令行:接口

進入特權模式(en/enable)
進入全局配置模式(conf t)config terminal
進入交換機端口視圖模式int f 0/1
返回到上級模式(exit)
從全局如下模式返回到特權模式(end)

使用telnet方式配置交換機的實驗相關

技術原理

  • 配置交換機的管理ip地址(設置計算機的ip地址與交換機管理IP地址在同一個網段)
  • 在二層交換機中,IP 地址僅用於登陸管理交換機,若是沒有配置管理IP地址,交換機只能採用控制端口console進行本地配置和管理;
  • 在默認狀況下,交換機的全部端口均屬於vlan1,它是交換機自動建立和官吏的。每個vlan只有一個活動的管理地址,所以對二層交換機設置管理地址以前,首先應該選擇vlan1接口,而後利用IP address配置命令設置IP管理地址。
  • 爲telnet用戶設置用戶名和登陸口令;
  • 設置交換機特權模式密碼和登錄模式密碼;能夠提升交換機的安全性;
siwtch(config)#line vty 0 4 配置遠程登錄的線路;

siwtch(config-line)#login 用於打開登陸認證

siwtch(config-line)#password  ** //設置遠程登錄的密碼

步驟

新建packet Tracer拓撲圖

配置交換機管理ip地址

Switch(config)# int vlan 1  #登陸到vlan1的接口模式
Switch(config)# ip address **IP** **submask** #ip地址後面加子網掩碼

配置用戶登陸密碼

Switch(config)# enable password ****** //設置進入特權模式的密碼
Switch(config)# line vty 0 4
Switch(config-line)# password ******   #遠程登陸密碼
Switch(config-line)# login

<br> ## packet tracer的實驗操做

1,打開packet tracer,選擇一個2960的交換機,一個pc機;

2,首先選中配置線,將配置線的"rs-232"端口鏈接交換機的」console「口,同時經過直連線鏈接pc和路由器

75616212-61f03200-5b89-11ea-9e78-6b56a6532de5

3,經過PC終端對交換機進行配置;

  • 找到終端配置窗口:

75616287-2c981400-5b8a-11ea-8db4-dd0ce5c536f2

4,命令配置(經過console口配置)

Switch>enable		#進特權模式
Switch#conf t		#進入全局配置模式
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#interface vlan 1		#設置默認接口
Switch(config-if)#ip address 192.168.1.1 255.255.255.0	#配置管理ip地址
Switch(config-if)#no shutdown		#開啓端口

Switch(config-if)#
%LINK-5-CHANGED: Interface Vlan1, changed state to up

%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan1, changed state to up

Switch(config-if)#exit 
Switch(config)#enable password 123456
Switch(config)#line vty 0 4
Switch(config-line)#password lhy
Switch(config-line)#login
Switch(config-line)#end

Switch#show run
Building configuration...

Current configuration : 1089 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Switch
!
enable password 123456		#特權模式密碼
!
!
!
!
spanning-tree mode pvst
!
interface FastEthernet0/1
!

......

interface Vlan1
 ip address 192.168.1.1 255.255.255.0
!
!
line con 0
!
line vty 0 4
 password lhy   #遠程登陸密碼
 login
line vty 5 15
 login
!
!
end

5,設置PC端的靜態ip:

  • 設置ip,子網掩碼,網關;

75616311-54877780-5b8a-11ea-95a1-0eed98356efb

6,使用pc端命令行鏈接(找到pc的command promnt)(使用telnet方式鏈接交換機):

PC>ping 192.168.1.1		#首先ping一下交換機

Pinging 192.168.1.1 with 32 bytes of data:

Request timed out.
Reply from 192.168.1.1: bytes=32 time=0ms TTL=255
Reply from 192.168.1.1: bytes=32 time=0ms TTL=255
Reply from 192.168.1.1: bytes=32 time=1ms TTL=255

Ping statistics for 192.168.1.1:
    Packets: Sent = 4, Received = 3, Lost = 1 (25% loss),
Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 1ms, Average = 0ms

PC>telnet 192.168.1.1		#使用telnet鏈接交換機
Trying 192.168.1.1 ...Open

User Access Verification 	#用戶接入驗證,輸入遠程登陸的密碼

Password: 
Switch>enable		#進入特權模式
Password: 
Switch#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#end

Switch#show run
Building configuration...

Current configuration : 1089 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Switch
!
enable password 123456
!
!
!
!
spanning-tree mode pvst
!
interface FastEthernet0/1
!
......
!
interface GigabitEthernet1/1
!
interface GigabitEthernet1/2
!
interface Vlan1
 ip address 192.168.1.1 255.255.255.0
!
!
line con 0
!
line vty 0 4
 password lhy
 login
line vty 5 15
 login
!
!
end
相關文章
相關標籤/搜索