<?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 Re: Secure Shell and Security in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/secure-shell-and-security/m-p/2709505#M60144</link>
    <description>Craig,&lt;BR /&gt;&lt;BR /&gt;I have the 3.1 version and I got it from an HP depot. &lt;BR /&gt;&lt;BR /&gt;root# swlist | grep -i ssh&lt;BR /&gt;  openssh                               3.1p1          openssh&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/" target="_blank"&gt;http://hpux.cs.utah.edu/&lt;/A&gt; is where I go to.&lt;BR /&gt;&lt;BR /&gt;- Justin&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 24 Apr 2002 12:30:06 GMT</pubDate>
    <dc:creator>Justin Willoughby</dc:creator>
    <dc:date>2002-04-24T12:30:06Z</dc:date>
    <item>
      <title>Secure Shell and Security</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/secure-shell-and-security/m-p/2709501#M60140</link>
      <description>1. How can I enable SSH on HP-UX (10.20) &lt;BR /&gt;2. How can I find out all possible valid login names on my system (so I can limit who can/cannot log in)?  &lt;BR /&gt;</description>
      <pubDate>Tue, 23 Apr 2002 18:23:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/secure-shell-and-security/m-p/2709501#M60140</guid>
      <dc:creator>Mike Lappen</dc:creator>
      <dc:date>2002-04-23T18:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Secure Shell and Security</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/secure-shell-and-security/m-p/2709502#M60141</link>
      <description>You have to install secure shell.  The commerical version can be found at &lt;A href="http://www.ssh.org" target="_blank"&gt;www.ssh.org&lt;/A&gt;  The non-commerical version can be found at one of the HP depots...&lt;BR /&gt;&lt;BR /&gt;If you do a 'more /etc/passwd' you will get a list of all userid's on the system.&lt;BR /&gt;&lt;BR /&gt;Hope it helps.&lt;BR /&gt;&lt;BR /&gt;John</description>
      <pubDate>Tue, 23 Apr 2002 18:25:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/secure-shell-and-security/m-p/2709502#M60141</guid>
      <dc:creator>John Payne_2</dc:creator>
      <dc:date>2002-04-23T18:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Secure Shell and Security</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/secure-shell-and-security/m-p/2709503#M60142</link>
      <description>One way to restrict logins in SSH is to require public key authentication -- thus only those who have an "authorized" public key on the HP-UX box would be able to log in via SSH. &lt;BR /&gt;&lt;BR /&gt;After you've installed ssh/openssh2, (the latter can be found here &lt;A href="http://gatekeep.cs.utah.edu/)" target="_blank"&gt;http://gatekeep.cs.utah.edu/)&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;read the man for more details. &lt;BR /&gt;&lt;BR /&gt;Best regards.&lt;BR /&gt;&lt;BR /&gt;Mark</description>
      <pubDate>Tue, 23 Apr 2002 18:31:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/secure-shell-and-security/m-p/2709503#M60142</guid>
      <dc:creator>Mark Fenton</dc:creator>
      <dc:date>2002-04-23T18:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: Secure Shell and Security</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/secure-shell-and-security/m-p/2709504#M60143</link>
      <description>Michael,&lt;BR /&gt;Note that the current version on download from the hp porting site is a vulnerable version. You have to use 3.1 or higher to be free of vulnerabitlies.&lt;BR /&gt;&lt;BR /&gt;This means you will need to compile, openssl, zlib, and openssh.&lt;BR /&gt;&lt;BR /&gt;I've included my notes as a reference.&lt;BR /&gt;Install Perl5 ( only required for initial compile )&lt;BR /&gt;   gzip -d /tmp/perl-5.6.1-sd-11.00.depot.gz&lt;BR /&gt;   swinstall -s `hostname`:/tmp/perl-5.6.1-sd-11.00.depot \*&lt;BR /&gt;   &lt;BR /&gt; - Compile openssl&lt;BR /&gt;   cd /tmp&lt;BR /&gt;   gzip -d &amp;lt; openssl-0.9.6.tar.gz | tar xvf -&lt;BR /&gt;   cd openssl-0.9.6&lt;BR /&gt;   export PATH=/opt/perl5/bin:$PATH&lt;BR /&gt;   ./config --openssldir=/usr/local/openssl shared&lt;BR /&gt;   make&lt;BR /&gt;   make test&lt;BR /&gt;   make install&lt;BR /&gt;   cd ..&lt;BR /&gt;   sh shlib/hpux11-cc.sh (had to create/modify this script with openssl)&lt;BR /&gt;   sh shlib/hpux10-cc.sh (had to create/modify this script with ssl)&lt;BR /&gt;   &lt;BR /&gt; - Compile zlib&lt;BR /&gt;   cd /tmp&lt;BR /&gt;   gzip -d &amp;lt; zlib-1.1.4.tar.gz | tar xvf -&lt;BR /&gt;   cd zlib-1.1.4&lt;BR /&gt;   ./configure -s --prefix=/usr&lt;BR /&gt;   make test&lt;BR /&gt;   make install&lt;BR /&gt;   &lt;BR /&gt; - Compile openssh&lt;BR /&gt;   cd /tmp&lt;BR /&gt;   gzip -d &amp;lt; openssh-3.1p1.tar.gz | tar xvf -&lt;BR /&gt;   cd openssh-3.1p1&lt;BR /&gt;   (11 version)&lt;BR /&gt;   ./configure --prefix=/opt/openssh2 --sysconfdir=/opt/openssh2/etc --with-pam &lt;BR /&gt;    --with-ssl-dir=/usr/local/openssl/lib --with-default-path=/bin:/usr/bin:/opt/openssh2/bin&lt;BR /&gt;    (10 version)  &lt;BR /&gt;   ./configure --prefix=/opt/openssh2 --sysconfdir=/opt/openssh2/etc&lt;BR /&gt;    --with-ssl-dir=/usr/local/ssl/lib --with-default-path=/bin:/usr/bin:/opt/openssh2/bin&lt;BR /&gt;    make &lt;BR /&gt;    make install&lt;BR /&gt;    &lt;BR /&gt;  - Configure ssh and sshd (Already done in the tar, just for information )&lt;BR /&gt;    vi /etc/openssh2/etc/sshd_config (verify these settings)&lt;BR /&gt;    Port 22&lt;BR /&gt;    HostKey /opt/openssh2/etc/ssh_host_key /etc for 10.20&lt;BR /&gt;    KeyRegenerationInterval 3600&lt;BR /&gt;    SyslogFacility AUTH&lt;BR /&gt;    LogLevel INFO&lt;BR /&gt;    PermitRootLogin yes&lt;BR /&gt;    RSAAuthentication yes&lt;BR /&gt;    PubkeyAuthentication yes&lt;BR /&gt;    AuthorizedKeysFile      .ssh/authorized_keys&lt;BR /&gt;    RhostsAuthentication no&lt;BR /&gt;    IgnoreRhosts yes&lt;BR /&gt;    IgnoreUserKnownHosts no&lt;BR /&gt;    PasswordAuthentication yes&lt;BR /&gt;    PermitEmptyPasswords no&lt;BR /&gt;    X11Forwarding yes&lt;BR /&gt;    X11DisplayOffset 10&lt;BR /&gt;    X11UseLocalhost yes&lt;BR /&gt;    PrintMotd yes&lt;BR /&gt;    PrintLastLog yes&lt;BR /&gt;    Subsystem      sftp    /opt/openssh2/libexec/sftp-server&lt;BR /&gt;&lt;BR /&gt;    vi /etc/openssh2/etc/ssh_config (verify these settings)&lt;BR /&gt;    ForwardAgent yes&lt;BR /&gt;    ForwardX11 yes&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;C</description>
      <pubDate>Tue, 23 Apr 2002 18:47:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/secure-shell-and-security/m-p/2709504#M60143</guid>
      <dc:creator>Craig Rants</dc:creator>
      <dc:date>2002-04-23T18:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: Secure Shell and Security</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/secure-shell-and-security/m-p/2709505#M60144</link>
      <description>Craig,&lt;BR /&gt;&lt;BR /&gt;I have the 3.1 version and I got it from an HP depot. &lt;BR /&gt;&lt;BR /&gt;root# swlist | grep -i ssh&lt;BR /&gt;  openssh                               3.1p1          openssh&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.cs.utah.edu/" target="_blank"&gt;http://hpux.cs.utah.edu/&lt;/A&gt; is where I go to.&lt;BR /&gt;&lt;BR /&gt;- Justin&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 24 Apr 2002 12:30:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/secure-shell-and-security/m-p/2709505#M60144</guid>
      <dc:creator>Justin Willoughby</dc:creator>
      <dc:date>2002-04-24T12:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: Secure Shell and Security</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/secure-shell-and-security/m-p/2709506#M60145</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;There is also the SSH Communications distribution found at:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="ftp://ftp.ssh.fi/pub/ssh/ssh-3.1.0.tar.gz" target="_blank"&gt;ftp://ftp.ssh.fi/pub/ssh/ssh-3.1.0.tar.gz&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Compilation steps:&lt;BR /&gt;# gtar zxvf ssh-3.1.0.tar.gz&lt;BR /&gt;# cd ssh-3.1.0&lt;BR /&gt;# ./configure&lt;BR /&gt;# make&lt;BR /&gt;# make install&lt;BR /&gt;&lt;BR /&gt;Remember to update your startup scripts in /sbin/init.d and create the link in /sbin/rc2.d so that your SSHD daemon will automatically run during system reboot or startup.&lt;BR /&gt;&lt;BR /&gt;There are the AllowUsers and DenyUsers directives in /etc/ssh2/sshd2_config for you to restrict who can and cannot logon via secure shell. There is also the AllowHosts and DenyHosts directives to restrict access by IP addresses.&lt;BR /&gt;&lt;BR /&gt;Hope this helps. Regards.&lt;BR /&gt;&lt;BR /&gt;Steven Sim Kok Leong</description>
      <pubDate>Wed, 24 Apr 2002 12:42:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/secure-shell-and-security/m-p/2709506#M60145</guid>
      <dc:creator>Steven Sim Kok Leong</dc:creator>
      <dc:date>2002-04-24T12:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Secure Shell and Security</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/secure-shell-and-security/m-p/2709507#M60146</link>
      <description>Justin,&lt;BR /&gt;You are correct, they do have depot now (as of March 22). I had done my reinstall due to the vulnerability a week prior and it had not been released yet. I have now been enlightened.&lt;BR /&gt;&lt;BR /&gt;C</description>
      <pubDate>Wed, 24 Apr 2002 13:13:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/secure-shell-and-security/m-p/2709507#M60146</guid>
      <dc:creator>Craig Rants</dc:creator>
      <dc:date>2002-04-24T13:13:46Z</dc:date>
    </item>
  </channel>
</rss>

