<?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>Linux Explore &#187; sshd</title>
	<atom:link href="https://blog.linuxexplore.com/tag/sshd/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.linuxexplore.com</link>
	<description>Exploring Linux</description>
	<lastBuildDate>Mon, 07 Apr 2014 00:30:50 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.38</generator>
	<item>
		<title>Remote packet capture using WireShark &amp; tcpdump</title>
		<link>https://blog.linuxexplore.com/2010/05/30/remote-packet-capture-using-wireshark-tcpdump/</link>
		<comments>https://blog.linuxexplore.com/2010/05/30/remote-packet-capture-using-wireshark-tcpdump/#comments</comments>
		<pubDate>Sat, 29 May 2010 19:31:42 +0000</pubDate>
		<dc:creator><![CDATA[linuxexplore]]></dc:creator>
				<category><![CDATA[Linux Explore Tips & Tricks]]></category>
		<category><![CDATA[Remote packet capture using WireShark & tcpdump]]></category>
		<category><![CDATA[Tcpdump how to]]></category>
		<category><![CDATA[Linux Administrator]]></category>
		<category><![CDATA[Linux Howto]]></category>
		<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[Linux Tricks]]></category>
		<category><![CDATA[mkfifo]]></category>
		<category><![CDATA[remote packet capture]]></category>
		<category><![CDATA[rpcap]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[sshd]]></category>
		<category><![CDATA[tcpdump]]></category>
		<category><![CDATA[wireshark]]></category>

		<guid isPermaLink="false">http://linuxexplore.wordpress.com/?p=234</guid>
		<description><![CDATA[1. First step is to create a special FIFO file using mkfifo command, where you want to see the packet capture using WireShark. This file will use to read &#38; write simultaneously using WireShark &#38; tcpdump. mkfifo /tmp/packet_capture 2. Second give the following ssh command on your terminal, to start the tcpdump on remote PC.&#8230;]]></description>
				<content:encoded><![CDATA[<p>1. First step is to create a special FIFO file using mkfifo command, where you want to see the packet capture using WireShark. This file will use to read &amp; write simultaneously using WireShark &amp; tcpdump.</p>
<pre>mkfifo /tmp/packet_capture</pre>
<p>2. Second give the following ssh command on your terminal, to start the tcpdump on remote PC.</p>
<pre>ssh hostname_or_ip_of_remote_pc "tcpdump -s 0 -U -n -w - -i eth0 not port 22" 
 &gt; /tmp/packet_capture</pre>
<p>3. Third &amp; last step, give the following command to start the WireShark on your PC, which will read packets from the special FIFO file &#8216;/tmp/packet_capture&#8217; at runtime.</p>
<pre>wireshark -k -i /tmp/packet_capture</pre>
<p>After giving the above command all the packets of remote pc&#8217;s eth0 will be visible on WireShark.</p>
]]></content:encoded>
			<wfw:commentRss>https://blog.linuxexplore.com/2010/05/30/remote-packet-capture-using-wireshark-tcpdump/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>SFTP (Secure File Transfer Protocol) With Dropbear</title>
		<link>https://blog.linuxexplore.com/2009/09/15/sftp-secure-file-transfer-protocol-with-dropbear/</link>
		<comments>https://blog.linuxexplore.com/2009/09/15/sftp-secure-file-transfer-protocol-with-dropbear/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 16:50:02 +0000</pubDate>
		<dc:creator><![CDATA[linuxexplore]]></dc:creator>
				<category><![CDATA[Linux Explore How to]]></category>
		<category><![CDATA[dropbear]]></category>
		<category><![CDATA[Secure File Transfer Protocol]]></category>
		<category><![CDATA[SFTP]]></category>
		<category><![CDATA[SSH server]]></category>
		<category><![CDATA[sshd]]></category>

		<guid isPermaLink="false">http://linuxexplore.wordpress.com/?p=154</guid>
		<description><![CDATA[Configure Dropbear SSH server SSH server can’t work independently, it require SSH server (like dropbear) to run. Dropbear require libz &#38; libcrypto to run, so please first install them (if not install already). To install the dropbear SSH server, follow the steps given below. -bash-3.2# tar –xvf dropbear-0.52.tar.bz2 -bash-3.2# cd dropbear-0.52 -bash-3.2# ./configure -bash-3.2# make&#8230;]]></description>
				<content:encoded><![CDATA[<h1>Configure Dropbear SSH server</h1>
<p>SSH server can’t work independently, it require SSH server (like dropbear) to run. Dropbear require <strong>libz</strong> &amp; <strong>libcrypto</strong> to run, so please first install them (if not install already). To install the <strong>dropbear SSH server</strong>, follow the steps given below.</p>
<p>-bash-3.2# tar –xvf dropbear-0.52.tar.bz2</p>
<p>-bash-3.2# cd dropbear-0.52</p>
<p>-bash-3.2# ./configure</p>
<p>-bash-3.2# make PROGRAMS=&#8221;dropbear dbclient dropbearkey dropbearconvert scp&#8221;</p>
<p>-bash-3.2# make PROGRAMS=&#8221;dropbear dbclient dropbearkey dropbearconvert scp&#8221; install</p>
<p>It will install the dropbear SSH server. Now you can create the softlink of <strong>dbclient</strong> as <strong>ssh.</strong> It is not mandatory, you can also use <strong>dbclient</strong> instead of <strong>ssh</strong> command.</p>
<p>-bash-3.2# ln –s /usr/local/bin/dbclient /usr/bin/ssh</p>
<p>To start the dropbear SSH server, first create the <strong>dss</strong> &amp; <strong>rsa</strong> keys (for the encryption of SSH packets) in <strong>/etc/dropbear</strong> directory. SSH server does work without encryption, so it is mandatory to create the keys.</p>
<p>-bash-3.2# dropbearkey –t dss –f /etc/dropbear/dropbear_dss_host_key</p>
<p>-bash-3.2# dropbearkey –t rsa –f /etc/dropbear/dropbear_rsa_host_key</p>
<p>Now <strong>dropbear </strong>can<strong> </strong>be started simply by following command.</p>
<p>-bash-3.2# dropbear</p>
<p>If above will done properly you can connect your system via SSH.</p>
<p><a href="http://linuxexplore.wordpress.com/how-tos/sftp-secure-file-transfer-protocol-with-dropbear/" target="_self">View Complete Topic</a></p>
]]></content:encoded>
			<wfw:commentRss>https://blog.linuxexplore.com/2009/09/15/sftp-secure-file-transfer-protocol-with-dropbear/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
