`

Ubuntu11.04安装配置openssh-server (转)

 
阅读更多

Ubuntu11环境oepnssh-server安装配置

1、环境:

Ubuntu11.04

 

2、安装

Ubuntu提供了便利的apt工具,采用在线安装依赖包将会自动下载并安装。

 

Python代码 复制代码 收藏代码
  1. sudo apt-get install openssh-server  
sudo apt-get install openssh-server

 

 


 

3、安装过程

    下载过程视网速而定,很小的317K,如果不拨号很速度。


 

4、启动、停止ssh服务

 

 

Python代码 复制代码 收藏代码
  1. cd /etc/init.d   
  2. //启动ssh服务   
  3. service ssh start   
  4. //停止ssh服务   
  5. service ssh stop   
  6. //重启ssh服务   
  7. service ssh restart  
cd /etc/init.d
//启动ssh服务
service ssh start
//停止ssh服务
service ssh stop
//重启ssh服务
service ssh restart

 


 

5、查看是否启动

     如果有sshd服务说明ssh server已经启动,也可以直接start(别restart,这是重启),如果已经启动会提示。

 

 

Java代码 复制代码 收藏代码
  1. ps -d|grep ssh  
ps -d|grep ssh

  或者

 

Ruby代码 复制代码 收藏代码
  1. pidof sshd  
pidof sshd

 


 

6、高级技巧

     openssh-server安装后剩下的工作就是配置,配置信息位于sshd_config文件,一行一个配置,#开头的行表示注释。配置内容 key=value形式出现。

Sshd_config代码
# Package generated configuration file
# See the sshd_config(5) manpage for details

# What ports, IPs and protocols we listen for
#监听端口,可以修改为其他端口默认22
Port 22
# Use these options to restrict which interfaces/protocols sshd will bind to
#ListenAddress ::
#监听IP,去掉注释标示监听所有ip地址
#ListenAddress 0.0.0.0
#协议版本号
Protocol 2
# HostKeys for protocol version 2
HostKey /etc/ssh/ssh_host_rsa_key
HostKey /etc/ssh/ssh_host_dsa_key
HostKey /etc/ssh/ssh_host_ecdsa_key
#Privilege Separation is turned on for security
UsePrivilegeSeparation yes

# Lifetime and size of ephemeral version 1 server key
KeyRegenerationInterval 3600
ServerKeyBits 768

# Logging
SyslogFacility AUTH
#ssh登陆日志写入AUTH系统日志设备,建议级别:VERBOSE
LogLevel INFO

# Authentication:
#连接ubuntu120秒内登陆ssh,否则断开。
LoginGraceTime 120
#是否允许root登陆ssh,如果设置可能su root失败
PermitRootLogin yes
#设置SSH在接收登录请求之前是否检查用户家目录和rhosts文件的权限和所有权。防止目录和文件设置成任何人都有写权限
StrictModes yes

RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile	%h/.ssh/authorized_keys

# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes

# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no

# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no

# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication yes

# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes

# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes

X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
#设置是否打印最用户最后一次登陆时间。例如:Last login: Tue May 17 13:58:15 2011 from localhost
PrintLastLog yes
#是否发送心跳包
TCPKeepAlive yes
#UseLogin no

#MaxStartups 10:30:60
#激活警示条,警示未经许可用户登陆
#Banner /etc/issue.net

# Allow client to pass locale environment variables
AcceptEnv LANG LC_*

#配置外部子系统,参数为子系统名字、执行命令
Subsystem sftp /usr/lib/openssh/sftp-server

# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication.  Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM yes

  

 

分享到:
评论

相关推荐

    UBUNTU11.04服务器版安装和简单配置.docx

    本文档总结了UBUNTU 11.04服务器版的安装和简单配置过程。安装前需要分好磁盘分区,包括交换空间的分区,建议使用Ubuntu桌面版光盘中分区工具。安装步骤包括选择简体中文、配置网络、设置主机名、时钟设置、磁盘分区...

    UBUNTU11.04服务器版安装和简单配置.pdf

    【Ubuntu 11.04 服务器版安装和配置详解】 Ubuntu 11.04 是 Ubuntu Linux 的一个老版本,特别针对服务器环境设计。在安装前,需要预先规划磁盘分区,通常需要一个交换空间分区,大小约为2GB,以提供虚拟内存功能。...

    Ubuntu ssh在线安装

    sudo apt-get install openssh-server ``` 第一条命令用于更新软件源列表,第二条命令则是安装SSH服务端程序。在安装过程中可能会出现提示让用户确认是否继续,输入`Y`并回车即可。 ##### 4. 配置SSH服务 安装...

    安装 Ubuntu Server 11 转自红薯论坛.pdf

    在本文中,我们将详细探讨如何安装 Ubuntu Server 11.04(Natty Narwhal)并同时配置 LAMP(Linux、Apache、MySQL 和 PHP)环境。这是一个适用于初学者和经验丰富的管理员的教程,旨在帮助他们在短短15分钟内完成...

    安装 Ubuntu Server 11 转自红薯论坛.docx

    通过以上步骤,你就成功地在 Ubuntu Server 11.04 上安装并配置了 LAMP 环境。现在,你可以开始在新服务器上部署和运行基于 Apache、MySQL 和 PHP 的应用程序了。请记住,安全性和稳定性是服务器管理的关键,因此...

    嵌入式开发中linux系统需要的基本配置方法

    - 按照提示逐步操作,选择合适的操作系统类型和版本,例如Ubuntu 11.04。 - 设置虚拟硬盘大小及其他硬件配置参数。 - **安装Linux系统:** - 加载ISO镜像文件开始安装过程。 - 按照安装向导的指示完成安装步骤,...

    hadoop平台搭建流程.pdf

    这里我们使用 Ubuntu 11.04 作为操作系统,Hadoop 0.20.203.0 作为 Hadoop 的版本,JDK 1.6.0_25 作为 Java 开发工具包的版本。 在搭建环境时,需要注意以下几点: * Namenode 和 Datanode 需要创建相同的用户名,...

    SSH工具设置说明.pdf

    首先,确保在Ubuntu Server 11.04上已经安装并启用了SSH服务。在Ubuntu上,这通常可以通过运行以下命令来完成: ```bash sudo apt-get update sudo apt-get install openssh-server systemctl start ssh systemctl ...

    ubuntu安装.docx

    在软件选择上,务必勾选OpenSSH server,以便通过SSH远程登录,避免后期手动安装带来的不便。 继续进行,设定GRUB引导加载器安装到硬盘,并确认安装。安装完成后,别忘了移除安装介质,即U盘。初次登陆系统时,应...

    hadoop实验报告.pdf

    本实验报告主要涵盖了在Ubuntu 11.04 64位系统上安装和配置Hadoop的过程,以及进行伪分布式操作的步骤。 首先,为了运行Hadoop,我们需要安装Java Development Kit (JDK)。由于Ubuntu的软件中心不提供Sun JDK,我们...

    hadoop安装文档

    本文档详细介绍了如何在**Ubuntu Server 11.04**上搭建**Hadoop**的分布式环境,包括Linux环境的搭建、JDK的安装与配置、Hadoop的下载与安装等关键步骤。通过以上步骤,读者可以成功地在自己的环境中搭建起一个功能...

    ssh登陆connection refused的解决办法.pdf

    在 Ubuntu 11.04 中,默认情况下 SSH 服务器程序并没有安装,可以使用以下命令安装: ``` sudo apt-get install openssh-server ``` 然后,确认 SSH 服务器程序是否启动: ``` ps -e | grep ssh ``` 如果看到 ...

    SSH工具设置说明.docx

    本文将详细介绍如何在Ubuntu Server 11.04上配置SSH服务,并探讨两个常用的SSH工具——F-Secure和SecureCRT的设置方法。 ### SSH服务的开启 在Ubuntu Server上,SSH服务通常默认安装。如果没有,可以通过以下命令...

Global site tag (gtag.js) - Google Analytics