如何设置ubuntu为静态ip地址 ubuntu怎么设置静态ip地址

主机教程 建站分享 2年前 (2022-11-19) 215次浏览

文章摘要:如何设置ubuntu为静态ip地址 ubuntu怎么设置静态ip地址

设置ubuntu为静态ip地址的方法: 1.打开终端命令行模式。 2.输入以下命令获取网卡名称。 ifconf […]

设置ubuntu为静态ip地址的方法:

1.打开终端命令行模式。

2.输入以下命令获取网卡名称。

ifconfig

3.再输入以下命令修改网卡配置文件。

sudo vim /etc/network/interfaces

例如:

# The primary network interface

# auto ens33

# iface ens33 inet dhcp //需要注释掉

auto ens33 //网卡名称

iface ens33 inet static //设置为静态

address 192.168.0.89 //静态ip地址

netmask 255.255.255.0 //子网掩码

gateway 192.168.0.1 //网关

4.再输入以下命令修改DNS配置。

sudo vim /etc/resolvconf/resolv.conf.d/head

5.再输入以下命令重启网络服务。

sudo /etc/init.d/networking restart

6.若出现“The remote system refused the connection.”错误,需要安装ssh服务。

sudo apt-get install openssh-server


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:如何设置ubuntu为静态ip地址 ubuntu怎么设置静态ip地址
文章链接:http://www.7966.org/post/13266.html
转载请注明出处

喜欢 (0)