728x90 반응형 PowerShell | IP주소 변경하기(고정 IP, DHCP 로 변경 등) 1. PowerShell 로 고정IP 할당하기 2. PowerShell 로 동적DHCP 변경하기 1. PowerShell 로 고정IP 할당하기 *관리자 모드로 PowerShell을 실행하자. 먼저 코드를 보자. $NetworkInterfaceName = "ethernet"# 네트워크 인터페이스 이름 $ipAddress = "192.168.55.121"# IP주소 $subnet = 24# 서브넷 마스크 $gateway = "192.168.55.1"# 게이트웨이 IP $dns1 = "8.8.8.8"# DNS 주소1 $dns2 = "1.1.1.1"# DNS 주소2 $val = Get-NetIPAddress ` | Where-Object {$_.InterfaceAlias -eq $NetworkInterfaceN.. 2022. 9. 16. 이전 1 다음 728x90 반응형