Below you will find pages that utilize the taxonomy term “ssh”
August 14, 2012
CentOS 6.0 SSH命令无法执行的问题的解决办法
"需要通过这台centos,ssh到另外一台\n结果发现没有ssh\n通常可能是未安装openssh所导致的\n执行\nrpm -qa | grep openssh\n如果没有:\nopenssh-clients\n那就安装:\nyum -y install openssh-clients"
July 16, 2012
解决SSH里“Server Refused Our Key”的方法
"/******************* title:解决SSH里“Server Refused Our Key”的方法 author:insun blog:http://yxmhero1989.blog.163.com/ *****************/ 在公司使用虚拟机研究爬虫抓网页和相关数据,要连接linux虚拟机。\nputty.exe 该软件可连接服务器,用来连接远程的linux服务器和虚拟机,或者用来设置代理。\n网关设置正确的话,应该可以不用密钥可以login的。若在其他地方才要ppk密钥key。\nwinscp406setup.exe 该软件用来在pc和服务器中传送文件\n输入root后出现“Disconnected:No supported authentication methods available” 命令行里输入 ipconfig /flushdns这个试一下,自己研究去哈哈\n====================================================================================\n找了个:Server …"
July 16, 2012
SSH+Git Server on Windows – 在Windows下搭建Git服务器(教程)
"推荐软件: Windows 的 Git 服务器GitStack\n会看英文\n软件需求: 1.windowXP, win7 都测试通过 2.Copssh_3.1.4_Installer.exe 3.Git-1.7.3.1-preview20101002.exe\n搭建git服务器步骤: 1.安装copssh 1.1 我选择安装路径c:\\ICW,其他选项都选默认. 1.2 设置环境变量,系统的Path中添加C:\\ICW\\bin\n1.3 右键 我的电脑,选择 管理,打开 系统工具-\u0026gt;本地用户和组-\u0026gt;用户, 在用户窗口点击右键,选择 新用户,用户 名输入git,密码输入git. 1.4.选择git用户,右键 选属性, 点击 隶属于-\u0026gt;添加,使git用户被添加到administrator组,并拥有administrator权限. 1.5 选择 开始-\u0026gt;所有程序-\u0026gt;copssh-\u0026gt;0.1 activate a user,在user name下拉列表中选择刚刚新建的git用户,点击next,输入 Type a passhrase,并记住输入的Type a …"
September 2, 2011
linux下ssh使用rsa认证教程[原创]
"下面我们来对linux(centos)平台如何使用ssh的rsa认证功能来实现安全登录服务器的教程.为了安全我们一般不直接使用root这个用户,而使用其它用户来代替.如果需要root权限的时候,直接在服务器上进行su命令进行用户切换就可以了.\n一.配置/etc/ssh/ssh_config文件\nServerKeyBits 1024 //# 注释取消,将768改为1024 PermitRootLogin no //# 注释取消,将yes改为no 禁止root登录 RSAAuthentication yes //# 启用 RSA 认证 PubkeyAuthentication yes //# 启用公钥认证 AuthorizedKeysFile //# .ssh/authorized_keys # 验证公钥的存放路径 PermitEmptyPasswords no //# 取消注释,禁止空密码登录 PasswordAuthentication no //# 取消注释,禁止使用密码方式登录,有密钥谁还用密码啊 注意一下,在centos5.0之前SSH服务需要指明版本,#Protocol 2,1 …"
April 10, 2011
SSH 超时断开连接解决办法
"有2种方法\n1、 配置服务器\n#vi /etc/ssh/sshd_config\n1)找到 ClientAliveInterval参数,如果没有就自己加一行\n数值是秒,比如你设置为120 ,则是2分钟\nClientAliveInterval 120\n2)ClientAliveCountMax\n指如果发现客户端没有相应,则判断一次超时,这个参数设置允许超时的次数。如3 、5等自定义\n修改两项参数后如下:\n—————————-\nClientAliveInterval 120\nClientAliveCountMax 0 ###在不允许超时次数\n重新加载sshd服务。退出客户端,再次登陆即可验证。\n2、 配置客户端\n#vi /etc/ssh/ssh_config\n然后找到里面的\nServerAliveInterval\n参数,如果没有你同样自己加一个就好了\n参数意义相同,都是秒数,比如5分钟等\nServerAliveInterval 300\n=====================================\n上面是配置需要服务器权限,如果没有服务器权限则可以使用这个方法,其思想是:客户端向 …"
October 13, 2010
CentOS配置SSH证书登录验证
"操作步骤:\n————————– 1)先添加一个维护账号:msa\n2)然后su – msa\n3)ssh-keygen -t rsa 指定密钥路径和输入口令之后,即在/home/msa/.ssh/中生成公钥和私钥:id_rsa id_rsa.pub\n4)cat id_rsa.pub \u0026raquo; authorized_keys 至于为什么要生成这个文件,因为sshd_config里面写的就是这个。 然后chmod 400 authorized_keys,稍微保护一下。\n5)用psftp把把id_rsa拉回本地,然后把服务器上的id_rsa和id_rsa.pub干掉\n6)配置/etc/ssh/sshd_config\nProtocol 22 ServerKeyBits 1024 PermitRootLogin no #禁止root登录而已,与本文无关,加上安全些\n#以下三行没什么要改的,把默认的#注释去掉就行了\nRSAAuthentication yes PubkeyAuthentication yes AuthorizedKeysFile .ssh/authorized_keys …"
July 8, 2010
ubuntu开启SSH服务
"网上有很多介绍在Ubuntu下开启SSH服务的文章,但大多数介绍的方法测试后都不太理想,均不能实现远程登录到Ubuntu上,最后分析原因是都没有真正开启ssh-server服务。最终成功的方法如下:\nsudo apt-get install openssh-server\nUbuntu缺省安装了openssh-client,所以在这里就不安装了,如果你的系统没有安装的话,再用apt-get安装上即可。\n然后确认sshserver是否启动了:\nps -e |grep ssh\n如果只有ssh-agent那ssh-server还没有启动,需要/etc/init.d/ssh start,如果看到sshd那说明ssh-server已经启动了。\nssh-server配置文件位于/ etc/ssh/sshd_config,在这里可以定义SSH的服务端口,默认端口是22,你可以自己定义成其他端口号,如222。然后重启SSH服务:\nsudo /etc/init.d/ssh resar\nssh连接:ssh [email protected]"
December 11, 2009
如何通过ssh修改ip
"Q:有些时候我们需要修改服务器的ip,但服务器又不在本地,只能ssh连接,这个时候怎么办哪?\nA:/etc/rc.d/netif restart \u0026amp;\u0026amp; /etc/rc.d/routing restart\n以下是freebsd下的相关命令:\n#关闭网卡 ifconfig network-interface down #启动网卡 ifconfig network-interface up #查看尚未启动的网卡 ifconfig -d #查看已启动网卡 #重启路由 /etc/rc.d/routing restart"
December 11, 2009
Freebsd限定特定IP来使用ssh登录
"法1.\n#ee /etc/hosts.allow\n在ALL : ALL : allow的前面加上\nsshd : your IP : allow\nsshd : ALL : deny\n就OK了。\n法2.\n修改/etc/ssh/sshd_config\n加入\nAllowusers [email protected]\n意思为\n只允许admin从172.16.2.188登陆\n法3.\n防火墙"
January 1, 2009
freebsd ssh 服务器登录失败问题的解决
"编辑/etc/ssh/sshd_config 保证设置以下参数:\nPermitRootLogin yes PasswordAuthentication yes UseDNS no LoginGraceTime 0"
January 1, 2009
FreeBSD下SSH配置
"sshd的配置文件一般位于/etc/ssh/sshd_config。\n终端下:#ee /etc/ssh/sshd_config\n———————————————\n#Protocol 2,1\n修改为:\nProtocol 2\n#ListenAddress 0.0.0.0\n修改为:\nListenAddress 0.0.0.0\n#PermitRootLogin yes\n修改为\nPermitRootLogin yes\n另把\n#PasswordAuthenticationno\nPasswordAuthentication yes\n即可.\n(Linux上默认允许root用户登录,此处可不修改。)\n编辑**/etc/rc.conf** 最后加入:sshd_enable=”yes”\n修改完成后重启sshd:\n/etc/rc.d/sshd restart\n——————————-\n现在即可ssh登陆."
January 1, 2009
FreeBSD下如何开启SSH
"首先vi编辑/etc/inetd.conf,去掉ssh前的#,保存退出\n编辑/etc/rc.conf\n最后加入:sshd_enable=”yes”即可\n激活sshd服务:\ntecho#/etc/rc.d/sshd start\n用下面命令检查服务是否启动,在22端口应该有监听。\n#netstat -an ## check port number 22\n最后\nvi /etc/ssh/sshd_config,\n下面是我的配置文件:(/etc/ssh/sshd_config) ####################################################\n# $OpenBSD: sshd_config,v 1.72 2005/07/25 11:59:40 markus Exp $ # $FreeBSD: src/crypto/openssh/sshd_config,v 1.42.2.1 2005/09/11 16:50:35 des Exp $\n# This is the sshd server system-wide configuration file. See …"