<?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: ssh question in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-question/m-p/2701381#M57979</link>
    <description>Hi,&lt;BR /&gt;  Although some people will be able to answer your question specifically, you might try &lt;A href="http://www.onsight.com/faq/ssh/ssh-faq.html" target="_blank"&gt;http://www.onsight.com/faq/ssh/ssh-faq.html&lt;/A&gt; , &lt;A href="http://www.openssh.com/" target="_blank"&gt;http://www.openssh.com/&lt;/A&gt; for the FAQ and &lt;A href="http://www.snailbook.com/" target="_blank"&gt;http://www.snailbook.com/&lt;/A&gt; for "SSH: The Secure Shell The Definitive Guide", &lt;A href="http://wks.uts.ohio-state.edu/sysadm_course/html/sysadm-558.html" target="_blank"&gt;http://wks.uts.ohio-state.edu/sysadm_course/html/sysadm-558.html&lt;/A&gt; ,&lt;BR /&gt;&lt;A href="http://wks.uts.ohio-state.edu/sysadm_course/html/sysadm-1.html#HEADING1-37" target="_blank"&gt;http://wks.uts.ohio-state.edu/sysadm_course/html/sysadm-1.html#HEADING1-37&lt;/A&gt; .</description>
    <pubDate>Thu, 11 Apr 2002 12:31:11 GMT</pubDate>
    <dc:creator>Dylan Fahey</dc:creator>
    <dc:date>2002-04-11T12:31:11Z</dc:date>
    <item>
      <title>ssh question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-question/m-p/2701376#M57974</link>
      <description>Hello Gurus,&lt;BR /&gt;&lt;BR /&gt;I installed ssh 3.1p1 on ver 11.0 but how do I replace telnet with ssh? &lt;BR /&gt;&lt;BR /&gt;What do I need to do ? &lt;BR /&gt;&lt;BR /&gt;How do I make my users use ssh and sft instead of telnet and ftp?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance, and points will be assigned to every answer.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 11 Apr 2002 11:52:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-question/m-p/2701376#M57974</guid>
      <dc:creator>John McDen</dc:creator>
      <dc:date>2002-04-11T11:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: ssh question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-question/m-p/2701377#M57975</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;A few things to note for compiling SSH on HP-UX 11.00. To ensure that the make compilation works, you have to add a parameter to ./configure as follows: &lt;BR /&gt;&lt;BR /&gt;# ./configure --host=hppa2.0-hp-hpux11.00 &lt;BR /&gt;&lt;BR /&gt;For running sftp on Unix, also make sure that /usr/local/bin is in your PATH variable so that it knows where to search for the other required SSH binaries. &lt;BR /&gt;&lt;BR /&gt;It doesn't answer all your questions but it can help.&lt;BR /&gt;&lt;BR /&gt;grt, Emiel</description>
      <pubDate>Thu, 11 Apr 2002 12:08:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-question/m-p/2701377#M57975</guid>
      <dc:creator>Emiel van Grinsven</dc:creator>
      <dc:date>2002-04-11T12:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: ssh question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-question/m-p/2701378#M57976</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Find some links here :&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x8464c5ea0230d411ade80090279cd0f9,00.html" target="_blank"&gt;http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x8464c5ea0230d411ade80090279cd0f9,00.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Clemens</description>
      <pubDate>Thu, 11 Apr 2002 12:09:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-question/m-p/2701378#M57976</guid>
      <dc:creator>Clemens van Everdingen</dc:creator>
      <dc:date>2002-04-11T12:09:45Z</dc:date>
    </item>
    <item>
      <title>Re: ssh question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-question/m-p/2701379#M57977</link>
      <description>If you have ssh on your HP-UX box, you must make sure you have a ssh client on the workstations as well. &lt;BR /&gt;&lt;BR /&gt;You can disable access bu telnet and ftp by editing /etc/inetd.conf and put the entries for telnet and ftp in comment:&lt;BR /&gt;&lt;BR /&gt;ftp          stream tcp nowait root /usr/lbin/ftpd      ftpd -l&lt;BR /&gt;telnet       stream tcp nowait root /usr/lbin/telnetd  telnetd &lt;BR /&gt;&lt;BR /&gt;Now restart the inetdaemon:&lt;BR /&gt;&lt;BR /&gt;/sbin/init.d/inetd stop&lt;BR /&gt;/sbin/init.d/inetd start&lt;BR /&gt;&lt;BR /&gt;The users are now forced to use the ssh connection instead of telnet.&lt;BR /&gt;&lt;BR /&gt;Kurt</description>
      <pubDate>Thu, 11 Apr 2002 12:13:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-question/m-p/2701379#M57977</guid>
      <dc:creator>Kurt Beyers.</dc:creator>
      <dc:date>2002-04-11T12:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: ssh question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-question/m-p/2701380#M57978</link>
      <description>Hi John,&lt;BR /&gt;&lt;BR /&gt;First verify ssh, sftp, and scp work for you then your users.  Note that the client machines will have to have an ssh package.&lt;BR /&gt;&lt;BR /&gt;Once your users have ssh working, disable telnet and ftp in /etc/inetd.conf and tell inetd to re-read it's configuration with "inetd -c".&lt;BR /&gt;&lt;BR /&gt;Also, if you are "replacing" telnet for security reasons, you should also replace rlogin.  It too is disabled in /etc/inetd.conf.&lt;BR /&gt;&lt;BR /&gt;Darrell</description>
      <pubDate>Thu, 11 Apr 2002 12:31:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-question/m-p/2701380#M57978</guid>
      <dc:creator>Darrell Allen</dc:creator>
      <dc:date>2002-04-11T12:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: ssh question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-question/m-p/2701381#M57979</link>
      <description>Hi,&lt;BR /&gt;  Although some people will be able to answer your question specifically, you might try &lt;A href="http://www.onsight.com/faq/ssh/ssh-faq.html" target="_blank"&gt;http://www.onsight.com/faq/ssh/ssh-faq.html&lt;/A&gt; , &lt;A href="http://www.openssh.com/" target="_blank"&gt;http://www.openssh.com/&lt;/A&gt; for the FAQ and &lt;A href="http://www.snailbook.com/" target="_blank"&gt;http://www.snailbook.com/&lt;/A&gt; for "SSH: The Secure Shell The Definitive Guide", &lt;A href="http://wks.uts.ohio-state.edu/sysadm_course/html/sysadm-558.html" target="_blank"&gt;http://wks.uts.ohio-state.edu/sysadm_course/html/sysadm-558.html&lt;/A&gt; ,&lt;BR /&gt;&lt;A href="http://wks.uts.ohio-state.edu/sysadm_course/html/sysadm-1.html#HEADING1-37" target="_blank"&gt;http://wks.uts.ohio-state.edu/sysadm_course/html/sysadm-1.html#HEADING1-37&lt;/A&gt; .</description>
      <pubDate>Thu, 11 Apr 2002 12:31:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-question/m-p/2701381#M57979</guid>
      <dc:creator>Dylan Fahey</dc:creator>
      <dc:date>2002-04-11T12:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: ssh question</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh-question/m-p/2701382#M57980</link>
      <description>Hi John,&lt;BR /&gt;&lt;BR /&gt;1. Broadcast to your users that telnet/rlogin will be disabled by keeping a message in motd or /etc/issue. Give them sufficient time.&lt;BR /&gt;&lt;BR /&gt;2. Do not disable telnet at once. Instead use /var/adm/inetd.sec file to restrict telnet/login/shell and rexec to only few systems preferably to your system from where you should be able to login. This will not allow users to telnet. You can use "telnet deny all" followed by few clients.&lt;BR /&gt;&lt;BR /&gt;3. Let users start using ssh and be comfortable with key management etc., If you get into any problems with ssh, you can always telnet to the box from your system.&lt;BR /&gt;&lt;BR /&gt;4. Keep startup/shutdown scripts so that sshd will comeup automatically when you reboot the system.&lt;BR /&gt;&lt;BR /&gt;5. Disable the abovesaid services from inetd.conf once you feel comfortable with it.&lt;BR /&gt;&lt;BR /&gt;-Sri</description>
      <pubDate>Thu, 11 Apr 2002 12:49:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh-question/m-p/2701382#M57980</guid>
      <dc:creator>Sridhar Bhaskarla</dc:creator>
      <dc:date>2002-04-11T12:49:15Z</dc:date>
    </item>
  </channel>
</rss>

