码迷,mamicode.com
首页 > 其他好文 > 详细

Debian中配置静态IP

时间:2018-09-11 23:50:37      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:deb   情况   etc   dhcp   dhcp服务   服务   name   dns服务   地址   

默认安装Debian的时候是用dhcp服务的,有时我们需要设置一下静态IP。

一共涉及两个文件的修改

/etc/network/interfaces

auto eth0
#iface eth0 inet dhcp
iface eth0 inet static
        address 192.168.2.121
        netmask 255.255.255.0
        gateway 192.168.2.2

IP地址,掩码,gateway什么的,你应该已经知道,或者可以咨询当地网络管理员

/etc/resolv.conf里面设置DNS服务器,在这种情况下应该就是gateway的地址

nameserver 192.168.2.2            #因为我这里网关就是DNS服务器所以是相同的

最后reboot或者#/etc/init.d/networking restart 

Debian中配置静态IP

标签:deb   情况   etc   dhcp   dhcp服务   服务   name   dns服务   地址   

原文地址:https://www.cnblogs.com/yxy666/p/9631487.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!