一、tenlen方式
1.直接配置密碼
[ar1]user-inte***ce vty 0 4 (進入vty)
ar1-ui-vty0-4]authentication-mode password (設定連線方式)
please configure the login password (maximum length 16):hw123(設定密碼)
[ar1-ui-vty0-4]user privilege level 15(設定級別)
2.使用者名稱方式(aaa)
[ar1]user-inte***ce vty 0 4 (進入vty)
[ar1-ui-vty0-4]authentication-mode aaa
[ar1-ui-vty0-4]quit
[ar1]aaa
[ar1-aaa]local-user huawe privilege level 15 password cipher hw123(配置使用者名稱,級別,密碼)
[ar1-aaa]local-user huawe service-type telnet(配置登入方式預設telent)
忘記遠端登入密碼後從console口登入進去改密碼
[ar1-aaa]local-user huawe password cipher hw1234
二、ssh方式
[ar1]user-inte***ce vty 0 4 (進入vty)
[ar1-ui-vty0-4]authentication-mode aaa
[ar1-ui-vty0-4]protocol inbound ssh (ssh2登入)
[ar1-ui-vty0-4]quit
[ar1]aaa
[ar1-aaa]local-user huawe privilege level 15 password cipher hw123(配置使用者名稱,級別,密碼)
[ar1-aaa]local-user huawe service-type ssh(改變登入方式)
[ar1-aaa]quit
[ar1]stelnet server enable (開啟ssh)
[ar1]rsa local-key-pair create (建立秘鑰對)
confirm to replace them? (y/n)[n]:y(確認建立)
input the bits in the modulus[default = 512]:2048(秘鑰對大小)
設定遠端登入
b要遠端登入a 一.開放a的遠端登入許可權 1.計算機屬性 遠端設定 僅允許執行使用網路級別身份驗證的遠端桌面的計算機連線。2.如果a連線在路由器上,而b不在a所在的網段或子網中 即無法通過a的ip直接訪問到a 則需要設定a的路由器的埠對映。在路由器中找到虛擬伺服器,新增一項,外部埠自己設定,假設為...
華為ssh遠端登入配置
路由器r3上配置 ssh服務端 1 stelnet server enable 2 使用者名稱和密碼 aaalocal user test password cipher 123456 local user test privilege level 15 local user test servic...
設定MySQL遠端登入
預設情況下mysql只能在本地登入,無法遠端登入,需要做一定的設定之後才可以遠端登入,下面給出兩種方法 一 手動增加可以遠端訪問資料庫的使用者 本地登入mysql,更改 mysql 資料庫裡的 user 表裡的 host 項,將 localhost 改為 如下 mysql u root proot ...