일단 아래는 windows server 의 hostname 을 fqdn 이 아닌 그냥 hostname 으로 했다. 실 production 상황에서는 도메인을 할당해야 하지만, 나는 local 에서 테스트했기 때문에 아래와 같이 단순히 했다.
- 루트 도메인 (windows client 에서 join 할 때 필요) : company.com
- AD 서버 Hostname : WIN-AD-SERVER-HOSTNAME
- AD 서버 IP : 10.0.0.2
/etc/config/dhcp:
config dnsmasq
...
list addnhosts '/etc/config/local.hosts'
config srvhost
option srv '_ldap._tcp.dc._msdcs.company.com'
option target 'WIN-AD-SERVER-HOSTNAME'
option port '389'
option class '0'
option weight '10'
/etc/config/local.hosts:
10.0.0.2 WIN-AD-SERVER-HOSTNAME
10.0.0.2 WIN-AD-SERVER-HOSTNAME.company.com
반응형
'개발 및 운영' 카테고리의 다른 글
UEFI development with Go-lang (0) | 2023.11.14 |
---|---|
메일서버 (SMAP/IMAP) 종류 (0) | 2023.02.04 |
MatterMost Webhook 설정 (0) | 2022.03.04 |
GraalVM native-image 최소 크기 (0) | 2021.09.02 |
hosted-gitlab 에서 dind 사용하기 (0) | 2021.09.02 |
댓글