如何使用电缆连接前端和后端 Linux 服务器?

如何使用电缆连接前端和后端 Linux 服务器?

我正在尝试将 Web 服务器 A 与数据库服务器 B 连接起来,以使它们的延迟尽可能小。两台服务器都运行 Debian,位于同一机架上,并通过第二个以太网端口上的电缆连接在一起。以下是 /etc/network/interfaces 规范。

服务器 A(正面)

auto lo
iface lo inet loopback

# The primary network interface
allow-hotplug eth0
iface eth0 inet static
        address 11.22.33.5
        netmask 255.255.255.248
        network 11.22.33.3
        broadcast 11.22.33.10
        gateway 11.22.33.4
        # dns-* options are implemented by the resolvconf package, if installed
        dns-nameservers 8.8.8.8

服务器 B(后)

auto lo
iface lo inet loopback
auto eth0

# The primary network interface
allow-hotplug eth0
iface eth0 inet static
        address 11.22.77.8
        netmask 255.255.255.248
        network 11.22.77.6
        broadcast 11.22.77.23
        gateway 11.22.77.7
        # dns-* options are implemented by the resolvconf package, if installed
        dns-nameservers 11.22.77.89

我想知道我应该对接口文件进行哪些更改,以便使服务器 A 通过电缆直接与 B 通信。谢谢

答案1

确保 IP 地址位于同一 IP 网络上。在您提供的配置片段中,它们不在同一 IP 网络上。

因此有效的配置是:

# Server A
iface eth0 inet static
        address 11.22.33.1
        netmask 255.255.255.248
        network 11.22.33.0
        broadcast 11.22.33.7

# Server B
iface eth0 inet static
        address 11.22.33.2
        netmask 255.255.255.248
        network 11.22.33.0
        broadcast 11.22.33.7

了解 IP 网络、其大小以及网络掩码的工作原理。您给出的配置片段毫无意义。network 11.22.33.3不是网络(网络总是以偶数开头)并且11.22.77.23 不是11.22.77.6网络掩码为 的网络的广播地址255.255.255.248

答案2

由于没有进行路由,因此两者都不应设置网关。将两个接口配置为位于同一子网。然后在两台机器上创建一个指向对方并绑定到第二个接口的持久静态路由。man route如果您不确定如何操作,应该可以帮助您完成这部分。

相关内容