<?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 chroot/ftp browser issue in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/chroot-ftp-browser-issue/m-p/2610236#M35940</link>
    <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I have implemented restricted access for users to get into our ftp server. The server is on hpux 11.0 and is a trusted system.&lt;BR /&gt;&lt;BR /&gt;Have implemented chroot, where the user lands in his home directory (but the directory looks like root directory to user). This works just fine on commandline ftp, but when I use any browser (both IE and Netscape) all I see is a blank page on the browser. Also the syslog says that the ftp session is closed.&lt;BR /&gt;&lt;BR /&gt;Any thoughts, ideas why this is not working&lt;BR /&gt;&lt;BR /&gt;Regards.&lt;BR /&gt;&lt;BR /&gt;SK&lt;BR /&gt;</description>
    <pubDate>Thu, 08 Nov 2001 19:34:36 GMT</pubDate>
    <dc:creator>Kamlesh Shete</dc:creator>
    <dc:date>2001-11-08T19:34:36Z</dc:date>
    <item>
      <title>chroot/ftp browser issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/chroot-ftp-browser-issue/m-p/2610236#M35940</link>
      <description>Hi all,&lt;BR /&gt;&lt;BR /&gt;I have implemented restricted access for users to get into our ftp server. The server is on hpux 11.0 and is a trusted system.&lt;BR /&gt;&lt;BR /&gt;Have implemented chroot, where the user lands in his home directory (but the directory looks like root directory to user). This works just fine on commandline ftp, but when I use any browser (both IE and Netscape) all I see is a blank page on the browser. Also the syslog says that the ftp session is closed.&lt;BR /&gt;&lt;BR /&gt;Any thoughts, ideas why this is not working&lt;BR /&gt;&lt;BR /&gt;Regards.&lt;BR /&gt;&lt;BR /&gt;SK&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Nov 2001 19:34:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/chroot-ftp-browser-issue/m-p/2610236#M35940</guid>
      <dc:creator>Kamlesh Shete</dc:creator>
      <dc:date>2001-11-08T19:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: chroot/ftp browser issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/chroot-ftp-browser-issue/m-p/2610237#M35941</link>
      <description>Typically ftp from a browser is anonymous unless otherwise specified.&lt;BR /&gt;&lt;BR /&gt;Are you using this syntax in your browser FTP?&lt;BR /&gt;&lt;BR /&gt;ftp://userid:passwd@hostname.domain.com</description>
      <pubDate>Thu, 08 Nov 2001 19:45:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/chroot-ftp-browser-issue/m-p/2610237#M35941</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2001-11-08T19:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: chroot/ftp browser issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/chroot-ftp-browser-issue/m-p/2610238#M35942</link>
      <description>Hust got it working.&lt;BR /&gt;&lt;BR /&gt;The reason was that in the group file for the ftpgroup I had no space after the comma between users. ( weird, but when I gave a space bet. users it just started working).&lt;BR /&gt;&lt;BR /&gt;I also noticed that if the user  has  the ftpgroup as the primary group in the passwd file it doesnt' work. So if I change it to any other group it does&lt;BR /&gt;&lt;BR /&gt;Thanks for the reply Patrick.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Nov 2001 19:51:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/chroot-ftp-browser-issue/m-p/2610238#M35942</guid>
      <dc:creator>Kamlesh Shete</dc:creator>
      <dc:date>2001-11-08T19:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: chroot/ftp browser issue</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/chroot-ftp-browser-issue/m-p/2610239#M35943</link>
      <description>As you're making the home directory the FTPROOT, there is no way to be able to do an ls as there is no common place where binaries live to do this.&lt;BR /&gt;&lt;BR /&gt;Remember /home/scott is now the root directory. &lt;BR /&gt;&lt;BR /&gt;you need to have /home/scott/usr/bin/ls&lt;BR /&gt;&lt;BR /&gt;the ls binary - for this to work.&lt;BR /&gt;&lt;BR /&gt;I suspect that if you actually log in via the command line, and type "dir" you wont see anything either.&lt;BR /&gt;&lt;BR /&gt;you must use the non linked version of ls which is in /sbin/&lt;BR /&gt;&lt;BR /&gt;In short:&lt;BR /&gt;- create /usr/bin/ in the virtual root dir.&lt;BR /&gt;- copy /sbin/ls into that dir.&lt;BR /&gt;- make the permissions such that "everyone" can at least read and execute the ls binary.&lt;BR /&gt;&lt;BR /&gt;it should work.&lt;BR /&gt;&lt;BR /&gt;I ran into this EXACT problem when setting up virtual root DIRS for our clients (only a handful) on one of our systems.&lt;BR /&gt;&lt;BR /&gt;If you go to say ftp.hp.com you will see both bin and usr directories. I suspect that HP are also using a virtual root on some server, but you need the ls binary to be able to see anything.&lt;BR /&gt;&lt;BR /&gt;I know this is a bit bodgy and probably doesn't make sense as I haven't explained myself well, but this is why you don't see anything. &lt;BR /&gt;&lt;BR /&gt;Try it with just one user and log in, see what happens.&lt;BR /&gt;&lt;BR /&gt;Scott.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Nov 2001 01:32:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/chroot-ftp-browser-issue/m-p/2610239#M35943</guid>
      <dc:creator>Scott Van Kalken</dc:creator>
      <dc:date>2001-11-09T01:32:05Z</dc:date>
    </item>
  </channel>
</rss>

