思科路由器:開啟telnet和ssh遠端登陸
給路由器配置IP
Router>enable
Router#
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#interface GigabitEthernet0/0/1
Router(config-if)#ip address 10.1.1.254 255.255.255.0
Router(config-if)#no shutdown
Router(config-if)#
開啟telnet配置登陸密碼
Router#enable
Router#conf te
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#line vty 0?
<0-15>
Router(config)#line vty 0 3 #3表示3個使用者可以同時登陸
Router(config-line)#pass
Router(config-line)#password 123456 #telnet密碼
Router(config-line)#login #允許登陸
Router(config-line)#exit
Router(config)#
Router(config)#enable password feifei #特權模式密碼
Router(config)#
Router(config)#exit
Router#
%SYS-5-CONFIG_I: Configured from console by console
Router#write #儲存
Building configuration...
[OK]
驗證telnet登陸
在PC1中
Packet Tracer PC Command Line 1.0
C:\>ping 10.1.1.254
Pinging 10.1.1.254 with 32 bytes of data:
Reply from 10.1.1.254: bytes=32 time<1ms TTL=255
Reply from 10.1.1.254: bytes=32 time<1ms TTL=255
Reply from 10.1.1.254: bytes=32 time<1ms TTL=255
Reply from 10.1.1.254: bytes=32 time<1ms TTL=255
Ping statistics for 10.1.1.254:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 0ms, Maximum = 0ms, Average = 0ms
C:\>telnet 10.1.1.254
Trying 10.1.1.254 ...Open
User Access Verification
Password: 123456 #輸入telnet密碼
Router>
Router>
Router>en
Router>enable
Password: feifei #輸入特權模式密碼
Router#
Router#enable
Router#conf te
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#line vty 0?
<0-15>
Router(config)#line vty 0 3 #3表示3個使用者可以同時登陸
Router(config-line)#transport input ssh
Router(config-line)#password 123456 #telnet密碼
Router(config-line)#login #允許登陸
Router(config-line)#exit
Router(config)#
Router(config)#enable password feifei #特權模式密碼
Router(config)#
Router(config)#exit
Router(config)#line vty 0 3
Router(config-line)#transport input ssh
Router(config-line)#exit
Router(config)#hos
Router(config)#hostname R1 #給路由器配置名字
Router(config)#ip domain-name r1.pokes.com #給路由器配置域名
R1(config)#crypto key generate rsa #生成金鑰
The name for the keys will be: R1.r1.pokes.com
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]: 回車
% Generating 512 bit RSA keys, keys will be non-exportable...[OK]
相關文章
- SSH 自動遠端登陸
- ssh只能遠端登陸到普通使用者,不能以root遠端登陸
- Linux 修改SSH埠 和 禁止Root遠端登陸Linux
- Ubuntu開啟ssh服務遠端登入Ubuntu
- RHCE課程-系統管理部分|5、linux的遠端登陸,telnet.sshLinux
- LINUX修改SSH埠和禁止ROOT遠端登陸設定Linux
- docker hub 下載centos配置ssh遠端登陸DockerCentOS
- Linux全攻略–遠端登入管理-Telnet與SSHLinux
- MySQL命令列登陸,遠端登陸MySQLMySql命令列
- SSH遠端登入原理
- Liunx開啟ssh遠端連線
- 開啟SUSE Linux的SSH密碼登陸Linux密碼
- ubuntu22.04桌面版開啟root使用者登陸並開啟root使用者遠端ssh連線Ubuntu
- Linux 遠端 ssh 登入Linux
- 用SSH KEY遠端登入
- ssh遠端登入協議協議
- ubuntu18.04開啟ssh服務和ssh遠端連線Ubuntu
- sco 遠端登入很慢 telnet修復
- 遠端telnet登入進linux(轉)Linux
- MySQL 遠端登陸踩坑記MySql
- 如何遠端登陸管理伺服器伺服器
- aix 遠端登陸緩慢問題AI
- SSH安全登陸原理:密碼登陸與公鑰登陸密碼
- SSH 遠端登入「記住密碼」密碼
- SSH免密登陸
- Linux下修改ssh埠和禁止root遠端登入Linux
- VS Code / Pycharm配置SSH遠端開發(免密登入)PyCharm
- 開啟mysql遠端登入訪問功能MySql
- Linux系統的遠端登陸管理Linux
- Linux更改SSH遠端登入埠教程Linux
- Shuttle - Mac 下的遠端SSH登入工具Mac
- SSH原理與運用(1):遠端登入
- SSH原理與運用(一):遠端登入
- cisco裝置遠端telnet登入radius認證
- linux ssh免登陸Linux
- ssh免密碼登陸密碼
- 通過CiscoSDM登入思科路由器路由器
- Linux配置SSH免密登陸(公私鑰登陸)Linux