<?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: Restrict FTP in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-ftp/m-p/3981998#M294471</link>
    <description>you could install proftpd. It can be downloaded from software.hp.com. It has a lot more options  for this sort of thing. You might look into the  AllowGroup directive:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.proftpd.org/docs/directives/configuration_full.html#ALLOWGROUP" target="_blank"&gt;http://www.proftpd.org/docs/directives/configuration_full.html#ALLOWGROUP&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You could setup an ftp group and allow access to that group. Just a suggestion.</description>
    <pubDate>Mon, 16 Apr 2007 07:39:03 GMT</pubDate>
    <dc:creator>Court Campbell</dc:creator>
    <dc:date>2007-04-16T07:39:03Z</dc:date>
    <item>
      <title>Restrict FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-ftp/m-p/3981994#M294467</link>
      <description>We want to restrict FTP Users.&lt;BR /&gt;OS - 11.23&lt;BR /&gt;I am aware that user logins needs to be added to the /etc/ftpd/ftpusers but as we have nearly 2000 users it becomes difficult to manage this file because only few users need ftp access.&lt;BR /&gt;&lt;BR /&gt;Is there a way you can reverse it &lt;BR /&gt;i.e a file like ftpusers where you just add the user logins you want to give access to FTP.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Apr 2007 05:51:32 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-ftp/m-p/3981994#M294467</guid>
      <dc:creator>Aggy</dc:creator>
      <dc:date>2007-04-16T05:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: Restrict FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-ftp/m-p/3981995#M294468</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;what I would do is create a file with the user names that I want to have ftp access ie /etc/ftp.allow.&lt;BR /&gt;&lt;BR /&gt;then run a small script that creates a list of users from the systems user list and output the data into /etc/ftpusers thus creating the list of users that do not have access:&lt;BR /&gt;&lt;BR /&gt;cat passwd | cut -d':' -f1 | egrep -v -f /etc/ftp.allow | sort &amp;gt; &lt;BR /&gt;/etc/ftpusers &lt;BR /&gt;&lt;BR /&gt;run this everytime a new user is created</description>
      <pubDate>Mon, 16 Apr 2007 06:42:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-ftp/m-p/3981995#M294468</guid>
      <dc:creator>lawrenzo</dc:creator>
      <dc:date>2007-04-16T06:42:48Z</dc:date>
    </item>
    <item>
      <title>Re: Restrict FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-ftp/m-p/3981996#M294469</link>
      <description>If you want to exclude /etc/ftpd/ftpusers - then restrict and give access using /var/adm/inetd.sec as below:&lt;BR /&gt;&lt;BR /&gt;ftp allow 172..... &lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;---------&lt;BR /&gt;Try  wu_ftpd&lt;BR /&gt;---------&lt;BR /&gt;&lt;BR /&gt;or&lt;BR /&gt;&lt;BR /&gt;awk -F: '{print $1}' /etc/passwd &amp;gt; outputfle&lt;BR /&gt;vi outputfile and redirect to /etc/ftpd/ftpusers&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You are done.&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Apr 2007 06:57:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-ftp/m-p/3981996#M294469</guid>
      <dc:creator>Rasheed Tamton</dc:creator>
      <dc:date>2007-04-16T06:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: Restrict FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-ftp/m-p/3981997#M294470</link>
      <description>Another possible 'workaround':&lt;BR /&gt;&lt;BR /&gt;When a user tries to open an ftp session, his/her shell (defined in passwd) is checked against /etc/shells (which holds a list of 'legal' shells). Users whose shell is not in this list will not be able to start an ftp session.&lt;BR /&gt;&lt;BR /&gt;Some years ago I learned about this 'the hard way': I couldn't FTP to one of our machines while all my colleagues could. Turned out my dear ksh was not in the shells file.&lt;BR /&gt;&lt;BR /&gt;If your situation allows it, you could perhaps use this as a workaround.. although I'm unsure about how 'clean' a solution I would call this myself ;-)&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Wout</description>
      <pubDate>Mon, 16 Apr 2007 07:23:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-ftp/m-p/3981997#M294470</guid>
      <dc:creator>Wouter Jagers</dc:creator>
      <dc:date>2007-04-16T07:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: Restrict FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-ftp/m-p/3981998#M294471</link>
      <description>you could install proftpd. It can be downloaded from software.hp.com. It has a lot more options  for this sort of thing. You might look into the  AllowGroup directive:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.proftpd.org/docs/directives/configuration_full.html#ALLOWGROUP" target="_blank"&gt;http://www.proftpd.org/docs/directives/configuration_full.html#ALLOWGROUP&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You could setup an ftp group and allow access to that group. Just a suggestion.</description>
      <pubDate>Mon, 16 Apr 2007 07:39:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-ftp/m-p/3981998#M294471</guid>
      <dc:creator>Court Campbell</dc:creator>
      <dc:date>2007-04-16T07:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: Restrict FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-ftp/m-p/3981999#M294472</link>
      <description>I am note sure but I think I can use /etc/ftpd/ftphosts&lt;BR /&gt;Just add the users I need to give ftp access and deny all in last line&lt;BR /&gt;example as below&lt;BR /&gt;allow test1 * (or Hostname)&lt;BR /&gt;allow test2 *&lt;BR /&gt;allow ftp1 *&lt;BR /&gt;deny * *</description>
      <pubDate>Mon, 16 Apr 2007 07:51:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-ftp/m-p/3981999#M294472</guid>
      <dc:creator>Aggy</dc:creator>
      <dc:date>2007-04-16T07:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: Restrict FTP</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/restrict-ftp/m-p/3982000#M294473</link>
      <description>Well spotted ! &lt;BR /&gt;&lt;BR /&gt;Just checked the man pages and it looks you're right.&lt;BR /&gt;&lt;BR /&gt;Points to yourself ;-)&lt;BR /&gt;&lt;BR /&gt;Cheers</description>
      <pubDate>Mon, 16 Apr 2007 08:59:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/restrict-ftp/m-p/3982000#M294473</guid>
      <dc:creator>Wouter Jagers</dc:creator>
      <dc:date>2007-04-16T08:59:10Z</dc:date>
    </item>
  </channel>
</rss>

