Questions tagged [xinetd]
19 questions
2
votes
2 answers
TFTP: Server Error: (2) Access Violation
I am trying to send a file to TFTP server using below command:
tftp -p -l test.txt xx.xx.xx.xx
And TFTP usage is:
BusyBox v1.13.2 (2011-03-24 18:58:44 CDT) multi-call binary
Usage: tftp [OPTION]... HOST [PORT]
Transfer a file from/to tftp…
pankil
- 21
2
votes
1 answer
Wake PC for Windows File History
I have a PC which acts as a server for Windows File History running on all the Windows machines on my LAN (i.e., the clients all target a share on the server for storing their backups).
Rather than have the server run 24/7, I'd like to have it wake…
Mark Olbert
- 409
1
vote
0 answers
How can I limit connections from any IPs but localhost using xinetd?
There is a xinetd service. Users connect to it from their workstations. How can I limit them to use only one connection per IP, but keep unlimited connections from localhost?
I know there is per_source option, but it does not make a difference…
borism
- 11
- 2
1
vote
0 answers
Is it possible to abort ongoing connection using xinetd access_times?
The access_times attribute in xinetd config file allows to limit access times for services.
What I want to know is if I have an opened connection (an ssh one) established in allowed time, how to force closing the connection when the allowed time has…
Chedy2149
- 183
1
vote
2 answers
Xvnc4 started from xinetd only displays empty gray X screen
I'm attempting to setup an Ubuntu 10.10 box so that anyone can connect to port 5900 and be greeted by the gdm login manager. To do so, I added a vnc entry in /etc/services and I am starting Xvnc4 using this xinetd config file:
service vnc
{
…
scott8035
- 141
1
vote
4 answers
How to run inetd daemon on Cygwin?
I want to get inetd daemon working on a machine running Cygwin. I know how to do this on Centos 4, but on Cygwin it does not seem to work.
Commands I tried are:
cygrunsrv -I xinetd -d "Cygwin Xinetd" -p /usr/sbin/xinetd -e CYGWIN=ntsec
cygrunsrv -S…
WilliamKF
- 8,058
1
vote
0 answers
Unable to connect to vsftpd instance managed by xinetd on Centos 7
I am attempting to run an instance of vsftpd and have additional access controls and logging performed by xinetd.
On the VM running both services, I can successfully initiate a ftp connection and manipulate files on both port 21 and port 14121…
Plurarian
- 11
0
votes
1 answer
I added a simple socket perl server script under Cygwin Xinetd to echo client input but it reads blank instead
I installed a x32 version 1.7.33 of Cygwin on my x64 Windows7 machine.
I added a new service under /etc/xinetd.d/ccapi.
$ cat ccapi-stream
service ccapi
{
id = ccapi-stream
disable = no
socket_type = stream
protocol =…
Alan Ma
- 1
0
votes
1 answer
how to debug when xinetd says : got signal 17 (child exited)
I am trying to start services vsftpd and sshd using xinetd. my config files are as follows.
/etc/xinetd.conf
defaults
{
instances = 60
log_type = FILE /var/log/xinetdlog
log_on_success = HOST PID
log_on_failure…
0
votes
1 answer
Get error messages from server
I want to start a service via xinetd but it does not work.
That means immediately after starting the service it is stopped again:
Sep 23 19:16:39 sektor xinetd[556]: START: service pid=559 from=xx.xx.xx.xx
Sep 23 19:16:39 sektor xinetd[556]: EXIT:…
0
votes
1 answer
How do I know if the version of Linux as well as distribution of Linux I am running uses xinetd?
Is there a specific file I need to check or is it a process I need to be looking at? If I am running inetd, do I need to disable it and run xinetd instead?
PeanutsMonkey
- 9,380
0
votes
1 answer
How to get status information form xinetd
How can I get some status information from xinetd, for example which servers are running/listening, which connections are open at the moment and so on. I found some hints which say "normally every server has an own file in /etc/xinet.d/*", but I…
strauberry
- 667
0
votes
1 answer
Real VNC on Ubuntu 10.04 LTS via xinetd
I am trying to get Real VNC server on Ubuntu 10.04 LTS 64 bit.
I tried 2 options. First, I got Real VNC free edition and got it working after getting all requires 32 bit libraries, configuration hacking etc. It's almost good with one little…
Alex Gitelman
- 135
0
votes
1 answer
xinetd server configuration
I have a java server console program that I have configured xinetd to start when connection comes in on a given port and then the program runs in an infinite loop receiving inputstream from telephone exchanges.
The thing is, when a new chunk of…
Gunnlaugur
- 143
0
votes
2 answers
xinetd keeps process open when client disconnects
I've asked this question more or less before on stackoverflow and believed it to be solved (hence accepted the answer) but it turns out it wasnt solved. :-(
In simple terms, I've written a python script which just outputs text constantly to stdout,…
Sirex
- 11,214