Debian linux系统网络配置步骤
1、我一般采用静态分配地址的配置编辑 vi /etc/network/interfaces------------------------------------# The primary network interface (配置主网络接口)#开机自动激活eth0接口auto eth0#配置eth0接口为静态设置IP地址iface eth0 inet staticaddress
·
1、我一般采用静态分配地址的配置
编辑 vi /etc/network/interfaces
------------------------------------
# The primary network interface (配置主网络接口)
#开机自动激活eth0接口
auto eth0
#配置eth0接口为静态设置IP地址
iface eth0 inet static
address 192.168.0.88
gateway 192.168.0.1
netmask 255.255.255.0
----------------------------
2、设置主机名称(hostname)
查看当前主机的主机名称:
设置当前主机的主机名称: /bin/hostname 新主机名
3、配置DNS
编辑 vi
内容为
nameserver dns的ip地址
更多推荐
已为社区贡献1条内容
所有评论(0)