(一)服务器ISPSrv工作任务
0.基础配置
# 先配置网络能远程连接
root@localhost:~# vim /etc/network/interfaces
...
auto ens32
iface ens32 inet static
address 81.6.63.100/24
systemctl restart networking
hostname -I
# 81.6.63.100
ip route
# 81.6.63.0/24 dev ens32 proto kernel scope link src 81.6.63.100
# ssh远程登录配置
root@localhost:~