<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ubuntu,debian,redhat -linuxany.com &#187; SSH</title>
	<atom:link href="http://www.linuxany.com/archives/tag/ssh/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linuxany.com</link>
	<description></description>
	<lastBuildDate>Thu, 26 Jan 2012 08:59:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Linux 10个最酷的单行命令</title>
		<link>http://www.linuxany.com/archives/1537.html</link>
		<comments>http://www.linuxany.com/archives/1537.html#comments</comments>
		<pubDate>Wed, 04 May 2011 04:37:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[RedHat]]></category>
		<category><![CDATA[mtr]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[sudo]]></category>

		<guid isPermaLink="false">http://www.linuxany.com/?p=1537</guid>
		<description><![CDATA[sudo !! 以 root 帐户执行上一条命令。 python -m SimpleHTTPServer 利用 Python 搭建一个简单的 Web 服务器，可通过 http://$HOSTNAME:8000 访问。 :w !sudo tee % 在 Vim 中无需权限保存编辑的文件。 cd - 更改到上一次访问的目录。 ^foo^bar 将上一条命令中的 foo 替换为 bar，并执行。 cp filename{,.bak} 快速备份或复制文件。 mtr linuxany.com traceroute + ping !whatever:p 搜索命令历史，但不执行。 $ssh-copy-id www@linuxany.com 将 ssh keys 复制到 www@linuxany.com 以启用无密码 SSH 登录。 ffmpeg -f x11grab -s wxga [...]]]></description>
		<wfw:commentRss>http://www.linuxany.com/archives/1537.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ant应用举例—远程部署web应用</title>
		<link>http://www.linuxany.com/archives/1323.html</link>
		<comments>http://www.linuxany.com/archives/1323.html#comments</comments>
		<pubDate>Wed, 23 Jun 2010 14:55:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java/jsp]]></category>
		<category><![CDATA[ant]]></category>
		<category><![CDATA[deploy]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[scp]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://www.linuxany.com/?p=1323</guid>
		<description><![CDATA[打包好web应用时，有时候上传也是比较烦琐，ant需要jsch.jar，可以到SourceForge：jsch，把它放到ant能找到地方，可以放到ANT_HOME/lib下。 然后写target： &#60;target name=&#34;copy.to.remote&#34; depends=&#34;war&#34;&#62; &#160; &#160; &#60;scp&#160;file=&#34;${build.dir}/${project.name}.war&#34; todir=&#34;${scp.username}:${scp.passwd}@${scp.host}:${scp.path}&#34; port=&#34;22&#34; trust=&#34;true&#34; verbose=&#34;true&#34;&#62;&#60;/scp&#62; &#60;/target&#62; 延伸： •使用时报 com.jcraft.jsch.JSchException: reject HostKey: 192.168.0.123。是没有加 trust=”true”，把它加上就好了。 •在 eclipse 中加 ant 额外的lib：首选项->Ant->Runtime->ClassPath->Global Entries，添加额外的jar 您还可能感兴趣的内容Linux 10个最酷的单行命令ant应用举例—执行源码补丁任务how do I find out all failed login attempts via ssh/telnet? (如何查找通过ssh登陆失败的尝试)Secure your SSH deployment with WiKID two-factor authentication 让debian启动到文本模式]]></description>
		<wfw:commentRss>http://www.linuxany.com/archives/1323.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how do I find out all failed login attempts via ssh/telnet? (如何查找通过ssh登陆失败的尝试)</title>
		<link>http://www.linuxany.com/archives/567.html</link>
		<comments>http://www.linuxany.com/archives/567.html#comments</comments>
		<pubDate>Thu, 20 Nov 2008 14:47:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[RedHat]]></category>
		<category><![CDATA[cut]]></category>
		<category><![CDATA[grep]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[telnet]]></category>

		<guid isPermaLink="false">http://www.linuxlaptop.cn/?p=567</guid>
		<description><![CDATA[If you use ssh as remote login service, use following command to find out all failed login attempts via ssh or telnet (don&#8217;t use telnet): Use grep command to find out authentication failure message from /var/log/messages file Use awk and cut command to print IPs/hostname Use sort command to sort them Use uniq command to [...]]]></description>
		<wfw:commentRss>http://www.linuxany.com/archives/567.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure your SSH deployment with WiKID two-factor authentication</title>
		<link>http://www.linuxany.com/archives/468.html</link>
		<comments>http://www.linuxany.com/archives/468.html#comments</comments>
		<pubDate>Thu, 02 Oct 2008 14:27:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[1.Application]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[wikid]]></category>

		<guid isPermaLink="false">http://www.linuxlaptop.cn/?p=468</guid>
		<description><![CDATA[SSH offers a highly secure channel for remote administration of servers. However, if you face an audit for regulatory or business requirements, such as Visa/Mastercard PCI, you need to be aware of some potential authentication related short-comings that may cause headaches in an audit. For example: There is no way to control which users have [...]]]></description>
		<wfw:commentRss>http://www.linuxany.com/archives/468.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>让debian启动到文本模式</title>
		<link>http://www.linuxany.com/archives/410.html</link>
		<comments>http://www.linuxany.com/archives/410.html#comments</comments>
		<pubDate>Sat, 30 Aug 2008 13:48:19 +0000</pubDate>
		<dc:creator>x72</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[initdefault]]></category>
		<category><![CDATA[inittab]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://www.linuxlaptop.cn/?p=443</guid>
		<description><![CDATA[　N次了，这个问题，这次一定要让自己记住，debian无愧于它的名字，普通方法是搞不定滴。 　　昨天更新gtk，搞坏了桌面，无奈用fvwm代替。今天启动发现竟然又自己启动到图形模式了，可是登录后桌面依然无法显示。 　　SSH连上，vim /etc/inittab ，修改成id:3:initdefault: ，重启。不行。 　　怎么忘了debian是不走寻常路的呢，于是找到 /etc/rc3.d目录，注意这个目录是”rc”+上面inittab里面initdefault的数值（我的是3，刚改的）+”.d” 。在这个目录有一个S99gdm (有的是S99kdm 跟桌面管理器有关) 的链接，删除或者改名，重启就OK了。 您还可能感兴趣的内容Debian的ssh登入过慢的解决Linux 10个最酷的单行命令ant应用举例—远程部署web应用how do I find out all failed login attempts via ssh/telnet? (如何查找通过ssh登陆失败的尝试)Secure your SSH deployment with WiKID two-factor authentication]]></description>
		<wfw:commentRss>http://www.linuxany.com/archives/410.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto perform UDP tunneling through SSH connection</title>
		<link>http://www.linuxany.com/archives/406.html</link>
		<comments>http://www.linuxany.com/archives/406.html#comments</comments>
		<pubDate>Fri, 29 Aug 2008 15:19:50 +0000</pubDate>
		<dc:creator>x72</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[forward]]></category>
		<category><![CDATA[netcat]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[tcp]]></category>
		<category><![CDATA[tunneling]]></category>
		<category><![CDATA[udp]]></category>

		<guid isPermaLink="false">http://www.linuxlaptop.cn/?p=438</guid>
		<description><![CDATA[In this tutorial we will are going to provide simple procedure how to to perform UDP tunneling through an SSH connection.Say you need to forward UDP packets between two remote networks securely. E.g : dns queries from your home machine to your dns servers at work. you can use the following way : 1. Connect [...]]]></description>
		<wfw:commentRss>http://www.linuxany.com/archives/406.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debian的ssh登入过慢的解决</title>
		<link>http://www.linuxany.com/archives/342.html</link>
		<comments>http://www.linuxany.com/archives/342.html#comments</comments>
		<pubDate>Mon, 18 Aug 2008 03:06:53 +0000</pubDate>
		<dc:creator>x72</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[SSH]]></category>

		<guid isPermaLink="false">http://www.linuxlaptop.cn/?p=366</guid>
		<description><![CDATA[用ssh连线到Debian主机时,在某些情况下,会觉得login的速度很慢.那种慢法是,在你输入了user name之后, login as: user (30秒过去...)user@Debian.server's password: ****** 往往要等个半分钟,主机才会询问你密码. 是什么网路环境下才会发生这个问题XD 通常,这就是反查所造成的问题. Debian环境下,预设是开启反向Domain解析. 解决的方法:编辑/etc/nsswitch.conf 找到hosts那行，将其改成下面这样： hosts: files dns [NOTFOUND=return] 您还可能感兴趣的内容让debian启动到文本模式Linux 10个最酷的单行命令ant应用举例—远程部署web应用how do I find out all failed login attempts via ssh/telnet? (如何查找通过ssh登陆失败的尝试)Secure your SSH deployment with WiKID two-factor authentication]]></description>
		<wfw:commentRss>http://www.linuxany.com/archives/342.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

