Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- PostgreSQL
- RHEL
- Elasticsearch
- bash
- 크롬
- yum
- Elk
- log
- Chrome
- Shell
- Kubernetes
- CentOS
- docker
- 파이썬
- Linux
- 서울시민카드
- C
- 디렉토리
- rsyslog
- Audit Log
- JSON
- 빅데이터
- audit
- syslog
- centos 7.5
- GPU
- GNOME
- K8S
- zabbix
- Python
Archives
- Today
- Total
Sysops Notepad
[Linux] Centos 7 dnsmasq를 이용한 local dns 구축 본문
728x90
dnsmasq는 DNS Forward / Cache / DHCP 기능 수행
Master
1. yum install dnsmasq
2. /etc/hosts 에 서비스할 로컬 domain 들을 적어줍니다.
127.0.0.1 localhost
192.168.0.10 master
192.168.0.11 slave1
192.168.0.12 slave1
3. /etc/resolv.conf 에 nameserver 를 현재 IP 로 변경
nameserver 192.168.0.10
4.vi /etc/resolv.dnsmasq
nameserver 8.8.8.8 # /etc/hosts 파일에 없는 dns 질의시 조회할 dns server 입력
5.vi /etc/dnsmasq.conf
resolv-file=/etc/resolv.dnsmasq # resolv.dnsmasq 설정을 등록해줍니다.
6. systemctl restart dnsmasq
Slave
1. vi /etc/resolv.conf
nameserver 192.168.0.10 # nameserver 를 master ip 로 설정
2. nslookup master
728x90
'업무 > sys' 카테고리의 다른 글
[Linux] Redhat 8 / Centos 8 nmcli 명령어 정리 (0) | 2019.05.20 |
---|---|
[Network] LLNMR & SSDP 프로토콜이란 ? (0) | 2019.04.19 |
[Linux] Centos 웹 서버(Apache,Nginx) X-Forwarded-For Log 설정 (0) | 2019.02.19 |
[Linux] Centos Haproxy Client IP forward 설정 (0) | 2019.02.19 |
[Docker] 호스트와 컨테이너간 파일 복사 (0) | 2019.02.15 |
Comments