<?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 in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/3501226#M216697</link>
    <description>Doh.&lt;BR /&gt;&lt;BR /&gt;That file I mentioned&lt;BR /&gt;&lt;BR /&gt;/opt/ssh/etc/sshd_config&lt;BR /&gt;&lt;BR /&gt;#Port 22&lt;BR /&gt;Protocol 2&lt;BR /&gt;#ListenAddress 0.0.0.0&lt;BR /&gt;#ListenAddress ::&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I pretty much bet if you change the ListenAddress to the IP in question and then restart the sshd daemon, you will get the job done a lot faster than by installing and configuring IPFilter.&lt;BR /&gt;&lt;BR /&gt;Sorry.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
    <pubDate>Wed, 09 Mar 2005 14:39:09 GMT</pubDate>
    <dc:creator>Steven E. Protter</dc:creator>
    <dc:date>2005-03-09T14:39:09Z</dc:date>
    <item>
      <title>SSH</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/3501223#M216694</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;When system has multiple IP addresses configured ssh daemon listens on all ip's. How to configure ssh to listen on particular IP address? &lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Wed, 09 Mar 2005 14:08:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/3501223#M216694</guid>
      <dc:creator>Krish_4</dc:creator>
      <dc:date>2005-03-09T14:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: SSH</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/3501224#M216695</link>
      <description>By default ssh will listen on all IP addresses.&lt;BR /&gt;&lt;BR /&gt;Openssh has a file called sshd_config&lt;BR /&gt;&lt;BR /&gt;This file may allow you to make those kind of configurations.&lt;BR /&gt;&lt;BR /&gt;I might approach it differently and use ipfilter or maybe even /var/adm/inetd.sec to block protocols aimed at certain ip addresses.&lt;BR /&gt;&lt;BR /&gt;I know Ipfilter could handle the job easily.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 09 Mar 2005 14:19:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/3501224#M216695</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-03-09T14:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: SSH</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/3501225#M216696</link>
      <description>One way is to use IPFilter. If S_IP is the server IP&lt;BR /&gt;you want to bind to and 22 is the port # where sshd&lt;BR /&gt;is listening on, use the following IPFilter rules:&lt;BR /&gt;&lt;BR /&gt;# /sbin/ipf -f-&lt;BR /&gt;pass in quick proto tcp from any to S_IP port = 22 &lt;BR /&gt;pass out quick proto tcp from S_IP port = 22 to any&lt;BR /&gt;block in proto tcp from any to any port = 22&lt;BR /&gt;block out proto tcp from any port = 22 to any&lt;BR /&gt;&lt;BR /&gt;- Biswajit&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Mar 2005 14:31:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/3501225#M216696</guid>
      <dc:creator>Biswajit Tripathy</dc:creator>
      <dc:date>2005-03-09T14:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: SSH</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/3501226#M216697</link>
      <description>Doh.&lt;BR /&gt;&lt;BR /&gt;That file I mentioned&lt;BR /&gt;&lt;BR /&gt;/opt/ssh/etc/sshd_config&lt;BR /&gt;&lt;BR /&gt;#Port 22&lt;BR /&gt;Protocol 2&lt;BR /&gt;#ListenAddress 0.0.0.0&lt;BR /&gt;#ListenAddress ::&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I pretty much bet if you change the ListenAddress to the IP in question and then restart the sshd daemon, you will get the job done a lot faster than by installing and configuring IPFilter.&lt;BR /&gt;&lt;BR /&gt;Sorry.&lt;BR /&gt;&lt;BR /&gt;SEP</description>
      <pubDate>Wed, 09 Mar 2005 14:39:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/3501226#M216697</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-03-09T14:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: SSH</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/3501227#M216698</link>
      <description>You could simplify the rule I posted in my last post&lt;BR /&gt;to the following:&lt;BR /&gt;&lt;BR /&gt;# /sbin/ipf -Fa -f-&lt;BR /&gt;block in quick proto tcp from any to !S_IP port = 22&lt;BR /&gt;block out quick proto tcp from !S_IP port = 22 to any&lt;BR /&gt;&lt;BR /&gt;(That's a '!' char immediately before the IP address).&lt;BR /&gt;&lt;BR /&gt;- Biswajit&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Mar 2005 14:41:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/3501227#M216698</guid>
      <dc:creator>Biswajit Tripathy</dc:creator>
      <dc:date>2005-03-09T14:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: SSH</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/3501228#M216699</link>
      <description>Steven E Protter wrote:&lt;BR /&gt;&amp;gt; I pretty much bet if you change the ListenAddress &lt;BR /&gt;&amp;gt; to the IP in question and then restart the sshd &lt;BR /&gt;&amp;gt; daemon, you will get the job done a lot faster than &lt;BR /&gt;&amp;gt; by installing and configuring IPFilter.&lt;BR /&gt;&lt;BR /&gt;I agree with you on this as far as HP-UX 11.11 (or&lt;BR /&gt;11i, v1) is concerned. On HP-UX 11i v2 (i.e 11.23)&lt;BR /&gt;IPFilter is a default installed product, so it should &lt;BR /&gt;already be there on your system.&lt;BR /&gt;&lt;BR /&gt;- Biswajit&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Mar 2005 14:45:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ssh/m-p/3501228#M216699</guid>
      <dc:creator>Biswajit Tripathy</dc:creator>
      <dc:date>2005-03-09T14:45:08Z</dc:date>
    </item>
  </channel>
</rss>

