선릉역 1번 출구

가상 인프라 구축하기 - ubuntu server 고정 ip 할당하기 본문

Computer/Linux

가상 인프라 구축하기 - ubuntu server 고정 ip 할당하기

choideu 2022. 10. 11. 11:39

1. 본인 이더넷 이름 확인

ens33이 이더넷 이름임

 

2. /etc/netplan 디렉토리 안에 있는 yaml 파일 설정

# This is the network config written by 'subiquity'
network:
  ethernets:
    enp33:
      dhcp4: true
  version: 2

으로 되어 있는 파일을 

# This is the network config written by 'subiquity'
network:
  ethernets:
    enp33:
    dhcp6: no
      addresses: [192.168.0.153/24]
      gateway4: 192.168.0.2
      nameservers:
        addresses: [8.8.8.8,8.8.4.4]
  version: 2

로 다시 작성해줌

 

3. 설정 apply

netplan apply
reboot

 

4. ifconfig로 아이피 할당 확인 후 ping을 날려 네트워크 확인

 


아니면 처음 서버 설치시에 dhcp가 아니라 직접 Manual로 설치하면 됨

/etc/netplan/00-installer-config.yaml 결과

**yaml은 들여쓰기가 매우 중요!! 안맞으면 error 발생함

Comments