This is a discussion on Echo server for Linux within the Linux Networking forums, part of the Linux Forums category; Hello from Gregg C Levine Any suggestions for launching an echo server on a box running Slackware Linux? This is ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello from Gregg C Levine
Any suggestions for launching an echo server on a box running Slackware Linux? This is version 9.1 of the product. (For those who care.) I plan on having the box generate these echo packets, and have them picked up on a remote box, running something else. Please provide pointers, even code samples. Gregg C Levine drwho8 atsign att dot net This message is dedicated to the Enterprise Engineering squad. Miracles made to order. |
|
|||
|
Gregg C Levine wrote:
> Hello from Gregg C Levine > Any suggestions for launching an echo server on a box running Slackware Linux? > This is version 9.1 of the product. (For those who care.) I plan on having the box > generate these echo packets, and have them picked up on a remote box, running > something else. Please provide pointers, even code samples. > Gregg C Levine drwho8 atsign att dot net > This message is dedicated to the Enterprise Engineering squad. > Miracles made to order. > $ cat /etc/inetd.conf | grep -B2 echo # #:INTERNAL: Internal services #echo stream tcp nowait root internal #echo dgram udp wait root internal Inetd provides this services. In case you use xinetd, consult man xinetd.conf to see how to enable echo. Either xinetd or inetd should be in Slackware distribution |
|
|||
|
Hello from Gregg C Levine
Okay thanks! I had an inspired guess after I sent off the message, but that's it. Thank you again. Gregg C Levine drwho8 atsign att dot net This message is dedicated to the Enterprise Engineering squad. Miracles made to order. In article <bvnqnj$uhrdv$1@ID-134500.news.uni-berlin.de>, dont.spam.me@softhome.net says... > >Gregg C Levine wrote: >> Hello from Gregg C Levine >> Any suggestions for launching an echo server on a box running Slackware Linux? >> This is version 9.1 of the product. (For those who care.) I plan on having the box >> generate these echo packets, and have them picked up on a remote box, running >> something else. Please provide pointers, even code samples. >> Gregg C Levine drwho8 atsign att dot net >> This message is dedicated to the Enterprise Engineering squad. >> Miracles made to order. >> > >$ cat /etc/inetd.conf | grep -B2 echo ># >#:INTERNAL: Internal services >#echo stream tcp nowait root internal >#echo dgram udp wait root internal > >Inetd provides this services. In case you use xinetd, consult man >xinetd.conf to see how to enable echo. >Either xinetd or inetd should be in Slackware distribution |