반응형
우분투 CLI(Command Line Interface) 환경에서 네트워크 설정(고정 IP 할당)
테스트 환경
$ lsb_release -d
Description: Ubuntu 20.04 LTS
$ getconf LONG_BIT
64
고정 IP 설정
- ip addr 명령으로 네트워크 인터페이스 이름 확인
일반적으로 eth0, eth1, wlan0 등과 같은 인터페이스 이름이 사용됩니다.
ip addr
$ ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
...
2: ens33: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
...
- 00-installer-config.yaml 편집
IP 주소, 서브넷 마스크, 게이트웨이, DNS 서버 등을 설정합니다.
vim /etc/netplan/00-installer-config.yaml
$ vim /etc/netplan/00-installer-config.yaml
# This is the network config written by 'subiquity'
network:
ethernets:
ens33:
addresses:
- 192.168.100.10/24
gateway4: 192.168.100.1
nameservers:
addresses:
- 8.8.8.8
version: 2
- netplan apply 명령어로 변경 사항을 적용
netplan apply
728x90
반응형
'리눅스' 카테고리의 다른 글
[mysql] 원격서버(clinet)에 설치되어 있는 MySQL Server로 접속하기 (1) | 2013.06.26 |
---|---|
zip 명령어 (0) | 2013.06.26 |
ifconfig 명령어 (0) | 2013.06.25 |
[리눅스] CentOS 6 netinstall URL (1) | 2013.06.25 |
MySQL에서 특정 테이블을 덤프(백업)하는 방법 (1) | 2013.06.25 |