Cloud Engineering/Linux ๐ง
[Linux/๋ฆฌ๋ ์ค] host์ ip ์ค์ ํ๊ธฐ
minjiwoo
2023. 1. 20. 10:35
728x90
ํ์ฌ ์์ฑ๋์ด ์๋ connection ๋ฆฌ์คํธ๋ฅผ ๋ณผ ์ ์๋ค.
nmcli con show
enp0s3 ์ธํฐํ์ด์ค์ ip์ฃผ์๋ฅผ 10.0.2.10์ผ๋ก ๋ฐ๊พธ๋ ค๊ณ ํ๋ค.
nmcli connection modify enp0s3 ipv4.addresses 10.0.2.10/24
gateway๋ฅผ ์ค์ ํ๋ค.
nmcli connection modify enp0s3 ipv4.gateway 10.0.2.1
dns ์๋ฒ๋ฅผ ์ค์ ํ๋ค.
nmcli connection modify enp0s3 ipv4.dns 8.8.8.8
method๋ฅผ manual ๋ก ๋ฐ๊พผ๋ค.
nmcli connection modify enp0s3 ipv4.method manual
๋คํธ์ํฌ connection ์ค์ ์ ์ ๋ฐ์ดํธํ๋ค.
nmcli connection up enp0s3
728x90