要实现电脑能telnet远程管理路由和交换机1.首先要确保4个节点之间能相互通信配置pc的ip 192.168.1.2/24 网关 192.168.1.1配置路由f0/1的ip 1_交换机telnet是不是要写路由">
赞
踩
在PT中的拓扑图如下:
要实现电脑能telnet远程管理路由和交换机
1.首先要确保4个节点之间能相互通信
配置pc的ip 192.168.1.2/24 网关 192.168.1.1
配置路由f0/1的ip 192.168.1.1/24
Route#config t Enter configuration commands, one per line. End with CNTL/Z. Route(config)#int f0/1 Route(config-if)#ip add 192.168.1.1 255.255.255.0 % 192.168.1.0 overlaps with FastEthernet0/0 Route(config-if)#no shut
配置路由f0/0 ip 193.168.1.1/24
Route(config)#int f0/0 Route(config-if)#ip add 193.168.1.1 255.255.255.0 % 193.168.1.0 overlaps with FastEthernet0/1 Route(config-if)#no shut
由于这个交换机是二层交换机,所以只能配置管理口ip 193.168.1.2/24
并添加网关193.168.1.1
Switch(config)#int vlan 1 Switch(config-if)#ip add 193.168.1.2 255.255.255.0 Switch(config-if)#no shut Switch(config-if)#exit Switch(config)#ip default-gateway 193.168.1.1
现在4个节点由红色变为绿色,并能相互之间通信了
2.远程telnet必须配置enable、line密码
Route#config t Enter configuration commands, one per line. End with CNTL/Z. Route(config)#enable password 123 Route(config)#line vty 0 15 Route(config-line)#password 456 Route(config-line)#login Route(config-line)#end
Switch#config t Enter configuration commands, one per line. End with CNTL/Z. Switch(config)#enable password 123 Switch(config-line)#password 456 Switch(config-line)#login Switch(config-line)#end
配置完成这些就能在pc上进行远程telnet控制了,telnet上先输入的是line的密码,再输入的是enable的密码。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。