如何让静态 IP 在网络上可用

如何让静态 IP 在网络上可用

我在 raspi 4 model B 中运行 ubuntu server 20.04 LTS。

我想在一个 raspi 中设置一个静态 IP,并通过该 IP 运行 API,并且必须可以通过我所连接的网络访问。我在两个设备中都有 wlan0 和 wlan1。

例如,我想将设备 1 的 wlan0(具有静态 ip)连接到路由器,并且设备 2 也将连接到同一个路由器,并且我必须能够在设备 2 中访问设备 1 的静态 ip

这可能吗?我尝试了一些配置,但无法远程连接到 IP

编辑:yaml 文件的内容如下

network:
  ethernets:
    eth0:
      dhcp4: true
      optional: true
  version: 2
  wifis:
    wlan0:
      dhcp4: no
      dhcp6: no
      addresses: [192.168.0.200/24]
      gateway4: 192.168.0.1
      nameservers:
        addresses: [8.8.8.8,8.8.4.4]
      access-points:
        "SSID":
          password: *********
    wlan1:
      access-points:
        "SSID":
          password: *********
      dhcp4: true
      optional: true

相关内容