查看ip
1 | ip addradd |
修改为静态IP
1 | vi /etc/network/interfaces |
可以看出默认为DHCP
,可以将其注释掉,或者这改成static
静态IP
DHCP
版本
1 | allow-hotplug enp0s3 |
静态IP版本
1 | iface enp0s3 inet static |
重启
1 | reboot |
查看ip
1 | ip addradd |
修改为静态IP
1 | vi /etc/network/interfaces |
可以看出默认为DHCP
,可以将其注释掉,或者这改成static
静态IP
DHCP
版本
1 | allow-hotplug enp0s3 |
静态IP版本
1 | iface enp0s3 inet static |
重启
1 | reboot |