<?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: Ftp file from Windows 2003 to HP-UX server - permission in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130606#M804922</link>
    <description>Assuming you are using the default ftpd server that comes with HP-UX, you can try creating/modifying the /etc/ftpd/ftpaccess file to use the upload directive.&lt;BR /&gt;&lt;BR /&gt;There are a lot of options you have when using this file, so take a look at the man page and/or the HOW-TO's listed here.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.wu-ftpd.org/HOWTO/" target="_blank"&gt;http://www.wu-ftpd.org/HOWTO/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 27 Nov 2003 20:21:40 GMT</pubDate>
    <dc:creator>James A. Donovan</dc:creator>
    <dc:date>2003-11-27T20:21:40Z</dc:date>
    <item>
      <title>Ftp file from Windows 2003 to HP-UX server - permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130602#M804918</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;Recently an application shifted from one of our HP-UX servers to a Windows 2003 server.  Since the move, the files that are ftp'd across now have the incorrect permissions.  The directory has it's permissions as 777, the umask value is 027.  The file that is ftp'd across ends up with permissions set as 600.&lt;BR /&gt;&lt;BR /&gt;I would like to file to have the permissions of at least 660 or 666.  The shell setup for the user is /usr/bin/false, and is in the ftponly group.  We are running HP-UX 11.00.&lt;BR /&gt;&lt;BR /&gt;The chmod command doesn't work within ftp.&lt;BR /&gt;&lt;BR /&gt;How do I get this to work?  Is there a way of enabling the chmod command without opening the system up too widely security-wise?&lt;BR /&gt;&lt;BR /&gt;Its a hassle having to modify the permissions by hand each time this file is transferred over.&lt;BR /&gt;&lt;BR /&gt;Any suggestions will be welcomed. &lt;BR /&gt;&lt;BR /&gt;Oh yes,  I do award points!&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Jo</description>
      <pubDate>Thu, 27 Nov 2003 16:51:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130602#M804918</guid>
      <dc:creator>Joanne Keegan</dc:creator>
      <dc:date>2003-11-27T16:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Ftp file from Windows 2003 to HP-UX server - permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130603#M804919</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can install proftp or wu-ftp on hp-ux which gives you chmod option thru configuration files,&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk/hppd/hpux/Networking/FTP/proftpd-1.2.8/" target="_blank"&gt;http://hpux.connect.org.uk/hppd/hpux/Networking/FTP/proftpd-1.2.8/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.proftpd.org/docs/configs/basic.conf" target="_blank"&gt;http://www.proftpd.org/docs/configs/basic.conf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;-Karthik S S</description>
      <pubDate>Thu, 27 Nov 2003 17:09:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130603#M804919</guid>
      <dc:creator>Karthik S S</dc:creator>
      <dc:date>2003-11-27T17:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: Ftp file from Windows 2003 to HP-UX server - permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130604#M804920</link>
      <description>Use the umask command in ftp:&lt;BR /&gt;&lt;BR /&gt;# ll somefile&lt;BR /&gt;-rw-r--r--   1 root       sys         590967 Nov 27 11:35 somefile&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ftp&amp;gt; cd /tmp&lt;BR /&gt;250 CWD command successful.&lt;BR /&gt;ftp&amp;gt; umask 000&lt;BR /&gt;200 UMASK set to 000 (was 027)&lt;BR /&gt;ftp&amp;gt; put somefile&lt;BR /&gt;200 PORT command successful.&lt;BR /&gt;150 Opening BINARY mode data connection for somefile&lt;BR /&gt;226 Transfer complete.&lt;BR /&gt;590967 bytes sent in 0.10 seconds (5639.43 Kbytes/s)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;On remote server:&lt;BR /&gt;&lt;BR /&gt;cd /tmp&lt;BR /&gt;ll somefile&lt;BR /&gt;-rw-rw-rw-   1 root       sys         590967 Nov 27 15:24 somefile&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Thu, 27 Nov 2003 17:27:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130604#M804920</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2003-11-27T17:27:37Z</dc:date>
    </item>
    <item>
      <title>Re: Ftp file from Windows 2003 to HP-UX server - permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130605#M804921</link>
      <description>Hi Geoff,&lt;BR /&gt;&lt;BR /&gt;The unmask command doesn't work with ftp.&lt;BR /&gt;&lt;BR /&gt;Is there a configuration file I need to change?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Jo</description>
      <pubDate>Thu, 27 Nov 2003 19:01:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130605#M804921</guid>
      <dc:creator>Joanne Keegan</dc:creator>
      <dc:date>2003-11-27T19:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Ftp file from Windows 2003 to HP-UX server - permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130606#M804922</link>
      <description>Assuming you are using the default ftpd server that comes with HP-UX, you can try creating/modifying the /etc/ftpd/ftpaccess file to use the upload directive.&lt;BR /&gt;&lt;BR /&gt;There are a lot of options you have when using this file, so take a look at the man page and/or the HOW-TO's listed here.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.wu-ftpd.org/HOWTO/" target="_blank"&gt;http://www.wu-ftpd.org/HOWTO/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 27 Nov 2003 20:21:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130606#M804922</guid>
      <dc:creator>James A. Donovan</dc:creator>
      <dc:date>2003-11-27T20:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: Ftp file from Windows 2003 to HP-UX server - permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130607#M804923</link>
      <description>hi jo &lt;BR /&gt;      i use samba to map a share and then you can set the permmission defaults so that any file created on that share is set that way you don't even need to use ftp just copy it.&lt;BR /&gt;it is also possible to set up what ever level of authority you reqiure so it is more secure than standard ftp.&lt;BR /&gt;regards &lt;BR /&gt;andy</description>
      <pubDate>Fri, 28 Nov 2003 07:59:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130607#M804923</guid>
      <dc:creator>system administrator_15</dc:creator>
      <dc:date>2003-11-28T07:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Ftp file from Windows 2003 to HP-UX server - permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130608#M804924</link>
      <description>Ah....yes....no umask command in default Windows ftp client - that's a shame....&lt;BR /&gt;&lt;BR /&gt;You are going to have to use a third party client - like WSFTP...&lt;BR /&gt;&lt;BR /&gt;Then, after the transfer, right click the file and select "chmod"&lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Fri, 28 Nov 2003 16:30:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130608#M804924</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2003-11-28T16:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: Ftp file from Windows 2003 to HP-UX server - permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130609#M804925</link>
      <description>Hi Jo,&lt;BR /&gt;&lt;BR /&gt;actually UMASK is only a syntactical implementation of a FTPD-server feature.&lt;BR /&gt;So you do not need to have a client command within your ftp, but simply need to execute a server command. This is a clip from windows 98 (home pc) to HP-UX 11.0. The basic command to execute server commands is depending on the clients keyword for this.&lt;BR /&gt;Usually it is "quote" or "literal", which results in the following command being executed on the server. What you can execute on the server can be inspected with "remote help".&lt;BR /&gt;&lt;BR /&gt;Hope this helps&lt;BR /&gt;Volker&lt;BR /&gt;&lt;BR /&gt;Ftp&amp;gt; put c:\autoexec.bat /tmp/bastel&lt;BR /&gt;200 PORT command successful.&lt;BR /&gt;150 Opening ASCII mode data connection for /tmp/bastel.&lt;BR /&gt;226 Transfer complete.&lt;BR /&gt;Ftp: 134 Bytes gesendet in 0.00Sekunden 134000.00KB/Sek.&lt;BR /&gt;&lt;BR /&gt;Ftp&amp;gt; literal site umask 000&lt;BR /&gt;200 UMASK set to 000 (was 027)&lt;BR /&gt;&lt;BR /&gt;Ftp&amp;gt; put c:\autoexec.bat /tmp/bastel2&lt;BR /&gt;200 PORT command successful.&lt;BR /&gt;150 Opening ASCII mode data connection for /tmp/bastel2.&lt;BR /&gt;226 Transfer complete.&lt;BR /&gt;Ftp: 134 Bytes gesendet in 0.00Sekunden 134000.00KB/Sek.&lt;BR /&gt;Ftp&amp;gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;-rw-r-----   1 root       sys            131 Nov 29 10:14 bastel&lt;BR /&gt;-rw-rw-rw-   1 root       sys            131 Nov 29 10:15 bastel2&lt;BR /&gt;</description>
      <pubDate>Sat, 29 Nov 2003 04:15:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130609#M804925</guid>
      <dc:creator>Volker Borowski</dc:creator>
      <dc:date>2003-11-29T04:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: Ftp file from Windows 2003 to HP-UX server - permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130610#M804926</link>
      <description>Forgot to enhance:&lt;BR /&gt;The above FTPD is 11.0 - 32 Bit standard FTPD !&lt;BR /&gt;Volker</description>
      <pubDate>Sat, 29 Nov 2003 04:17:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130610#M804926</guid>
      <dc:creator>Volker Borowski</dc:creator>
      <dc:date>2003-11-29T04:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: Ftp file from Windows 2003 to HP-UX server - permission</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130611#M804927</link>
      <description>Hi Jo,&lt;BR /&gt;&lt;BR /&gt;Try this link for more info.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000065676995" target="_blank"&gt;http://www1.itrc.hp.com/service/cki/docDisplay.do?docLocale=en_US&amp;amp;docId=200000065676995&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You can set the umask globally using ftpd or set it using umask command when ftping file or you can set it in ftpaccess if you are using ftpaccess. Do man ftpaccess for more help if you are using ftpaccess.&lt;BR /&gt;&lt;BR /&gt;Hope this helps.&lt;BR /&gt;&lt;BR /&gt;Regds&lt;BR /&gt;</description>
      <pubDate>Sun, 30 Nov 2003 04:55:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-file-from-windows-2003-to-hp-ux-server-permission/m-p/3130611#M804927</guid>
      <dc:creator>Sanjay_6</dc:creator>
      <dc:date>2003-11-30T04:55:45Z</dc:date>
    </item>
  </channel>
</rss>

