Vmware 虚拟机自定义IP地址 - UbuntuServer2204
设置网段
选择喜欢的网段, 例如: 166
自定义 IP地址
打开虚拟机, 输入命令查看网卡名
ip addr
查看网卡配置文件
ls -al /etc/netplan/
编辑网卡配置文件
sudo vim /etc/netplan/00-installer-config.yaml
配置内容, (不能直接使用, 需要修改网卡名, 网段,自定义)
# This is the network config written by 'subiquity'
network:
version: 2
ethernets:
ens32:
dhcp4: no
dhcp6: no
addresses:
- 192.168.88.66/24
routes:
- to: default
via: 192.168.88.2
nameservers:
addresses:
- 223.5.5.5
- 8.8.8.8
使网卡配置生效
sudo netplan apply
IP 修改之后, 远程工具Xshell会自动断开, 需要重新配置Xshell链接