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 |
29 | 30 | 31 |
Tags
- gcc 업데이트
- linux시간으로 변경
- c3 축 없애기
- 정규식 활용
- CentOS7
- python os
- 정규식 문자열 출력
- g++ 업데이트
- c3 초
- python popen
- influxdb 설치
- snmp
- regex_search
- 백준
- c3 second
- 1697
- gcc regex
- telegraf
- python subprocess
- c3 축 가리기
- subporcess path
- selinux port 등록
- grafana dashboard
- 정규식 컴파일
- snmp test
- c++ 정규식
- centos pyhon 설치
- InfluxDB
- semanage
- c3 step graph
Archives
- Today
- Total
리셋 되지 말자
[ubuntu] ubuntu 고정 ip 부여 본문
netplan
ubuntu 17 버젼부터는 /etc/network/interfaces 가 아닌 /etc/netplan을 이용한다.
netplan 경로 확인
ls /etc/netplan/
00-installer-config.yaml
virtualbox로 ubuntu 18.04-server 를 설치 했을 때의 netplan 경로의 모습이다. 위에 보이는 .yaml 파일 수정을 시작한다.
.yaml 파일 수정
- 변경 전
# This is the network config written by 'subiquity'
network:
ethernets:
enp0s3:
dhcp4: true
enp0s8:
dhcp4: true
version: 2
- 변경 후
# This is the network config written by 'subiquity'
network:
ethernets:
enp0s3:
dhcp4: true
enp0s8:
addresses:
- 192.168.0.50/24
version: 2
enp0s3는 NAT 네트워크 인터페이스이고, enp0s8은 virtualbox의 Host-Only Network 인터페이스이다.
192.168.0.35 였는데, 이를 192.168.0.50 로 변경한다. 이렇게 하면 고정 ip로 변경된다.
변경사항 적용
sudo netplan apply
위 명령어로 변경사항을 적용한다.
'Linux Tips' 카테고리의 다른 글
[Linux] sudo echo permission denied (0) | 2021.06.11 |
---|---|
[ubuntu] ubuntu mirror 변경하기 (0) | 2021.06.11 |
wget 다른 이름으로 저장 (0) | 2021.06.04 |
grep 결과 필드 분리 및 특정 필드 출력 (0) | 2021.05.31 |
ssh 접속 ECDSA key fingerprint 자동 등록 (0) | 2021.05.27 |
Comments