선릉역 1번 출구
가상 인프라 구축하기 - ubuntu server 고정 ip 할당하기 본문
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로 설치하면 됨
**yaml은 들여쓰기가 매우 중요!! 안맞으면 error 발생함
'Computer > Linux' 카테고리의 다른 글
가상 인프라 구축하기 - mariadb 설치하기 (0) | 2022.10.11 |
---|---|
가상 인프라 구축하기 - apache 서버 설치하기 (0) | 2022.10.11 |
가상 인프라 구축하기 - ubuntu server 설치하기 (0) | 2022.10.11 |
VMware tool 설치와 drag and drop 설정 (0) | 2022.08.29 |
Metasploit update and 기본 사용법 (0) | 2022.08.24 |
Comments