两种方法:
1.直接命令行设置,但是重启后失效
设置IP 和 子网掩码
sudo ifconfig eth1 211.87.235.204 netmask 255.255.255.0
设置网关
sudo route add default gw 211.87.235.1
2.在 debian 默认配置文件里修改
/etc/network/interfaces
设置 ip 掩码 网关
#开机自动激活 eth0
auto eth0
#iface eth0 inet dhcp
iface eth0 inet static
address 211.87.235.204
netmask 255.255.255.0
gateway 211.87.235.1
/etc/resolv.conf
设置 DNS 服务器 (网关地址)
# Generated by NetworkManager
nameserver 211.87.235.1
nameserver 202.194.15.12
最后 reboot 或者 /etc/init.d/networking restart
3.实验室一般网络设置都是 用dhcp服务 动态设置 ip
#开机自动激活 eth0
auto eth0
#配置eth0 为dhcp 自动获取
iface eth0 inet dhcp
# 开机自动激lo接口
auto lo
# 配置lo接口为环回口
iface lo inet loopback这里写代码片