ubuntu18.04修改静态IP地址

修改网卡名称

查看原网卡名称为ens33
[[email protected] ~]#ifconfig

ens33: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.8.234  netmask 255.255.255.0  broadcast 192.168.8.255
        inet6 fe80::20c:29ff:fe36:658a  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:36:65:8a  txqueuelen 1000  (Ethernet)
        RX packets 280745  bytes 342084244 (342.0 MB)
        RX errors 378  dropped 0  overruns 0  frame 0
        TX packets 128466  bytes 22465197 (22.4 MB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
        device interrupt 19  base 0x2000 

修改网卡名称为eth0,修改内核参数

[[email protected] ~]#vim /etc/default/grub
GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=2
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT=""
#在引号之间增加如下几行
GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"

生成grub配置文件

[[email protected] ~]#grub-mkconfig -o /boot/grub/grub.cfg
Sourcing file `/etc/default/grub‘
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.15.0-29-generic
Found initrd image: /boot/initrd.img-4.15.0-29-generic
done

重启系统再次查看网卡名称

[[email protected] ~]#ifconfig
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.8.234  netmask 255.255.255.0  broadcast 192.168.8.255
        inet6 fe80::20c:29ff:fe36:658a  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:36:65:8a  txqueuelen 1000  (Ethernet)
        RX packets 280745  bytes 342084244 (342.0 MB)
        RX errors 378  dropped 0  overruns 0  frame 0
        TX packets 128466  bytes 22465197 (22.4 MB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
        device interrupt 19  base 0x2000  

修改IP地址为静态IP地址

编辑配置文件

[[email protected] ~]#vim /etc/netplan/01-netcfg.yaml
network:
  version: 2
  renderer: networkd
  ethernets:
    #网卡名称
    eth0:
       addresses: [192.168.8.234/24]
       gateway4: 192.168.8.2
       nameservers:
           addresses: [8.8.8.8]

使配置文件生效

[[email protected] ~]#netplan apply
[[email protected] ~]#ifconfig
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.8.234  netmask 255.255.255.0  broadcast 192.168.8.255
        inet6 fe80::20c:29ff:fe36:658a  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:36:65:8a  txqueuelen 1000  (Ethernet)
        RX packets 280745  bytes 342084244 (342.0 MB)
        RX errors 378  dropped 0  overruns 0  frame 0
        TX packets 128466  bytes 22465197 (22.4 MB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
        device interrupt 19  base 0x2000

永久修改DNS地址

[[email protected] ~]#vim /etc/systemd/resolved.conf
#取消注释,并且加入DNSIP地址
[Resolve]
DNS=8.8.8.8
#FallbackDNS=
#Domains=
#LLMNR=no
#MulticastDNS=no
#DNSSEC=no
#Cache=yes
#DNSStubListener=yes

原文地址:https://blog.51cto.com/14163901/2418412

时间: 2024-10-07 18:05:53

ubuntu18.04修改静态IP地址的相关文章

乌班图的世界——ubuntu18.04设置静态ip阶段总结

系统环境:ubuntu18.04 LTS工具:SecureCRT 6.2.0 (build 195) .virtualbox5.2.18 r124319(Qt5.6.2)--------------------------------------------------------------------这段时间断断续续在乌班图谜一样的世界打转转,为了能从SecureCRT连到虚拟机virtualbox,设置静态IP先从"sudo vi /etc/network/interfaces"

Ubuntu-12.04-server 配置修改静态 IP地址

前几天在装Ubuntu 12.04 Server版系统的服务器时IP地址写错了,导致服务器不能上网,今天重新修改了一下IP地址,这里做一个总结. 1.配置静态IP地址 sudo vi /etc/network/interfaces 原有内容默认使用DHCP分配IP,如下 auto lo iface lo inet loopback auto eth0 iface eth0 inet dhcp 这里将其修改,将eth0的IP分配方式修改为静态分配(static)后,为其设定IP地址.子网掩码.网关

为VMware虚拟机内安装的Ubuntu 16.04设置静态IP地址【转】

1.安装环境VMware 10.0.4 build-2249910Ubuntu 16.04 x86_64 2.在VMware中,配置网络环境VMware在默认安装完成之后,会创建三个虚拟的网络环境:VMnet0.VMnet1和VMnet8.其类型分别为:桥接网络,Host-only和NAT.其中,NAT表示VMWware内安装的Ubuntu将会在一个子网中,VMware通过网络地址转换,通过物理机的IP上网.这里,我们选择NAT方式,来实现Ubuntu的静态IP地址配置.打开VMware,在顶部

linux -- Ubuntu修改静态IP地址重启后无法上网的解决

ubuntu设置静态IP地址后,上不了网 文章中也提到,如果是在/etc/resolv.conf添加DNS,由于Ubuntu 有一个 resolvconf 服务,如果重启它,那么 /etc/resolv.conf 的内容会被修改成默认的样子,文件里也有提示文字:“DO NOT EDIT THIS FILE BY HAND -- YOUR CHANGES WILL BE OVERWRITTEN”,所以不能直接修改 /etc/resolv.conf. 还有一点要注意的就是,/etc/resolv.c

如何修改静态IP地址和动态IP地址

通俗的说,静态IP就是给你的电脑分配一个不会变的IP地址,而动态IP就是路由器随机分配一个IP地址给你:静态IP的好处就是连接稳定,例如秒连WiFi(其实一般和动态差不多),而动态IP就简单,用户不需要设置就可以连接别的局域网,但是人多的时候可能会出现IP冲突导致连不上.那么到底哪个好,就要看在什么时候了.下面我就给大家讲一下如何转换静态和动态IP地址.以win8.1为例. 在桌面找到"网络"这个图标,按鼠标右键,点击"属性"  在新窗口中的左上方找到"更

如何修改静态IP地址

1)登陆centos系统,输入ifconfig查看自己本机IP地址信息?????2)修改配置文件##(/etc/sysconfig/network-scripts/ifcfg-ens33)????3) 添加下列配置信息?IPADDR=192.168.1.99 NETMASK=255.255.255.0 NM_CONTROLLED=no GATEWAY=192.168.1.1 BROADCAST=192.168.1.255 DNS1=8.8.8.8???????? BOOTPROTO=static

虚拟机ubuntu18.04设置静态IP

说明: 网关:192.168.8.2 待设置静态IP:192.168.8.25 1.编辑:vi /etc/netplan/01-network-manager-all.yaml 打开以后内容如下: # Let NetworkManager manage all devices on this systemnetwork: version: 2 renderer: NetworkManager 增加下面内容: ethernets: ens33: #配置的网卡名称 dhcp4: no #dhcp4关

centos7修改静态ip地址

今天逛园的时候突然发现这篇有关网络参数修改的文章写的很好,简单又使用,格式也很好的,所以就引用过来了. http://www.cnblogs.com/hongdada/p/6666932.html 原文地址:https://www.cnblogs.com/fyc001/p/10117204.html

ubuntu14.04配置静态IP地址

1. 找到文件并作如下修改:vim /etc/network/interfaces修改如下部分:# interfaces(5) file used by ifup(8) and ifdown(8)auto loiface lo inet loopbackauto eth0iface eth0 inet staticaddress 192.168.108.50gateway 192.168.108.2 #netstat -r 命令或者    nm-tool   查看现有的netmask 255.2