Hexo 博客系列(三)配置 Debian 静态IP

查看ip

1
ip addradd

修改为静态IP

1
vi /etc/network/interfaces

可以看出默认为DHCP,可以将其注释掉,或者这改成static静态IP

DHCP版本

1
2
allow-hotplug enp0s3
iface enp0s3 inet dhcp

静态IP版本

1
2
3
4
iface enp0s3 inet static
address 192.168.3.200
netmask 255.255.255.0
gateway 192.168.3.100 #注意这里的网关,通常为1,我的较特殊为100

重启

1
2
3
reboot
# 重启后查看是否生效
ip addr