정보보안과정/리눅스 네트워크 관리자(6)
-
WEB / FTP 서버 관리
190925 CGI -> 동적페이지를 제공하는 것이 목적 http://www.linuxXXX.example.com -------> /www1/index.html : 코드를 해석해 달라 http://www.linuxXXX.example.com/cgi-bin/test.cgi ----> /www1/cgi-bin/test.cgi : 실행시켜 달라 가상호스트 설정이 되면 원래 되어 있던 설정을 overwrite 한다. /var/www/html/* ----> /www1/* 가상호스트 -> 서버에서 하나의 프로그램으로 여러개의 서비스를 하는 것 [실습] ServerName, DocumentRoot, Directory 설정 * /var/www/html -> /www1 [실습] CGI 설정(ScriptAlias) - b..
2019.09.25 -
WEB 관리
190924 [실습] 웹 클라이언트 툴사용법 * firefox * curl/lynx CMD * telnet/nc CMD [실습] 개별 사용자 웹서버 구성 # vi /etc/httpd/conf/httpd.conf UserDir public_html # su - user01 $ chmod 755 . $ mkdir -p public_html $ echo hello world > public_html [실습] 개별 사용자 웹서버 구성2(httpd.conf(Alias)) # vi /etc/httpd/conf/httpd.conf Alias /user01/ /home/user01/public_html/ # vi public_html/index.html ServerRoot "/etc/httpd" Listen 80 in..
2019.09.24 -
DNS 서버관리 / WEB 관리
190923 [실습] DNS + WEB 연동 실습 [실습] DNS 웹부하분산 [실습] DNS 도메인 위임(Domain Delegation) [실습] nslookup/dig/host CMD 사용법 [실습] Master/Slave DNS Server [실습] Master/Slave DNS Server 환경 - zone date update 실습 [실습] rndc CMD 실습 * rndc-confgen CMD * /etc/rndc.conf * /etc/named.conf [실습] system-config-bind # yum -y install system-config-bind # system-config-bind & [참고] nsupdate CMD/allow-update (DDNS) # vi /etc/name..
2019.09.24 -
DNS 서버 관리
[실습] Etherchanne1 Bonding Mode0(A-A), Model(A-S) (ㄱ) /etc/modprobe.conf (ㄴ) /etc/sysconfig/network-scripts/ifcfg-bond0 (ㄷ) /etc/sysconfig/network-scrips/ifcfg-eth0 (ㄹ) /etc/sysconfig/network-scrips/ifcfg-eth1 (ㅁ) reboot 190920 네트워크 설정 확인 명령어들 =========================== Chapter 03. DNS 서버 관리 =========================== Domain Name System -> 도메인 이름을 관리, 이름과 IP를 매핑시켜주는 역할 Domain -> 영역, 범위 Domain N..
2019.09.20 -
네트워크 설정 관리
190919 =========================== Chapter 02. 네트워크 설정 관리 ============================ 네트워크 설정 관련 파일들 /etc/hosts /etc/host.conf(/etc/nsswitch.conf) -> 도메인에 대한 아이피를 결정하는 순서를 결정 /etc/resolv.conf -> 도메인 네임 서버 지정 /etc/sysconfig/network /etc/sysconfig/network-scripts/ifcfg-* /etc/sysconfig/networking/* 네트워크 설정 확인 명령어들 IP/Netmask (UP유무) : # ifconfig Default GW : # netstat -nr DNS : # cat /etc/resolv.c..
2019.09.19 -
서비스 관리
Linux Network Adminstration 과정 정리 ===================== Chapter 01. 서비스 관리 ===================== xinetd -> 서비스 요청이 있을 때 데몬이 뜨는 방식 xinetd 데몬은 -> standalone 방식이다.(다른걸 실행시키려면 떠있어야 함) [참고] 추가적인 실습 # cd /etc/xinetd.d # cat krb5-telnet # chkconfig krb5-telnet off // 커맨드 적용 서비스 off | disable -> yes # cat krb5-telnet # chkconfig krb5-telnet on // 커맨드 적용 서비스 on | disable -> no # cat krb5-telnet /etc/xine..
2019.09.18