1. 程式人生 > >centos-ssh相關的常用配置與命令

centos-ssh相關的常用配置與命令

安裝ssh yum install openssh-server -y

  1. 基礎命令

ssh -p 埠 使用者@遠端
ssh -v 看登入過程日誌

  1. 設定免密碼登入

建立祕鑰

cd .ssh/
ssh-keygen -t rsa 生產ssh祕鑰

設定許可權

chmod 700 -R .ssh

chmod 600 authorized_keys 

*原理:A免密碼登入B,就把A的id_rsa.pub拷貝到B的authorized_keys *

  1. 將現有的ssh私鑰生產公鑰

ssh-keygen -y -f  ~/.ssh/id_rsa  >   ~/.ssh/id_rsa.pub