VM Net

PUB-R

왜 Adapt 2가 ens39이고, Adapt 4가 ens37인거임?????????

vi /etc/network/interfaces

### vi ###
auto ens33 ens37 ens38 ens39
iface ens33 inet static
	address 100.0.0.2/30

iface ens37 inet static
	address 100.0.0.6/30

iface ens38 inet static
	address 100.0.0.10/30

iface ens39 inet static
	address 1.1.1.254/24
### vi ###

systemctl restart networking
systemctl status networking

vi /etc/sysctl.conf

### vi ###
net.ipv4.ip_forward = 1
### vi ###

sysctl -p

MAIN-R