Sep 15, 2003 #1 MCubitt Programmer Mar 14, 2002 1,081 GB When I FTP to our AIX box, the connection times out after 900 seconds. This is the default. Documentation says to use SMIT to change this default but fails to say where the option is or how to do it. Any help?
When I FTP to our AIX box, the connection times out after 900 seconds. This is the default. Documentation says to use SMIT to change this default but fails to say where the option is or how to do it. Any help?
Sep 15, 2003 1 #2 mrn MIS Apr 27, 2001 3,993 GB As root edit the system file /etc/inetd.conf ftp stream tcp nowait root /usr/sbin/ftpd ftpd -t 1800 After refresh of the inetd subsystem the timeout will be 1800 seconds. Refreshing is accomplished by the line command refresh -s inetd or by the smitty - Processes & Subsystems - Subsystems - Refresh a Subsystem menu selection. -- | Mike Nixon | Unix Admin | ---------------------------- Upvote 0 Downvote
As root edit the system file /etc/inetd.conf ftp stream tcp nowait root /usr/sbin/ftpd ftpd -t 1800 After refresh of the inetd subsystem the timeout will be 1800 seconds. Refreshing is accomplished by the line command refresh -s inetd or by the smitty - Processes & Subsystems - Subsystems - Refresh a Subsystem menu selection. -- | Mike Nixon | Unix Admin | ----------------------------
Sep 15, 2003 #3 mrn MIS Apr 27, 2001 3,993 GB PS the above is a permenant change for temp change use temporarily for an existing ftp session As normal user the ftp subcommand site idle 1800 will do the job. The currently valid timeout can be queried by the ftp subcommand site idle -- | Mike Nixon | Unix Admin | ---------------------------- Upvote 0 Downvote
PS the above is a permenant change for temp change use temporarily for an existing ftp session As normal user the ftp subcommand site idle 1800 will do the job. The currently valid timeout can be queried by the ftp subcommand site idle -- | Mike Nixon | Unix Admin | ----------------------------
Sep 15, 2003 Thread starter #4 MCubitt Programmer Mar 14, 2002 1,081 GB Many thanks. This was my thought but I preferred to check with the guys who know! Thanks again. Upvote 0 Downvote