Chinaunix首页 | 论坛 | 博客
  • 博客访问: 236462
  • 博文数量: 29
  • 博客积分: 1224
  • 博客等级: 中尉
  • 技术积分: 415
  • 用 户 组: 普通用户
  • 注册时间: 2007-03-23 19:05
文章分类

全部博文(29)

文章存档

2013年(1)

2012年(1)

2011年(22)

2008年(5)

分类: LINUX

2011-12-15 00:35:06

 
1、最好是本机修改

2、首先查找SSH的配置文件
[root@linux ~]#find / -name ssh* -print //参数不详细解释了,自己也没记住
[root@linux ~]# find / -name ssh* -print
/usr/libexec/openssh/ssh-keysign
/usr/share/man/man8/sshd.8.gz
/usr/share/man/man8/ssh-keysign.8.gz
/usr/share/man/man5/sshd_config.5.gz
/usr/share/man/man5/ssh_config.5.gz
/usr/share/man/man1/ssh-keygen.1.gz
/usr/share/man/man1/ssh-add.1.gz
/usr/share/man/man1/ssh.1.gz
/usr/share/man/man1/ssh-agent.1.gz
/usr/share/man/man1/ssh-keyscan.1.gz
/usr/share/doc/nss_ldap-226/pam.d/ssh
/usr/sbin/sshd
/usr/bin/ssh
/usr/bin/ssh-keygen
/usr/bin/ssh-add
/usr/bin/ssh-keyscan
/usr/bin/ssh-agent
/var/run/sshd.pid
/var/lock/subsys/sshd
/var/empty/sshd
/etc/ssh
/etc/ssh/ssh_config
/etc/ssh/ssh_host_dsa_key.pub
/etc/ssh/ssh_host_key
/etc/ssh/sshd_config
/etc/ssh/ssh_host_rsa_key.pub
/etc/ssh/ssh_host_dsa_key
/etc/ssh/ssh_host_key.pub
/etc/ssh/ssh_host_rsa_key
/etc/pam.d/sshd
/etc/log.d/scripts/services/sshd2
/etc/log.d/scripts/services/sshd
/etc/log.d/conf/services/sshd2.conf
/etc/log.d/conf/services/sshd.conf
/etc/rc.d/init.d/sshd
[root@linux ~]#

3、修改的是 /etc/ssh/sshd_config 文件,(第一次修改的是 ssh_config文件,结果重起ssh服务,怎么没生效呢?自己还纳闷了,后来google里跑了一下,答案就出来了。
[root@linux ~]# vi /etc/ssh/sshd_config
# $OpenBSD: sshd_config,v 1.69 2004/05/23 23:59:53 dtucker Exp $

# This is the sshd server system-wide configuration file. See
# sshd_config(5) for more information.

# This sshd was compiled with PATH=/usr/local/bin:/bin:/usr/bin

# The strategy used for options in the default sshd_config shipped with
# OpenSSH is to specify options with their default value where
# possible, but leave them commented. Uncommented options change a
# default value.

Port 2222 //以前这个前面是有 # 号的,而且默认是 22,修改一下就ok了
#Protocol 2,1
#ListenAddress 0.0.0.0
#ListenAddress ::

# HostKey for protocol version 1
#HostKey /etc/ssh/ssh_host_key
# HostKeys for protocol version 2
#HostKey /etc/ssh/ssh_host_rsa_key
#HostKey /etc/ssh/ssh_host_dsa_key


4、重起ssh服务,修改端口才生效
[root@linux ~]# service sshd restart
Stopping sshd: [ OK ]
Starting sshd: [ OK ]
[root@linux ~]#

5、为了检验是否正确,可以使用 netstat -an命令查看一下,在linux下的netstat命令自己也没用熟悉,咳~
阅读(2390) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~