<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Difference ssh version 1and version 2 in Wireless</title>
    <link>https://community.cisco.com/t5/wireless/difference-ssh-version-1and-version-2/m-p/2448711#M68658</link>
    <description>&lt;P&gt;Hi,Can anyone say what is the difference&amp;nbsp;ssh version 1and version 2&lt;/P&gt;</description>
    <pubDate>Mon, 05 Jul 2021 07:25:46 GMT</pubDate>
    <dc:creator>SSGM95AAIBM</dc:creator>
    <dc:date>2021-07-05T07:25:46Z</dc:date>
    <item>
      <title>Difference ssh version 1and version 2</title>
      <link>https://community.cisco.com/t5/wireless/difference-ssh-version-1and-version-2/m-p/2448711#M68658</link>
      <description>&lt;P&gt;Hi,Can anyone say what is the difference&amp;nbsp;ssh version 1and version 2&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jul 2021 07:25:46 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/difference-ssh-version-1and-version-2/m-p/2448711#M68658</guid>
      <dc:creator>SSGM95AAIBM</dc:creator>
      <dc:date>2021-07-05T07:25:46Z</dc:date>
    </item>
    <item>
      <title>Sure... here is a good link</title>
      <link>https://community.cisco.com/t5/wireless/difference-ssh-version-1and-version-2/m-p/2448712#M68659</link>
      <description>&lt;P&gt;Sure... here is a good link to look at:&lt;/P&gt;&lt;P&gt;https://learningnetwork.cisco.com/blogs/network-sheriff/2008/09/22/sshv1-or-sshv2-whats-the-big-deal&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2014 11:53:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/difference-ssh-version-1and-version-2/m-p/2448712#M68659</guid>
      <dc:creator>Scott Fella</dc:creator>
      <dc:date>2014-03-14T11:53:54Z</dc:date>
    </item>
    <item>
      <title>SSH protocol, version 2SSH</title>
      <link>https://community.cisco.com/t5/wireless/difference-ssh-version-1and-version-2/m-p/2448713#M68660</link>
      <description>&lt;TABLE border="5" valign="top"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;B&gt;SSH protocol, version 2&lt;/B&gt;&lt;/TD&gt;&lt;TD&gt;&lt;B&gt;SSH protocol, version 1&lt;/B&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Separate transport, authentication, and connection protocols&lt;/TD&gt;&lt;TD&gt;One monolithic protocol&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Strong cryptographic integrity check&lt;/TD&gt;&lt;TD&gt;Weak CRC-32 integrity check; admits an &lt;A href="http://www.core-sdi.com/advisories/ssh-advisory.htm"&gt;insertion attack&lt;/A&gt; in conjunction with some bulk ciphers.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Supports password changing&lt;/TD&gt;&lt;TD&gt;N/A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Any number of session channels per connection (including none)&lt;/TD&gt;&lt;TD&gt;Exactly one session channel per connection (requires issuing a remote command even when you don't want one)&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Full negotiation of modular cryptographic and compression algorithms, including bulk encryption, MAC, and public-key&lt;/TD&gt;&lt;TD&gt;Negotiates only the bulk cipher; all others are fixed&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Encryption, MAC, and compression are negotiated separately for each direction, with independent keys&lt;/TD&gt;&lt;TD&gt;The same algorithms and keys are used in both directions (although RC4 uses separate keys, since the algorithm's design demands that keys not be reused)&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Extensible algorithm/protocol naming scheme allows local extensions while preserving interoperability&lt;/TD&gt;&lt;TD&gt;Fixed encoding precludes interoperable additions&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;User authentication methods:&lt;UL&gt;&lt;LI&gt;publickey (DSA, RSA*, OpenPGP)&lt;/LI&gt;&lt;LI&gt;hostbased&lt;/LI&gt;&lt;LI&gt;password&lt;/LI&gt;&lt;LI&gt;(Rhosts dropped due to insecurity)&lt;/LI&gt;&lt;/UL&gt;&lt;/TD&gt;&lt;TD&gt;Supports a wider variety:&lt;UL&gt;&lt;LI&gt;public-key (RSA only)&lt;/LI&gt;&lt;LI&gt;RhostsRSA&lt;/LI&gt;&lt;LI&gt;password&lt;/LI&gt;&lt;LI&gt;Rhosts (rsh-style)&lt;/LI&gt;&lt;LI&gt;TIS&lt;/LI&gt;&lt;LI&gt;Kerberos&lt;/LI&gt;&lt;/UL&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Use of Diffie-Hellman key agreement removes the need for a server key&lt;/TD&gt;&lt;TD&gt;Server key used for forward secrecy on the session key&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Supports public-key certificates&lt;/TD&gt;&lt;TD&gt;N/A&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;User authentication exchange is more flexible, and allows requiring multiple forms of authentication for access.&lt;/TD&gt;&lt;TD&gt;Allows for exactly one form of authentication per session.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;hostbased authentication is in principle independent of client network address, and so can work with proxying, mobile clients, etc. (though this is not currently implemented).&lt;/TD&gt;&lt;TD&gt;RhostsRSA authentication is effectively tied to the client host address, limiting its usefulness.&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;periodic replacement of session keys&lt;/TD&gt;&lt;TD&gt;N/A&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Mon, 17 Mar 2014 06:33:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/difference-ssh-version-1and-version-2/m-p/2448713#M68660</guid>
      <dc:creator>kaaftab</dc:creator>
      <dc:date>2014-03-17T06:33:48Z</dc:date>
    </item>
    <item>
      <title>Re: Sure... here is a good link</title>
      <link>https://community.cisco.com/t5/wireless/difference-ssh-version-1and-version-2/m-p/4095103#M68661</link>
      <description>&lt;P&gt;Should downvote this, the link is broken.&lt;/P&gt;</description>
      <pubDate>Sun, 31 May 2020 14:53:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/wireless/difference-ssh-version-1and-version-2/m-p/4095103#M68661</guid>
      <dc:creator>Francisco_Caldeira</dc:creator>
      <dc:date>2020-05-31T14:53:33Z</dc:date>
    </item>
  </channel>
</rss>

