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 |
Tags
- 처음 만나는 AI수학 with Python
- 자바편
- /etc/network/interfaces
- 코드로배우는스프링웹프로젝트
- 처음 만나는 AI 수학 with Python
- baeldung
- d
- 코드로배우는스프링부트웹프로젝트
- 스프링부트핵심가이드
- GIT
- 리눅스
- 네트워크 설정
- Kernighan의 C언어 프로그래밍
- network configuration
- 알파회계
- 목록처리
- 스프링 시큐리티
- 구멍가게코딩단
- resttemplate
- 자료구조와 함께 배우는 알고리즘 입문
- ㅒ
- 서버설정
- 데비안
- 티스토리 쿠키 삭제
- iterator
- 페이징
- 선형대수
- 친절한SQL튜닝
- 이터레이터
- 자료구조와함께배우는알고리즘입문
Archives
- Today
- Total
bright jazz music
어댑터 설정 변경 본문
1. 어댑터 정보 확인
1.1. Wi-Fi 어댑터 이름 확인(전체 목록)
netsh interface show interface
1.2. IP 주소, 서브넷 마스크, 게이트웨이, DNS 확인 ("Wi-Fi 어댑터 확인")
netsh interface ip show config name="Wi-Fi"
2. 어댑터 설정
2.1. 고정 IP 주소 설정
netsh interface ip set address "Wi-Fi" static 192.168.1.2 255.255.255.0
2.2. 게이트웨이 설정
netsh interface ip set address "Wi-Fi" static 192.168.1.2 255.255.255.0 192.168.1.1
2.3. DNS 서버 설정
netsh interface ip set dns "Wi-Fi" static 8.8.8.8
(선택)보조 DNS서버 설정
netsh interface ip add dns "Wi-Fi" 8.8.4.4 index=2
3. 문제 발생 시 다시 동적 아이피로 설정
netsh interface ip set address "Wi-Fi" dhcp
netsh interface ip set dns "Wi-Fi" dhcp
'OS 및 기타' 카테고리의 다른 글
윈도우 ip 수동 변경 (0) | 2024.04.16 |
---|---|
무선랜 정보확인 (0) | 2024.04.02 |
Git 병합 (0) | 2024.03.07 |
Jenkinsfile (0) | 2023.09.21 |
백업 스크립트 (0) | 2023.09.21 |
Comments