<?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>HP ProCurve - Spheron1</title>
	<atom:link href="https://www.spheron1.uk/category/technical/networking/switches-and-routers/hp-procurve/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.spheron1.uk</link>
	<description></description>
	<lastBuildDate>Thu, 07 Mar 2024 11:47:50 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.3</generator>
	<item>
		<title>ProCurve SSH &#8211; no matching cipher found</title>
		<link>https://www.spheron1.uk/2018/09/24/procurve-ssh-no-matching-cipher-found/</link>
					<comments>https://www.spheron1.uk/2018/09/24/procurve-ssh-no-matching-cipher-found/#respond</comments>
		
		<dc:creator><![CDATA[digitaldisaster]]></dc:creator>
		<pubDate>Mon, 24 Sep 2018 10:48:09 +0000</pubDate>
				<category><![CDATA[HP ProCurve]]></category>
		<category><![CDATA[ciphers]]></category>
		<category><![CDATA[HP]]></category>
		<category><![CDATA[HPE]]></category>
		<category><![CDATA[OpenSSH]]></category>
		<category><![CDATA[ProCurve]]></category>
		<category><![CDATA[ProVision]]></category>
		<category><![CDATA[SSH]]></category>
		<guid isPermaLink="false">https://www.spheron1.uk/?p=971</guid>

					<description><![CDATA[<p>I recently ran into a strange problem where I suddenly couldn&#8217;t SSH to any of our HPE ProCurve 2800 series (2824, 2848) devices from either macOS or Linux. I&#8217;m still not really sure what started this as OpenSSH definitely hasn&#8217;t been updated recently on the Linux client device at the very least, so I don&#8217;t see any reason for the&#46;&#46;&#46;</p>
<p>The post <a href="https://www.spheron1.uk/2018/09/24/procurve-ssh-no-matching-cipher-found/">ProCurve SSH – no matching cipher found</a> first appeared on <a href="https://www.spheron1.uk">Spheron1</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>I recently ran into a strange problem where I suddenly couldn&#8217;t SSH to any of our HPE ProCurve 2800 series (2824, 2848) devices from either macOS or Linux. I&#8217;m still not really sure what started this as OpenSSH definitely hasn&#8217;t been updated recently on the Linux client device at the very least, so I don&#8217;t see any reason for the list of ciphers supported on the client to have changed.</p>
<p>Anyway, the error message given by the OpenSSH client was:</p>
<blockquote><p>Unable to negotiate with port 22: no matching cipher found. Their offer: des,3des-cbc</p></blockquote>
<p>These ProCurves are pretty old and their SSH support is rather limited (1024 bit keys for example), so it&#8217;s not hugely surprising that their supported ciphers are also old and crappy.<br />
Luckily, with OpenSSH you can specify the cipher(s) that you want to use on the command line when you&#8217;re connecting:</p>
<blockquote><p>ssh -c 3des-cbc</p></blockquote>
<p>This fixed the issue and lets me connect, but isn&#8217;t particularly convenient. However, you can also specify this in your ~/.ssh/config file so that it is applied automatically:</p>
<blockquote><p>Host &lt;blah&gt;<br />
Ciphers 3des-cbc</p></blockquote>
<p>Just enter one or more hosts to match against (separated by spaces) and OpenSSH will automatically apply the specified options when connecting to any of them.</p><p>The post <a href="https://www.spheron1.uk/2018/09/24/procurve-ssh-no-matching-cipher-found/">ProCurve SSH – no matching cipher found</a> first appeared on <a href="https://www.spheron1.uk">Spheron1</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://www.spheron1.uk/2018/09/24/procurve-ssh-no-matching-cipher-found/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SSH on a HP ProCurve</title>
		<link>https://www.spheron1.uk/2010/07/04/ssh-on-a-hp-procurve/</link>
					<comments>https://www.spheron1.uk/2010/07/04/ssh-on-a-hp-procurve/#respond</comments>
		
		<dc:creator><![CDATA[digitaldisaster]]></dc:creator>
		<pubDate>Sun, 04 Jul 2010 15:32:15 +0000</pubDate>
				<category><![CDATA[HP ProCurve]]></category>
		<category><![CDATA[HP]]></category>
		<category><![CDATA[ProCurve]]></category>
		<category><![CDATA[SCP]]></category>
		<category><![CDATA[SFTP]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[telnet]]></category>
		<category><![CDATA[TFTP]]></category>
		<guid isPermaLink="false">https://www.spheron1.uk/?p=230</guid>

					<description><![CDATA[<p>By default HP ProCurve devices (like most switches) use telnet and TFTP (Trivial File Transfer Protocol) for management access, firmware upgrades and config backups. As these are both unencrypted protocols, it is a good idea to switch to using SSH and SCP/SFTP in order to secure your management access and all important configuration, which you can do with the following&#46;&#46;&#46;</p>
<p>The post <a href="https://www.spheron1.uk/2010/07/04/ssh-on-a-hp-procurve/">SSH on a HP ProCurve</a> first appeared on <a href="https://www.spheron1.uk">Spheron1</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>By default HP ProCurve devices (like most switches) use telnet and TFTP (Trivial File Transfer Protocol) for management access, firmware upgrades and config backups. As these are both unencrypted protocols, it is a good idea to switch to using SSH and SCP/SFTP in order to secure your management access and all important configuration, which you can do with the following commands from configure mode:</p>
<blockquote><p>crypto key generate ssh<br />
ip ssh<br />
ip ssh version 2<br />
ip ssh filetransfer</p></blockquote>
<p>This generates the keys that SSH requires, forces SSH to use the newer version two of the protocol and enables SCP/SFTP support for copying files to and from the flash.</p>
<p>As soon as you enable SSH filetransfer (basically SCP/SFTP) support then TFTP is disabled, but you have to disable telnet access manually in configuration mode with:</p>
<blockquote><p>no telnet-server</p></blockquote><p>The post <a href="https://www.spheron1.uk/2010/07/04/ssh-on-a-hp-procurve/">SSH on a HP ProCurve</a> first appeared on <a href="https://www.spheron1.uk">Spheron1</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://www.spheron1.uk/2010/07/04/ssh-on-a-hp-procurve/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Object Caching 0/81 objects using Redis
Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Database Caching using Redis

Served from: spheron1.uk @ 2026-08-11 12:26:16 by W3 Total Cache
-->