我有一台启用了 IPv4 和 IPv6 网络的 Ubuntu 服务器。目前,网络配置如下:
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 45.***.***.**1/24
gateway 45.***.***.***
# This is an IPv6 interface
iface eth0 inet6 auto
up ip addr add 192.168.***.**1/17 dev eth0 label eth0:1
down ip addr del 192.168.***.**1/17 dev eth0 label eth0:1
我想要网络中的另一台服务器,它有 IP
45.***.***.**2 and
192.168.***.**2
45...
能够访问此服务器在其私有 IP 上的任何端口。应丢弃进出此服务器公共 IP ( ) 的流量。环回当然应保持不变。
目前没有 IP 表条目或 ufw 规则。我想使用 ufw,因为它很简单。我如何才能如上所述锁定此服务器?