Ubuntu 18.04 는 ip address 설정 방법이, Ubuntu 16.04 와 다르다.
정확히는 Ubuntu 17.10 부터 ip address 설정 방법이 달라졌다.
기존 방법에서 사용하던 파일을 open 해보면,
netplan 파일로 변경되었다고 나온다.
% cat /etc/networks/interfaces
netplan 으로 이동하자
% cd /etc/netplan
% ls
50-cloud-init.yaml
1개의 yaml 파일이 존재한다.
상황에 따라 이름이 다를 수도 있고, 갯수가 다를 수도 있는거 같다.
아무튼 vi 같은 editor 로 열어보자.
# This file is generated from information provided by # the datasource. Changes to it will not persist across an instance. # To disable cloud-init's network configuration capabilities, write a file # /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following: # network: {config: disabled} network: ethernets: enp0s3: addresses: [] dhcp4: true optional: true version: 2 |
아래처럼 정보를 입력하면 된다.
# This file is generated from information provided by # the datasource. Changes to it will not persist across an instance. # To disable cloud-init's network configuration capabilities, write a file # /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following: # network: {config: disabled} network: ethernets: enp0s3: addresses: [192.168.0.100/24] gateway4: 192.168.0.1 nameservers: addresses: [168.126.63.1,168.126.63.2] dhcp4: false optional: true version: 2 |
출처
http://blog.hazard.kr/archives/890
https://ujuc.github.io/2017/11/18/ubuntu_17.10e-seo-bu-teo_gibon-eu-ro_sa-yong-doe-neun_netplan
http://blog.hkwon.me/ubuntu-18-04-netplan
https://websiteforstudents.com/configuring-static-ips-ubuntu-17-10-servers
https://websiteforstudents.com/configure-static-ip-addresses-on-ubuntu-18-04-beta
댓글 없음:
댓글 쓰기