netplan 2 nic 设置

netplan 2 nic 设置

我有一台带有集成千兆以太网和 PCI-e 千兆以太网卡的家用服务器。我想拥有自己的 LAN,与 ISP 路由器分开。我不想使用专用路由器,我想用这台机器来做。最终,我想让整个家庭网络都使用 VPN 服务。我已经在 enp1s0 网卡上运行了(可能设置正确的)DHCP 服务。

我不明白为什么我的 netplan 设置不起作用。我需要路由或限制我的流量吗?

# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
  version: 2
  renderer: networkd
  ethernets:
#integrated NIC connected to ISP router
    enp3s0:
     dhcp4: no
     dhcp6: no
     addresses: [192.168.0.5/24]
     gateway4: 192.168.0.1
     nameservers:
       addresses: [192.168.0.6]

#pci-e nic, connected to local lan switch
    enp1s0:
     dhcp4: no
     dhcp6: no
     addresses: [192.168.1.1/24]
     gateway4: 192.168.0.5
     nameservers:
       addresses: [192.168.0.6]
    routes:
    - to: 192.168.0.5/24
      via: 192.168.1.1

在此处输入图片描述

相关内容