IP地址:192.168.1.10
子网掩码:255.255.255.0
网关:192.168.1.1

我们需要编辑 /etc/network/interfaces

auto eth0 #开机自动连接网络
iface lo inet loopback
allow-hotplug eth0
iface eth0 inet static #static表示使用固定ip,dhcp表述使用动态ip
address 10.10.10.155 #设置ip地址
netmask 255.255.255.0 #设置子网掩码
gateway 10.10.10.2 #设置网关

service networking restart #重启网络

分类: Linux技术

0 条评论

发表评论