|
在刚打开的SSH配置文件如:/etc/ssh/ssh_config :里面的配置信息前都有#号。如:
# Host *
# ForwardAgent no
# ForwardX11 no
# RhostsAuthentication no
# RhostsRSAAuthentication no
# RSAAuthentication yes
如果我想配置这个文件,是不是要把“#”去掉,然后配置后面的"YES" OR "NO"
变成这个样子:
Host *
ForwardAgent no
ForwardX11 no
RhostsAuthentication no
RhostsRSAAuthentication no
RSAAuthentication yes
请各位大侠解答。谢谢 |
|