1、 服务器端安装: yum install openssh-server (安装了openssh-server会自动安装openssh)
2、 客户端安装: yum install openssh-clients (安装了openssh-clients 会自动安装openssh)
3、 卸载:yum remove openssh (卸载了openssh,然后会自动卸载openssh-server和openssh-clients)
4、 服务:/usr/sbin/sshd
5、 服务端口:tcp / 22
6、 服务器端配置文件:/etc/ssh/sshd_config
7、 客户端配置文件: /etc/ssh/ssh_config
8、 Ssh服务端的配置文件
9、 在安装了SSH的机器上,会有ssh和sshd两个程序
10、 sshd是服务端的程序,ssh是客户端的程序。我们现在用Xshell连接主机,此时主机上运行的是sshd程序。
11、 我们现在用该主机连接其他的主机,此时我们上面还会运行ssh程序
12、 在 /etc/ssh/ 下面有 ssh_config 和 sshd_config ,分别是客户端的配置文件和服务端的配置文件
13、 使用scp在两台Linux间传数据
(1) 本机传数据给目的主机
A.scp /etc/fstab root@192.168.10.10:/tmp 将本机 /etc/fstab 文件传送到目的主机的 /tmp目录下
B.scp -r /etc/ssh/ root@192.168.10.10:/tmp 将本机 /etc/ssh/ 文件夹传送到目的主机的 /tmp 目录下
(2) 将目的主机的数据下载到本地
14、 基于SSH做远程访问,可以使用ftp服务的相关指令
(1) sftp root@192.168.10.10
(2) get /etc/fstab 将远端主机的 /etc/fstab下载到本机
(3) put /etc/fstab 将本机的 /etc/fstab 上传到远端主机