linux debian 配置网卡

linux debian 配置网卡

 

输入命令:

vi /etc/network/interfaces

 

修改:

auto eth0
iface eth0 inet static
address ip地址
netmask 子网掩码
gateway 网关

 

保存退出(wq)

 

重启网卡:

/etc/init.d/networking restart

 

如果不能够访问外网,则设置DNS服务器:

vi /etc/resolv.conf

 

修改:

nameserver    对应的dns(如:202.106.196.115)

nameserver    8.8.8.8

 

保存退出(wq)

 

 

你可能感兴趣的:(linux,dns,网卡,networking)