ubuntu服务器如何固定ip
❶ ubuntu 14.04 怎么设置静态ip
1. 找到文件并作如下修改:
sudo vim /etc/network/interfaces
修改如下部分:
auto eth0
iface eth0 inet static
address 192.168.0.117
gateway 192.168.0.1 #这个地址你要确认下 网关是不是这个地址
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
2. 修改dns解析
因为以前是dhcp解析,所以会自动分配dns服务器地址
而一旦设置为静态ip后就没有自动获取到的dns服务器了
要自己设置一个
sudo vim /etc/resolv.conf
写上一个公网的DNS
nameserver 202.96.128.86
(注意:8.8.8.8是谷歌的DNS服务器,但是解析速度慢,还是找到一个国内的dns来用)
3. 重启网卡:
sudo /etc/init.d/network restart
❷ ubuntu 怎么设置固定IP地址
首先设置IP
sudo gedit /etc/network/interface
将其内容删除
加上一下内容
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.1.47
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
保存
然后修改DNS
sudo gedit /etc/resolv.conf
将内容修改为
nameserver 202.112.14.151
nameserver 218.6.200.139
nameserver 61.139.2.69
查看dns
less /etc/resolv.conf
保存
重启网络连接
sudo /etc/init.d/networking stop
sudo /etc/init.d/networking start
sudo /etc/init.d/networking restart
查看路由相关信息:route -n
❸ Ubuntu18.04如何设置固定ip
Ubuntu17后固定ip的方式就发生了改变,变为了netplan方式进行设置。配置写在
/etc/network/interfaces里固定ip。配置写在了/etc/netplan/*-netcfg.yaml文件中,修改后不用重启机器,通过执行
让其生效,其中配置文件的内容按如下的修改。
各个字段的内容这里就不再强调了,按照上面的设置即可。
❹ 基于 Ubuntu16.04 设置固定IP
首先说明一下这个是在 mac 下的 vm 虚拟机上完成的
打开 vm 的偏好设置
在本地终端上输入 ifconfig
此时启动虚拟机是随机在192.168.219.3到192.168.219.254之间随机分配的,但是我们需要固定分配则需要在系统本身进行配置。
输入 sudo vim /etc/network/interfaces
在里面加入以下内容(原有内容需要清空)
下面来详细解释一下
完成之后只需要重启网络即可
❺ Ubuntu 16.04网络配置(静态IP)
打开虚拟机编辑/etc/network/interfaces文件
root@swift:/home/swift# cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto ens33#16.04的命名为ens33不是eth0
iface ens33 inet static#static表示静态
address 192.168.110.111 #IP地址
netmask 255.255.255.0 #子网掩码
gateway 192.168.110.2 #网关
dns-nameservers 61.139.2.69 #DNS
root@swift:/home/swift# /etc/init.d/networking restart
[ ok ] Restarting networking (via systemctl): networking.service.
root@swift:/home/swift#ping -c 4 www..com
PING www.a.shifen.com (180.97.33.108) 56(84) bytes of data.
64 bytes from 180.97.33.108: icmp_seq=1 ttl=128 time=51.1 ms
64 bytes from 180.97.33.108: icmp_seq=2 ttl=128 time=48.9 ms
64 bytes from 180.97.33.108: icmp_seq=3 ttl=128 time=49.4 ms
64 bytes from 180.97.33.108: icmp_seq=4 ttl=128 time=51.3 ms
--- www.a.shifen.com ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3006ms
rtt min/avg/max/mdev = 48.966/50.215/51.304/1.041 ms
root@swift:/home/swift#
到此配置完成可以连接网络进行安装和更新了。
如果重启服务后还是不能连接网络
编辑/etc/resolvconf/resolv.conf.d/目录下的base head两个文件
在末尾追加DNS
例如:
nameserver 61.139.2.69#使用当地网络服务商提供的DNS
修改后重启网络服务或重启虚拟机(reboot、init 6、shutdown -r now等多种方法)。
❻ ubuntu 怎么设置固定IP地址
首先设置IPx0dx0asudo gedit /etc/network/interfacex0dx0a x0dx0a将其内容删除x0dx0a x0dx0a加上一下内容x0dx0a x0dx0aauto lox0dx0aiface lo inet loopbackx0dx0a x0dx0aauto eth0x0dx0aiface eth0 inet staticx0dx0aaddress 192.168.1.47x0dx0anetmask 255.255.255.0x0dx0anetwork 192.168.1.0x0dx0abroadcast 192.168.1.255x0dx0agateway 192.168.1.1x0dx0a x0dx0a保存x0dx0a x0dx0a然后修改DNSx0dx0asudo gedit /etc/resolv.confx0dx0a x0dx0a将内容修改为x0dx0a x0dx0anameserver 202.112.14.151x0dx0anameserver 218.6.200.139x0dx0anameserver 61.139.2.69x0dx0a 查看dnsx0dx0aless /etc/resolv.confx0dx0a保存x0dx0a x0dx0a重启网络连接x0dx0asudo /etc/init.d/networking stopx0dx0asudo /etc/init.d/networking startx0dx0asudo /etc/init.d/networking restartx0dx0a x0dx0a查看路由相关信息:route -n
❼ 虚拟机 ubuntu 怎么设置固定ip
修改配置文件/etc/network/interfaces
root@ubuntu:~# sudo gedit /etc/network/interfaces
添加以下内容:
auto eth0 #设置自动启动eth0接口
iface eth0 inet static #配置静态IP
address 192.168.11.88 #IP地址
netmask 255.255.255.0 #子网掩码
gateway 192.168.11.1 #默认网关.
想要了解更多关于linux的资讯和文章请关注《linux就该这么学》。
❽ VMware workstation Ubuntu设置固定ip地址
注意 配置中的网关地址必须是 虚拟网络编辑器 中设置的网关地址
ens33:配置的网卡的名称
addresses:配置的静态ip地址和掩码
dhcp4: 关闭DHCP,如果需要打开DHCP则写yes
gateway4: 网关地址
nameservers->addresses:DNS服务器地址,多个DNS服务器地址需要用英文逗号分隔开
❾ ubuntu 怎么设置固定IP地址
静态IP地址配置如下(假设通过eth1上网) # The primary network interface auto eth1 iface eth1 inet static //指定为static address 192.168.3.90 //IP地址 gateway 192.168.3.1 //网关 netmask 255.255.255.0 //子网掩码 同样需要重启 sudo /etc/init.d/networking restart DNS 如果有必要,配置DNS sudo gedit /etc/resolv.conf nameserver 192.168.3.2
❿ 为Ubuntu 20.04 设置静态IP简明教程(和把大象装冰箱一样简单)
最近需要折腾K8S,而折腾K8S的第一步就是为每台主机设置静态IP, 本文以Ubuntu20.04为例,提供一种为Linux设置静态IP的简明教程。
本文Ubuntu20.04开始被随机分配的ip为 10.211.56.6 ,我们的目的是,关闭自由分配的配置选项,将主机的IP设置为静态ip 10.211.56.10
把大象装冰箱,总共分几步 ?
第1步:把冰箱门打开
第2步:把大象装进去!
第3步:把冰箱门关上
为Ubuntu 20.04 设置静态IP 和 把大象装冰箱 一样简单(手动狗头)
如果ifconfig命令无法使用, 请运行以下命令安装net-tools
如上图所示:网卡名为 enp0s5 , 当前ip 10.211.55.6 , 子网掩码 255.255.255.0 , 网关地址 10.211.55.1
旧 00-installer-config.yaml 的内容为:
更新后的 00-installer-config.yaml内容为:
如果你是一个喜欢折腾电子设备的人,为设备设置静态IP, 可以让你更方便的标记和控制家中的电子设备。
当然设置静态IP也有一定风险,如果你给局域网下两台设备设置了同样的IP, 那两台设备就会打架,相互抢占IP,导致设备断网。
我的建议是,对于没有固定IP需求的设备,设备使用默认的DHCP协议,让路由器自动分配IP就好。
https://www.v2fy.com/p/2022-01-01-ip-1641016585000