本实验采用神州数码 CS6200 设备(交换机)
本机的 IP 地址为 172.17.0.78,子网掩码为 255.255.255.0
步骤
配置交换机的 IP 地址
用 console 线进入交换机
switch>enable !进入特权模式
switch#config !进入全局配置模式
switch(config)#interface vlan 1 !配置vlan1接口的参数
switch(config-if-vlan1)#ip address 172.17.0.100 255.255.255.0 !为 vlan 1 配置一个与主机同网段的 IP 地址,
switch(config-if-vlan1)#no shutdown ! 激活vlan1接口
switch(config-if-vlan1)#show run !验证配置信息
switch convert mode stand-alone
no service password-encryption
hostname switch
sysLocation China
sysContact 400-810-9119
authentication logging enable
username admin privilege 15 password 0 admin
username drx privilege 15 password 0 xxxxx
info-center logfile 4 config count 40960 nandflash logfile.log
info-center logfile 4 output-enable
info-center logfile 4 match level warnings
Interface Ethernet0
vlan 1
!
Interface Ethernet1/0/1
!
Interface Ethernet1/0/2
!
Interface Ethernet1/0/3
!
Interface Ethernet1/0/4
!
Interface Ethernet1/0/5
!
Interface Ethernet1/0/6
!
Interface Ethernet1/0/7
!
Interface Ethernet1/0/8
!
Interface Ethernet1/0/9
!
Interface Ethernet1/0/10
!
Interface Ethernet1/0/11
!
Interface Ethernet1/0/12
!
Interface Ethernet1/0/13
!
Interface Ethernet1/0/14
!
Interface Ethernet1/0/15
!
Interface Ethernet1/0/16
!
Interface Ethernet1/0/17
!
Interface Ethernet1/0/18
!
Interface Ethernet1/0/19
!
Interface Ethernet1/0/20
!
Interface Ethernet1/0/21
!
Interface Ethernet1/0/22
!
Interface Ethernet1/0/23
!
Interface Ethernet1/0/24
!
Interface Ethernet1/0/25
!
Interface Ethernet1/0/26
!
Interface Ethernet1/0/27
!
Interface Ethernet1/0/28
!
interface Vlan1
ip address 172.17.0.100 255.255.255.0 !配置成功
!
!
no login
!
captive-portal
!
end
switch(config-if-vlan1)#
设置授权 Telnet 用户
switch>enable !进入特权模式
switch#config !进入全局模式
switch(config)#telnet-user drx password 0 xxxxx !配置用户名和密码
Note: Please use command"username ..." to set local user for console/telnet/web from now on
Note: Command "telnet-user ..." succeeded!
switch(config)#
此处提示,telnet-user
已过时,使用 username
代替。
验证互通性
在交换机中,
switch#ping 172.17.0.78
Type ^c to abort.
Sending 5 56-byte ICMP Echos to 172.17.0.78, timeout is 2 seconds.
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/0 ms
五个 ! 代表 ping 通。如果是 ·,代表不通,此时注意检查网线有没有连接!
在主机中,打开 cmd,
C:\Users\Lenovo>ping 172.17.0.100
正在 Ping 172.17.0.100 具有 32 字节的数据:
来自 172.17.0.100 的回复: 字节=32 时间=1ms TTL=64
来自 172.17.0.100 的回复: 字节=32 时间=1ms TTL=64
来自 172.17.0.100 的回复: 字节=32 时间=1ms TTL=64
来自 172.17.0.100 的回复: 字节=32 时间=1ms TTL=64
172.17.0.100 的 Ping 统计信息:
数据包: 已发送 = 4,已接收 = 4,丢失 = 0 (0% 丢失),
往返行程的估计时间(以毫秒为单位):
最短 = 1ms,最长 = 1ms,平均 = 1ms
表示通了。
测试Telnet 登录是否可以
使用 telnet-server enable
命令开启 telnet 服务。
打开 MobaXterm,
- 菜单中选择 sessions (会话)
- 点击 new session(新建会话)
- 选择
telnet
填写连接参数
- remote host(远程主机名):
172.17.0.100
- port(端口):
23
- remote host(远程主机名):
- 点击 OK
进入登录界面,填写用户名和密码
login:drx Password:***** switch#
- 对交换机进行管理
之后可以不使用 console 线管理设备,而是使用网线进行管理设备。
参考
- 《实验五、使用 telnet 方式管理交换机 》
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。