Tcp-wrappers shoud be enabled to start and stop the sshd2 server. Upon execution, inetd reads its configuration information from a configuration file which, by default, is /etc/inetd.conf. There must be an entry for each field of the configuration file, with entries for each field separated by a tab or a space.
Edit the inetd.conf file, vi /etc/inetd.conf and add the line:
ssh stream tcp nowait root /usr/sbin/tcpd sshd -i
The -i parameter is important since it specifies that sshd is being run from inetd. Also, update your inetd.conf file by sending a SIGHUP signal, killall -HUP inetd after adding the above line into the file.
[root@deep] /#killall -HUP inetd
Edit the hosts.allow file, vi /etc/hosts.allow and add the line:
sshd: 192.168.1.4 win.openna.com
Which means client 192.168.1.4 with host name win.openna.com is allowed to ssh on the server.
These daemon strings for tcp-wrappers are in use by sshd2: