无法通过一个接口访问服务器

无法通过一个接口访问服务器

我有一个 ubuntu 服务器和一个 windows 服务器,都连接在两个 VLAN 中。

两台机器都有两个网卡。

  • VLAN2 的方案为 192.168.2.0 /24
  • VLAN100 有 172.20.100.64 /27。

我能够从 VLAN2 网络 ping 通 Windows 服务器 VLAN100 地址,但无法 ping 通 ubuntu 服务器 VLAN100 地址。

我必须进入 VLAN100 才能访问 ubuntu 服务器。

我该如何解决这个问题? 网络片段

我的 /etc/network/interfaces 文件配置:

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

#source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback



auto eno1
    iface eno1 inet static
    address 192.168.2.252
    netmask 255.255.255.0
    gateway 192.168.2.1

auto eno2
    iface eno2 inet static
    address 172.20.100.65
    netmask 255.255.255.224

相关内容