Questions tagged [xinetd]

xinetd is an open-source super-server daemon which runs on many Unix-like systems. It performs the same function as inetd.

65 questions
13
votes
3 answers

What is a ToD server, "Time of Day" (Not NTP)

I got a simple task: Setup a ToD server... It is not NTP. It runs on port 37. It seems to be bundled with inetd or xinetd. Shall be installed on Debian or CentOS. Alternatively FreeBSD (pfsense router). Any hint on how to proceed? Two starter links…
Tillebeck
  • 521
4
votes
1 answer

How to add custom xinetd Service in pfSense

On a pfSense 2.4, I installed a custom xinetd service. I appended the necessary line to the list in /etc/services and wrote a stanza in /var/etc/xinetd.conf. After reloading xinetd, the service runs successfully. However, the file…
4
votes
1 answer

systemd: get core dumps for service started by xinetd

I recently upgraded a system to openSUSE 13.1. We're running a custom-built service on the system through xinetd, and in the old xinetd init script had the line ulimit -c unlimited before starting xinetd to enable core dumps. Since openSUSE 13.1…
sjaensch
  • 181
3
votes
9 answers

xinetd won't start

Silly question... I can't get xinetd to start on my linux box (CENTOS 4.8). I've got so far as to remove it and reinstall it via yum. When I try to start it, stop it, etc. I get no error at all. [root@server ~]# service xinetd stop …
Mike B
  • 12,304
3
votes
1 answer

Linux: tftp not working, transfer timed out, what could be the reason?

I have a server which runs cobbler and tftp server. My task is to configure a read-write tftp server. tftp is configured through xinetd and the configuration file looks like so: service tftp { disable = no socket_type…
Itai Ganot
  • 10,976
3
votes
1 answer

Inetd / xinetd isn't working under cygwin, why?

I am trying to use xinetd (or inetd) with netcat to act as a TCP proxy. This setup works on Linux without issue. Under Cygwin, either as a service or from the a Cygwin command line, the (x)inetd fails to open netcat, with the error "no such file or…
3
votes
1 answer

Bypass /etc/services lookup for xinetd

I'm looking to execute a script launched by xinetd over an arbitrary port. However after some testing it appears that I will need to explicitly define the service and port on /etc/services for xinetd to enable the service. Is there an option in…
3
votes
4 answers

xinetd 'connection reset by peer'

I'm using percona-clustercheck (which comes with Percona's XtraDB Cluster packages) with xinetd and I'm getting an error when trying to curl the clustercheck service. /usr/bin/clustercheck: #!/bin/bash # # Script to make a proxy (ie HAProxy)…
ceejayoz
  • 33,432
3
votes
2 answers

tomcat6 behind xinetd - real client ip

In server.xml, at the Connector I specify proxyPort as 80. Here's the xinetd service: service http { socket_type = stream protocol = tcp user = tomcat6 wait = no bind …
Poni
  • 315
3
votes
2 answers

BASH Script as xinetd service

I have recently found out that a server I am working on has an xinetd service that is in fact a shell script that calls another shell script with arguments retrieved via respective network connections. It does something like this: …
remote
  • 31
3
votes
5 answers

TCPWrappers still in use?

According to my current understanding, tcpwrappers can be used via inetd or xinetd. Lately I have been informed that inetd/xinetd came into existence to make more efficient use of hardware in earlier days and are therefore seen rarely nowadays. My…
benjamin
  • 187
3
votes
1 answer

Why does xinetd try to close file descriptors on startup?

I have xinetd running inside a docker container (base image centos:7) on a rockylinux 9 host machine. On starting xinetd service in the docker image, it appears to hang. So I used strace, and found the following output, rapidly counting…
2
votes
4 answers

TFTP works localhost but not global

I have a TFTP server on Centos 7.4. The TFTP server is up and running and works well when trying to access a file, connecting on localhost. However, if I try to access the TFTP server from another server, I get a time out. The firewall is configured…
user440625
  • 29
  • 1
  • 3
2
votes
2 answers

web browser dislikes xinetd

How can I make an xinetd service such that a web browser can reliably show its output? The service always sees the HTTP GET request on its stdin, and sends its reply to stdout. xinetd handles the tcp connection. Firefox sometimes correctly shows the…
2
votes
1 answer

Fedora 17 tftp not sending files on requests

My Issue is I am attempting to set up tftp on a server, Everything appers to be running correctly exept when I try to download a file from tftp it never responds, There are not any error's that I see, Just silence, When I sniff the trafic from the…
Tim Holum
  • 125
1
2 3 4 5