Account Links: Cart | Your Account | Logout

Skip to content

Red Hat Knowledgebase

Red Hat Knowledgebase Search:

Updated Within the Last:

New Solutions within the last day New Solutions within the last week New Solutions within the last month

Browse by topics:


Click to View a Topic
Red Hat Enterprise Linux > AS/ES/WS v. 4 > Issue <<  468 of 624 >>

Solution Tools:


Email a Solution Postcard Printer version Submit a comment on this answer Update notifications Request an answer Back

Article Reference

Article ID: 5665
Last update: 07-19-05
Issue:
How can I increase the number of concurrent Telnet connections to my server if it seems to be limited to 64?
Resolution:

You can increase the number of concurrent Telnet connections that your server will accept by editing the file /etc/xinetd.d/telnet and adding a line that reads:

instances = 100

Where 100 represents the maximum number of concurrent connections. For example:

# default: on
# description: The telnet server serves telnet sessions; it uses \
#       unencrypted username/password pairs for authentication.
service telnet
{
        disable = no
        flags           = REUSE
        socket_type     = stream
        wait            = no
        user            = root
        server          = /usr/sbin/in.telnetd
        log_on_failure  += USERID
        instances       = 100
}

The maximum number of instances specified in the /etc/xinetd.conf file applies as a default to this service when no value is specified by the service in its configuration file.

You will now need to restart the xinetd, daemon using the command:

# service xinetd restart


How well did this entry answer your question?


good wrong incomplete out of date
Red Hat Enterprise Linux > AS/ES/WS v. 4 > Issue <<   468  of  624  >>