- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Passing parms to inetd
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2003 07:49 AM
09-09-2003 07:49 AM
Passing parms to inetd
telnet host_name port_num parameter.
Is this even possible?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2003 07:54 AM
09-09-2003 07:54 AM
Re: Passing parms to inetd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2003 07:54 AM
09-09-2003 07:54 AM
Re: Passing parms to inetd
If you want to pass this information to the application started by inetd, you are going to have to handle it in the code itself. i.e when you connect to the port, you "server" application requests the information and your "client" application sends it.
You can specify a static parameter in the ined.conf file but I guess that isn't waht you want. If you want to go mad and do all sorts of horrible things to your system and write a god awful program, you could edit inetd.conf and send a SIGHUP to inetd each time you connected using (remsh or something) but please don't do that!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2003 07:57 AM
09-09-2003 07:57 AM
Re: Passing parms to inetd
options to (when inetd calls such a service ie telnet - its a process called telnetd which is started ) later edit /etc/inetd.conf.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2003 08:18 AM
09-09-2003 08:18 AM
Re: Passing parms to inetd
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-09-2003 08:25 AM
09-09-2003 08:25 AM
Re: Passing parms to inetd
echo PIPPO \n PLUTO \n PAPERINO \n | telnet host port
if the server, in its code, has three read var
read ONE
read TWO
read THREE
you will get what you need.
Not nice, but (i think) working
Massimo