思科路由器:開啟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]
相關文章
- Ubuntu開啟ssh服務遠端登入Ubuntu
- docker hub 下載centos配置ssh遠端登陸DockerCentOS
- ubuntu18.04開啟ssh服務和ssh遠端連線Ubuntu
- Linux 遠端 ssh 登入Linux
- SSH遠端登入原理
- Liunx開啟ssh遠端連線
- ssh遠端登入協議協議
- ubuntu22.04桌面版開啟root使用者登陸並開啟root使用者遠端ssh連線Ubuntu
- MySQL 遠端登陸踩坑記MySql
- SSH 遠端登入「記住密碼」密碼
- Linux更改SSH遠端登入埠教程Linux
- SSH安全登陸原理:密碼登陸與公鑰登陸密碼
- linux ssh免登陸Linux
- SSH免密登陸
- VS Code / Pycharm配置SSH遠端開發(免密登入)PyCharm
- Linux系統的遠端登陸管理Linux
- 如何遠端登陸管理伺服器伺服器
- Linux配置SSH免密登陸(公私鑰登陸)Linux
- Shuttle - Mac 下的遠端SSH登入工具Mac
- 開啟mysql遠端登入訪問功能MySql
- SSH免密登入與SCP遠端複製
- Ubuntu中允許root遠端ssh登入的方法Ubuntu
- vs安裝Remote-SSH 遠端登入主機REM
- SSH遠端指南
- 配置SSH免密碼登陸密碼
- ssh別名登陸小技巧
- vnc登入,4個能夠vnc登陸的遠端工具VNC
- SSH以及ROS遠端登入設定保姆級教程ROS
- centos6.8安裝mysql並配置遠端登陸CentOSMySql
- 雲伺服器遠端登陸黑屏怎麼辦伺服器
- SSH 免密登陸 簡單版
- Mac SSH 免密登入 連線遠端伺服器Mac伺服器
- 每天一條Linux命令(24) ssh (遠端安全登入)Linux
- 華為eNSP基礎入門-配置SSH遠端登入
- 使用 Frp 和 Docker 通過遠端桌面和 SSH 來遠端控制 Windows(反向代理)FRPDockerWindows
- Python遠端登陸伺服器應該這樣玩Python伺服器
- ubuntu20.04 ssh遠端開啟vnc,並顯示hdmi輸出介面UbuntuVNC
- linux SSH服務允許root使用者遠端登入Linux