반응형
우분투 내부망 아이피 변경방법 정리
리눅스 종류마다 아이피 설정 방법이 다름
네트워크 세팅을 위해 루트 권한으로 /etc/netplan
으로 이동 후00-installer-config.yaml
파일 편집 (없다면 touch
로 생성 후 편집)
# This is the network config written by 'subiquity'
network:
ethernets:
eth0:
addresses: [192.168.10.17/24]
gateway4: 192.168.10.1
nameservers:
addresses: [8.8.8.8]
version: 2
위 내용은 아래 route
명령어의 결과로 나온 주소를 적는다address
에는 바꾸고자 하는 아이피 주소 위 코드에서는 17geateway
는 route 의 값
root@user: route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.10.1 0.0.0.0 UG 0 0 0 eth0
192.168.10.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
반응형
'Server > Linux' 카테고리의 다른 글
[우분투] 리눅스 Postgis 전역설치 (1) | 2024.09.03 |
---|---|
[우분투] 도커 설치하기 (0) | 2024.07.03 |
[우분투]리눅스 노드 원하는 버전 설치 (1) | 2024.07.03 |
[우분투] 리눅스 Postgresql, Postgis 설치 (0) | 2024.07.03 |
[우분투] 리눅스 총 용량 다를 때 (1) | 2024.07.03 |