DNS와 관련된 명령어 1. 해당 컴퓨터의 ip 구성 정보 출력- CMD : ipconfig - Powershell : Get-NetIPAddress 2. 해당 컴퓨터의 상세한 ip 구성정보 출력- CMD : ipconfig /all- Powershell : Get-NetIPConfiguration 3. 해당 컴퓨터에 캐싱된 정보 출력- CMD : ipconfig /displaydns- Powershell : Get-DnsClientCache 4. 해당 컴퓨터에 캐싱된 정보 삭제- CMD : ipconfig /flushdns- Powershell : Clear-DnsClientCache 5. 클라이언트에서 구성된 DNS서버에 자신의 호스트명과 ip 정보 등록- CMD : ipconfig /register..