Hi Michael!
Can you guide me how to install and configure the IPsec?
tcp_wrapper: I downloaded it from internet ( tcp_wrappers-7.6.1.0.exe), after that i installed it to AIX server, create 2 file /etc/hosts.allow and /etc/hosts.deny, modify inetd.conf :
ftp stream tcp6 nowait root /usr/local/bin/tcpd ftpd
telnet stream tcp6 nowait root /usr/local/bin/tcpd telnetd ?a
ssh stream tcp6 nowait root /usr/local/bin/tcpd sshd
./usr/local/bin/tcpdchk -v
refresh -s inetd
As I know, hosts.allow file has higher priority than hosts.deny, but I see It don't follow such rules and doesn't work as expected

. Example:
I have 2 servers, server1 ( 10.0.10.25), server2 ( 10.0.10.27), I want server1 connect to server2 through ftp and restrict access through telnet and ssh ....I modified 2 file hosts.allow & hosts.deny at server2 as follow:
hosts.allow:
ftpd:10.0.10.25
hosts.deny:
telnetd:10.0.10.25
sshd:10.0.10.25
After that refresh -s inetd, but I don't understand why It's still connect each other through telnetd, sshd...