linux process 구동방식 ( standalone, xinetd )
프로세스 구동 방식1. standalone 방식 : 항상 메모리에 올라와 있는 프로세스들 ex) sshd,httpd,mysqld,sendmail,xinetd.... 2. xinetd 방식 : 사용자나 관리자가 요청할 때만 메모리에 올라간다. ex) telnet, imap, swat, rlogin...... [실습]프로세스 형식으로 제한한다.1. sshd 데몬만 허용하라 /etc/hosts.denyALL : ALL /etc/hosts.allowsshd : ALL 2. telnet 서비스만 허용하라. /etc/hosts.denyALL : ALL /etc/hosts.allow/usr/sbin/in.telnetd : ALL *******Xinted 자체는 standalone 방식이며 Xinetd에 의해 구동되는..