報錯如下:
ssh_exchange_identification: read: connection reset by peer
lost connection
問題原因
處理辦法
要解決此問題,請進行如下配置檢查和修改:
通過 管理終端 進入系統。
通過 cat 等指令檢視 /etc/hosts.allow 或 /etc/hosts.deny中是否包含類似如下配置:
all:all:deny
如果需要修改相關策略配置,在繼續之前建議進行檔案備份。
使用 vi 等編輯器,按需修改 /etc/hosts.allow 和 /etc/hosts.deny中的相關配置,或者整個刪除或注釋(在最開頭新增 # 號)整行配置。比如:
all:all:deny
vi /etc/hosts.allow
其他全部注釋,追加:
sshd: all
重啟ssh就ok了
service sshd restart (centos6)
systemctl restart sshd (centos7)
利用ssh傳輸檔案 scp
url mac參考 scp出現ssh port 22 connection refused 在linux下一般用scp這個命令來通過ssh傳輸檔案。2 上傳本地檔案到伺服器 scp path filename username servername path 例如scp var www test.p...
SSH檔案傳輸命令 scp
若未安裝ssh,可以參考 1 傳輸檔案 scp source username ip destination2 傳輸目錄 資料夾 scp rp source username ip destination3 說明 source是準備傳輸的本地檔案或者目錄的路徑,destination是準備傳輸到目標...
linux安全傳輸服務命令scp
引數作用 v顯示詳細的連線進度 p指定遠端主機的sshd埠號 r傳送資料夾時 此引數 6使用ipv6協議 root linuxprobe echo welcome to linuxprobe.com readme.txt root linuxprobe scp root readme.txt 192...