QNX RTOS v4 Knowledge Base
QNX RTOS v4 Knowledge Base
Title |
Starting 'telnetd' at a different priority in QNX4 |
Ref. No. |
QNX.000009620 |
Category(ies) |
Utilities, Configuration |
Issue |
We would like to start telnetd at a priority of 9 instead of the default 10. We have modified the inetd.conf file so that it starts telnetd at a priority of 9 instead of 10, but it does not seem to work. Here is the configuration line we are using from our inetd.conf file: telnet stream tcp nowait root /usr/bin/on -p 9 /usr/ucb/telnetd in.telnetd
|
Solution |
The first argument to the "on" command should be argv[0], i.e "on", as in:
telnet stream tcp nowait root /usr/bin/on on -p 9 /usr/ucb/telnetd
|
|