<?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 SSH2 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2/m-p/2424884#M767271</link>
    <description>Has anybody been successful installing SSH2 (server) on HPUX 11.0?</description>
    <pubDate>Mon, 05 Jun 2000 15:05:22 GMT</pubDate>
    <dc:creator>Jeff Pendleton</dc:creator>
    <dc:date>2000-06-05T15:05:22Z</dc:date>
    <item>
      <title>SSH2</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2/m-p/2424884#M767271</link>
      <description>Has anybody been successful installing SSH2 (server) on HPUX 11.0?</description>
      <pubDate>Mon, 05 Jun 2000 15:05:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2/m-p/2424884#M767271</guid>
      <dc:creator>Jeff Pendleton</dc:creator>
      <dc:date>2000-06-05T15:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: SSH2</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2/m-p/2424885#M767272</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;SSH 2.0.12 compiles and works fine on both HP-UX 10.20 and HP-UX 11.00. However, I encounter problems compiling both SSH 2.0.13 and SSH 2.1.0 on HP-UX 10.20 and HP-UX 11.00 using HP's Ansi C. I have yet to try compiling using GCC.&lt;BR /&gt;&lt;BR /&gt;Do let me know if you manage to versions 2.0.13 or 2.1.0 compiled successfully.&lt;BR /&gt;&lt;BR /&gt;Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim.</description>
      <pubDate>Wed, 07 Jun 2000 00:48:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2/m-p/2424885#M767272</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2000-06-07T00:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: SSH2</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2/m-p/2424886#M767273</link>
      <description>Here's a patch that I wrote to get it working in our environment. Essentially all it does is translate utmpx calls to utmp calls. I'm not sure if HP has a utmpx package out there somewhere, but it looks to have support for it in the header files when in reality it doesn't. &lt;BR /&gt;To run it, cut and paste the following code into a file and place it in the base directory of the ssh 2.2.1 source. &lt;BR /&gt;Then do the following: &lt;BR /&gt;&lt;BR /&gt;"patch lib/sshsession/wtmp.c patch.file" &lt;BR /&gt;&lt;BR /&gt;**** Start Utmpx Patch Code ( Do not include in patch file ) **** &lt;BR /&gt;--- lib/sshsession/wtmp.c.orig &lt;BR /&gt;+++ lib/sshsession/wtmp.c &lt;BR /&gt;342c342 &lt;BR /&gt;&amp;lt; struct utmpx ux, *uxp; &lt;BR /&gt;--- &lt;BR /&gt;struct utmp ux, *uxp; &lt;BR /&gt;406c406 &lt;BR /&gt;&amp;lt; gettimeofday(&amp;amp;ux.ut_tv); &lt;BR /&gt;--- &lt;BR /&gt;gettimeofday(&amp;amp;ux.ut_time); &lt;BR /&gt;408c408 &lt;BR /&gt;&amp;lt; gettimeofday(&amp;amp;ux.ut_tv, NULL); &lt;BR /&gt;--- &lt;BR /&gt;gettimeofday(&amp;amp;ux.ut_time, NULL); &lt;BR /&gt;411,412c411,412 &lt;BR /&gt;&amp;lt; ux.ut_tv.tv_sec = ssh_time(); &lt;BR /&gt;&amp;lt; ux.ut_tv.tv_usec = 0; &lt;BR /&gt;--- &lt;BR /&gt;ux.ut_time.tv_sec = ssh_time(); &lt;BR /&gt;ux.ut_time.tv_usec = 0; &lt;BR /&gt;415c415 &lt;BR /&gt;&amp;lt; ux.ut_session = pid; &lt;BR /&gt;--- &lt;BR /&gt;ux.ut_pid = pid; &lt;BR /&gt;432,433c432,436 &lt;BR /&gt;&amp;lt; pututxline(&amp;amp;ux); &lt;BR /&gt;&amp;lt; updwtmpx(WTMPX_FILE, &amp;amp;ux); &lt;BR /&gt;--- &lt;BR /&gt;pututline(&amp;amp;ux); &lt;BR /&gt;utmpname(WTMP_FILE); &lt;BR /&gt;pututline(&amp;amp;ux); &lt;BR /&gt;utmpname(UTMP_FILE); &lt;BR /&gt;/* updwtmpx(WTMPX_FILE, &amp;amp;ux); */ &lt;BR /&gt;***** END UTMPX Patch Code ( Do not include in patch file ) ***** &lt;BR /&gt;&lt;BR /&gt;-- &lt;BR /&gt;Dan Wanek &lt;BR /&gt;DePaul University&lt;BR /&gt;&lt;COMP.SYS.HP.HPUX&gt;&lt;BR /&gt;&lt;/COMP.SYS.HP.HPUX&gt;</description>
      <pubDate>Wed, 07 Jun 2000 01:13:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2/m-p/2424886#M767273</guid>
      <dc:creator>news groups</dc:creator>
      <dc:date>2000-06-07T01:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: SSH2</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2/m-p/2424887#M767274</link>
      <description>I've installed ssh 2.1 under hpux 11.0: only one problem you need to specify manually the target &lt;BR /&gt;with the --host option: &lt;BR /&gt;../configure --host=hppa2.0-hp-hpux11.00 &lt;BR /&gt;&lt;BR /&gt;Max E. Rizzi &lt;BR /&gt;&lt;COMP.SYS.HP.HPUX&gt;&lt;/COMP.SYS.HP.HPUX&gt;</description>
      <pubDate>Wed, 07 Jun 2000 01:20:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2/m-p/2424887#M767274</guid>
      <dc:creator>news groups</dc:creator>
      <dc:date>2000-06-07T01:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: SSH2</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh2/m-p/2424888#M767275</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You are right. I manage to compile and run SSH 2.1.0 on HP-UX 11.00 afterall with the option appended behind ./configure. Thanks.&lt;BR /&gt;&lt;BR /&gt;Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim.</description>
      <pubDate>Wed, 07 Jun 2000 05:02:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh2/m-p/2424888#M767275</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2000-06-07T05:02:07Z</dc:date>
    </item>
  </channel>
</rss>

