Ubuntu配置静态IP

文章目录

  • Ubuntu配置静态IP
  • 一、前言
    • 1.场景
    • 2.环境
  • 二、正文
    • 1)定位Netplan配置文件
    • 2)Netplan配置文件
    • 3)验证配置

Ubuntu配置静态IP

一、前言

1.场景

  • 在 Ubuntu 上设置静态 IP 和 DNS

2.环境

  • Ubuntu Server 版本:ubuntu-22.04.3-live-server-amd64.iso

Ubuntu Server:https://ubuntu.com/download/server

二、正文

1)定位Netplan配置文件

  • Netplan的配置文件通常位于/etc/netplan/目录下
ls /etc/netplan/

2)Netplan配置文件

  • 编辑 netplan 配置文件
sudo nano /etc/netplan/01-netcfg.yaml

写入内容

network:
  version: 2
  renderer: networkd
  ethernets:
    ens33: # 网络接口名称,根据实际情况修改
      dhcp4: no
      addresses:
        - 192.168.28.55/24 # 静态IP地址和子网掩码
      gateway4: 192.168.10.1 # 默认网关
      nameservers:
        addresses:
          - 8.8.8.8
          - 114.114.114.114 # DNS服务器
      dhcp4: no
      dhcp6: no
  • 应用新的网络配置:
sudo netplan apply

3)验证配置

ip addr show ens33
  • 并检查网络连接
ping -c 4 baidu.com

你可能感兴趣的:(#,Ubuntu,ubuntu,tcp/ip,数据库)