Sponsored Content
Full Discussion: Telnet Timeout
Operating Systems Linux Telnet Timeout Post 302382960 by fpmurphy on Sunday 27th of December 2009 02:07:53 PM
Old 12-27-2009
Correct
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

telnet session timeout

hi, we can set something such that if the user has been idle for a while, it will auto disconnect. where to do so? thanks (6 Replies)
Discussion started by: yls177
6 Replies

2. UNIX for Dummies Questions & Answers

solaris telnet idle timeout

I have put TMOUT=1800;export TMOUT in the /etc/profile, put it does not work, by the way the root default shell is sh. but I wana every one including root to terminate the session after setting idle for 1800 seconds. thank for the help. (1 Reply)
Discussion started by: kahn630
1 Replies

3. AIX

how to change telnet timeout setting

Hi all Can any one solve my problem? I want to change the default timeout setting for telnet in aix, pls help me. (1 Reply)
Discussion started by: vjm
1 Replies

4. Solaris

Disable telnet timeout

Hi, Can someone help me how I can disable telnet timeout? I'm connecting remotely to some machines and after some time my telnet connection was closed. How can I disable this so that I'm always connected to those machines? Thanks! (2 Replies)
Discussion started by: ayhanne
2 Replies

5. Red Hat

telnet idle timeout on Redhat kernel 2.4.35.4

Hello, I've searched this forum for telnet idle timeout problem. I tried to set timeout parameters in /etc/profile readonly TMOUT=10 export TMOUT This doesn't work for Redhat kernel 2.4.35.4. It's really frustrating. Can anybody tell me what else I could try? Thanks a lot! jing (0 Replies)
Discussion started by: jing han
0 Replies

6. Forum Support Area for Unregistered Users & Account Problems

tinylogin telnet idle timeout

Hello, I have a busybox with tinylogin. How can I log user out when I found the telnet session is idle for 10 seconds? I set TMOUT=10 export TMOUT in /etc/profile I found it doesn't work for me. Can anybody help me? Thanks a lot! jing (1 Reply)
Discussion started by: jing han
1 Replies

7. Shell Programming and Scripting

Webpage to Telnet via Perl and Expect: Telnet problem?

Somewhat long story: I have a simple Perl CGI script that uses Expect to Telnet to a device and grab some data, and then spits it back to Perl for display on the Webpage. This works for many devices I've tried, but one device just fails, it keeps rejecting the password on this device, only... (1 Reply)
Discussion started by: jondo
1 Replies

8. Solaris

rlogin, telnet connections timeout

Hi, I have a Sun Ultra 5 desktop with Solaris 8. When I telnet/rlogin into any other host, the connection closes after few hours of inactivity. I also have another Windows box which I use rarely. But when I telnet/rlogin into the same hosts using putty, the connection stays for days without any... (5 Replies)
Discussion started by: dr_gsb
5 Replies

9. Shell Programming and Scripting

ping and telnet timeout

Hello, I need help, I have the following which save in the result file ping and telnet:port test. Basically the script works but I should implement a check on ping and telnet command so that ping has 5 seconds threshold and telnet (more important) 10 seconds. Over that threshold ping and... (0 Replies)
Discussion started by: marmellata
0 Replies

10. HP-UX

[SOLVED] Telnet timeout issue

I have telnet configured in /etc/inetd.conf as below: telnet stream tcp6 nowait root /usr/lbin/telnetd telnetd -b /etc/issue -n20 When i restart the service telnetd shows with only the -b option: ps -ef|grep telnetd|grep -v grep root 24397 1 0 10:42:35 pts/ta 0:00... (1 Reply)
Discussion started by: Tommyk
1 Replies
DBIx::Class::Manual::Reading(3) 			User Contributed Perl Documentation			   DBIx::Class::Manual::Reading(3)

NAME
DBIx::Class::Manual::Reading - How to read and write DBIx::Class POD. DESCRIPTION
This doc should help users to understand how the examples and documentation found in the DBIx::Class distribution can be interpreted. Writers of DBIx::Class POD should also check here to make sure their additions are consistent with the rest of the documentation. METHODS
Methods should be documented in the files which also contain the code for the method, or that file should be hidden from PAUSE completely, in which case the methods are documented in the file which loads it. Methods may also be documented and referred to in files representing the major objects or components on which they can be called. For example, DBIx::Class::Relationship documents the methods actually coded in the helper relationship classes like DBIx::Class::Relationship::BelongsTo. The BelongsTo file itself is hidden from PAUSE as it has no documentation. The accessors created by relationships should be mentioned in DBIx::Class::Row, the major object that they will be called on. Method documentation o Each method starts with a "head2" statement of its name. Just the plain method name, not an example of how to call it, or a link. This is to ensure easy linking to method documentation from other POD. o The header is followed by a two-item list. This contains a description of the arguments the method is expected to take, and an indication of what the method returns. The first item provides a list of all possible values for the arguments of the method in order, separated by ", ", preceded by the text "Arguments: " Example (for the belongs_to relationship): =item Arguments: $accessor_name, $related_class, $fk_column|\%cond|@cond?, \%attr? The following possible argument sigils can be shown: o $var - A scalar (string or numeric) variable. o \%var - A variable containing reference to a hash. o @var - A variable containing a reference to an array. o $var - A variable containing a reference to a scalar variable. o %var - A hashref variable (list of key/value pairs) - rarely used in DBIx::Class. Reading an argument as a hash variable will consume all subsequent method arguments, use with caution. o @var - An array variable (list of values). Reading an argument as a array variable will consume all subsequent method arguments, use with caution. o $obj - Reference to the source class or object definition All arguments and return values should provide a link to the object's class documentation or definition, even if it's the same class as the current documentation. For example: ## Correct, if stated within DBIx::Class::ResultSet L<$resultset|/new> ## Correct, if stated outside DBIx::Class::ResultSet L<$resultset|DBIx::Class::ResultSet> o ? - Optional, should be placed after the argument type and name. ## Correct \%myhashref|@myarrayref? ## Wrong \%myhashref?|@myarrayref Applies to the entire argument. Optional arguments can be left out of method calls, unless the caller needs to pass in any of the following arguments. In which case the caller should pass "undef" in place of the missing argument. o | - Alternate argument content types. At least one of these must be supplied unless the argument is also marked optional. The second item starts with the text "Return Value:". The remainder of the line is either the text "not defined" or a variable with a descriptive name. ## Good examples =item Return Value: not defined =item Return Value: L<$schema|DBIx::Class::Schema> =item Return Value: $classname ## Bad examples =item Return Value: The names "not defined" means the method does not deliberately return a value, and the caller should not use or rely on anything it does return. (Perl functions always return something, usually the result of the last code statement, if there is no explicit return statement.) This is different than specifying "undef", which means that it explicitly returns undef, though usually this is used an alternate return (like "$obj | undef"). o The argument/return list is followed by a single paragraph describing what the method does. o The description paragraph is followed by another list. Each item in the list explains one of the possible argument/type combinations. This list may be omitted if the author feels that the variable names are self-explanatory enough to not require it. Use best judgement. o The argument/return list is followed by some examples of how to use the method, using its various types of arguments. The examples can also include ways to use the results if applicable. For instance, if the documentation is for a relationship type, the examples can include how to call the resulting relation accessor, how to use the relation name in a search and so on. If some of the examples assume default values, these should be shown with and without the actual arguments, with hints about the equivalent calls. The example should be followed by one or more paragraphs explaining what it does. Examples and explaining paragraphs can be repeated as necessary. AUTHOR AND CONTRIBUTORS
See AUTHOR and CONTRIBUTORS in DBIx::Class LICENSE
You may distribute this code under the same terms as Perl itself. perl v5.18.2 2013-12-16 DBIx::Class::Manual::Reading(3)
All times are GMT -4. The time now is 11:36 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy