connect: Network is unreachable
# 귀찮아서 root 계정에서 수정함
:~# dhclient 인터페이스이름`
:~# vi /etc/netplan/00-installer-config.yaml
:~# netplan apply
결론적으로, 문제는 network script 설정의 오류였다.
enp0s3 > NAT ,DHCP true 설정
enp0s8 > static ip 넣기
# /etc/netplan/00-installer-config.yaml
network
etherenets;
enp0s3:
dhcp4 : true
enp0s8:
dhcp4 : false
addresses: [192.168.x.x/cidr]
nameservers:
addresses: [8.8.8.8,8.8.4.4]
routes:
- to : default
via : 내 pc gw 설정함
version :2
스페이스 잘못누르면 netplan 이 syntax 오류처럼 코드 인식을 못해서 하드코딩^^ 하는 빡치는 경험을 할 수있으므로 꼭 간격 맞추기
netplan 내의 network 설정 파일 변경으로 인터넷 성공🥰
Configure an Ubuntu 22.04 / 20.04 Virtual Machine for Web Development
여전히 안되는 ssh 연결 port forwarding 해보기로함
vm - portforwarding process
포트포워딩 rule 넣으니 바로 성공함...
국비 들을땐 port fowarding 안넣어도 성공했었던거 같은데..?
- 강사님께 추가문의드릴예정
ifconfig 이용해서 ip 수동 할당 하는법
ifconfig 인터페이스이름 ip주소 netmask 255.255.255.0 up
ifconfig 인터페이스이름 ip주소 netmask 255.255.255.0 up $route 생략
혹시 gateway ip 설정 문젠가.. ?
route add default gw ip주소 interface이름
route add default gw ip주소 netmask 2진수 dev interface 이름