Firefly开源社区

标题: ubuntu18.04 如何通过命令行固定IP [打印本页]

作者: 闫涛    时间: 2020-3-16 15:54
标题: ubuntu18.04 如何通过命令行固定IP
ubuntu18.04 如何通过命令行固定IP呢?
作者: 闫涛    时间: 2020-3-16 16:21
本帖最后由 闫涛 于 2020-3-16 16:25 编辑


ubuntu版本:Distributor ID: Ubuntu
Description:    Ubuntu 18.04.1 LTS
Release:        18.04
Codename:       bionic



sudo apt-get install netplan.io
然后自己建一个01-netcfg.yaml 文件
内容为:
network:
version: 2
renderer: networkd
ethernets:
  eth0:
   dhcp4: no
   addresses: [192.168.1.203/24]
   gateway4: 192.168.1.1
   nameservers:
    addresses: [8.8.8.8,8.8.8.8]
ip信息,网关,dns,网卡信息根据自己的情况改。
然后把这个文件防到 /etc/netplan 下
执行sudo  netplan try  或者sudo netplan apply  就可以了  
sudo  netplan try 会 检查你的01-netcfg.yaml文件是不是有问题如果没有问题就会生效。


作者: songweite    时间: 2021-6-11 00:26
格式调整
arm ubuntu18.04LTS
  1. # This file describes the network interfaces available on your system
  2. # For more information, see netplan(5).
  3. network:
  4.   version: 2
  5.   renderer: networkd
  6.   ethernets:
  7.     enp0s3:
  8.      dhcp4: no
  9.      addresses: [192.168.1.222/24]
  10.      gateway4: 192.168.1.1
  11.      nameservers:
  12.        addresses: [8.8.8.8,8.8.4.4]
复制代码





欢迎光临 Firefly开源社区 (https://dev.t-firefly.com/) Powered by Discuz! X3.1