Howto: configure xinetd service under Linux or UNIX systems

by Vivek Gite on October 10, 2006 · 16 comments

Q. How do I configure xinetd under Fedora Core Linux?

A. xinetd, the eXtended InterNET Daemon, is an open-source daemon which runs on many Linux and Unix systems and manages Internet-based connectivity. It offers a more secure extension to or version of inetd, the Internet daemon.

xinetd performs the same function as inetd: it starts programs that provide Internet services. Instead of having such servers started at system initialization time, and be dormant until a connection request arrives, xinetd is he only daemon process started and it listens on all service ports for the services listed in its configuration file. When a request comes in, xinetd starts the appropriate server. Because of the way it operates, xinetd (as well as inetd) is also referred to as a super-server.

Task: xinetd Configuration files location

Following are important configuration files for xinetd:

  • /etc/xinetd.conf - The global xinetd configuration file.
  • /etc/xinetd.d/ directory - The directory containing all service-specific files such as ftp

Task: Understanding default configuration file

You can view default configuration file with less or cat command:
# less /etc/xinetd.confOR# cat /etc/xinetd.confOutput:

# Simple configuration file for xinetd
#
# Some defaults, and include /etc/xinetd.d/
defaults
{
        instances               = 60
        log_type                = SYSLOG authpriv
        log_on_success          = HOST PID
        log_on_failure          = HOST
        cps                     = 25 30
}
includedir /etc/xinetd.d

Where,

  • instances = 60 : Determines the number of servers that can be simultaneously active for a service. So 60 is the maximum number of requests xinetd can handle at once.
  • log_type = SYSLOG authpriv: Determines where the service log output is sent. You can send it to SYSLOG at the specified facility (authpriv will send log to /var/log/secure file).
  • log_on_success = HOST PID: Force xinetd to log if the connection is successful. It will log HOST name and Process ID to /var/log/secure file.
  • log_on_failure = HOST: Force xinetd to log if there is a connection dropped or if the connection is not allowed to /var/log/secure file
  • cps = 25 30: Limits the rate of incoming connections. Takes two arguments. The first argument is the number of connections per second to handle. If the rate of incoming connections is higher than this, the service will be temporarily disabled. The second argument is the number of seconds to wait efore re-enabling the service after it has been disabled. The default for this setting is 50 incoming connections and the interval is 10 seconds. This is good to avoid DOS attack against your service.
  • includedir /etc/xinetd.d: Read other service specific configuration file this directory.

Task: How to create my own service called foo

Here is sample config file for service called foo located at /etc/xinetd.d/foo
# vi /etc/xinetd.d/foo
And append following text:
service login
{
socket_type = stream
protocol = tcp
wait = no
user = root
server = /usr/sbin/foo
instances = 20
}

Where,

  • socket_type: Sets the network socket type to stream.
  • protocol: Sets the protocol type to TCP
  • wait: You can set the value to yes or no only. It Defines whether the service is single-threaded (if set to yes) or multi-threaded (if set to no).
  • user: User who will run foo server

Task: Stop or restart xinetd

To restart xinetd service type the command:
# /etc/init.d/xinetd restart
To stop xinetd service type the command:
# /etc/init.d/xinetd stop
To stop xinetd service type the command:
# /etc/init.d/xinetd start

Task: Verify that xinetd is running

Type the following command to verify xinetd service is running or NOT:
# /etc/init.d/xinetd statusOutput:

xinetd (pid 6059) is running...

Further readings

  • Read man pages of xinetd.conf and xinetd for more information.

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 16 comments… read them below or add one }

1 koneru lata September 7, 2007

how to configure eternal disk using USB on sgi-irix and sun-solaris? Thanks.

Reply

2 Raman December 25, 2007

Hi,

Its very good. I was able to up and run at the first try itself. Thanks.

with regards,

Reply

3 pancake December 28, 2007

I am curious: WHAT does “xinetd.d” mean, or stand for? How did it get that name?

Reply

4 vivek December 28, 2007

xinetd => eXtended InterNET Daemon
.d => Directory with all configuration file

Reply

5 obarhleam February 26, 2008

Very good info, am impressed!

Reply

6 Sudhir May 12, 2008

Hi,

Could you tell me if there is any command to modify xinetd configuration instead of manually editing the xinetd.conf file.

Thanks in advance,
Sudhir

Reply

7 Harjit June 23, 2008

Hi,
I am wondering how to start xinetd at system reboot?
thanks in advance!
-harjit

Reply

8 vivek June 23, 2008

Harjit,

Under Debian / Ubuntu Linux, use sys-v tools.

Under RHEL / Fedora / CentOS Linux use chkconfig / ntsysv

HTH.

Reply

9 Sumit January 15, 2009

It is good.

Reply

10 Sajeeb Saha September 30, 2009

Hello,

I do not found the file /etc/xinetd.conf
Can anyone tell me what can i do in this case or how can i create a xinetd.conf file.

Thanks in advance…

Sajeeb

Reply

11 Vivek Gite September 30, 2009

@ Sajeeb,

You need to install xinetd package. Also, config file location may change for Linux / UNIX version.

Reply

12 karthik June 18, 2010

Hi i have increased the instacnes to 100 so it is working when i am connecting the server throutht the telnet port with maximum 100 sessions the same is now working in the LAN when the session is only 40 is any other settings needed to be changes
.

Reply

13 Karthik June 18, 2010

Sorry there is some spell mistakes

same is not working in the LAN when the session is only 40 is any other settings needed to be changes
.

Reply

14 vince September 29, 2010

Please help.

I am running RHEL 5.5.

I have always used chkconfig for service startups in the past.

Very wierd. Whenever I type chkconfig –list it returns nothing. Like there are no services started up at all. This is obviously not possible since I can ssh into the server. Further more I cannot run the command “service sshd status”. It returns an error as though sshd doesn’t exist. Then i checked the /etc/init/d directory there is nothing there. Finally I found all my services startup files here: /etc/rc.d/init.d. But I have no idea how to change what services start up or not. I believe this has something to do with xinetd service. But I am completely lost. I need to start up ntpd but there is no chkconfig for ntpd. Please help and please explain what happened to chkconfig and all the service startup files. Why are they now in the /etc/rc.d/init.d directory.

Reply

15 subh July 14, 2011

I am not getting its log file
i checked /var/log/ but secure file is not there.
root@bt:~# /etc/init.d/xinetd restart
* Stopping internet superserver xinetd [ OK ]
* Starting internet superserver xinetd [ OK ]
root@bt:~# /etc/init.d/xinetd status
* xinetd is running
root@bt:~#

Reply

16 Mamunur Rashid October 5, 2011

Very good for tips.I want to know how many services in xinetd in linux system

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 4 + 9 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: