«

怎么设置ubuntu为静态ip地址

时间:2024-4-21 09:24     作者:韩俊     分类: Linux


这篇文章主要介绍了怎么设置ubuntu为静态ip地址的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇怎么设置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


标签: linux

热门推荐