Ubuntu 20.04 Server / 고정 IP 설정하는 방법
Created 2024-04-13
Last Modified 2024-04-13
- 네트워크 설정 파일은 /etc/netplan 디렉토리 안에 있는 yaml 파일이다.
- DHCP로 설치했다면, 설정 파일 내용은 다음과 비슷하게 되어 있다.
# This is the network config written by 'subiquity'
network:
ethernets:
enp0s3:
dhcp4: true
version: 2
- 다음과 같이 수정하고 저장한다. IP 등은 네트워크 환경에 맞게 적절히 수정한다.
# This is the network config written by 'subiquity'
network:
ethernets:
enp0s3:
addresses: [192.168.0.136/24]
gateway4: 192.168.0.1
nameservers:
addresses: [8.8.8.8,8.8.4.4]
version: 2
- 다음과 같이 명령하면 설정 변경 사항이 적용된다.
netplan apply





