我对 firewalld、podman 和 UDP/Multicast 越来越疯狂。当我看到 UDP 数据包到达 podman 时;使用tcpdump
命令确认。似乎我无法使用自定义的 firewalld 区域进行配置,其名称knx_multicast
应仅在 UDP 数据包来自多播组时才接受224.0.23.12:3671
。
给定最小的例子,用Java编写:
import java.net.DatagramPacket;
import java.net.InetAddress;
import java.net.MulticastSocket;
import java.net.NetworkInterface;
public class Test {
public static void main(String[] args) throws Throwable {
final var group = InetAddress.getByName("224.0.23.12");
final var s = new MulticastSocket(3671);
final var ni = NetworkInterface.getByName("enp1s0");
s.setNetworkInterface(ni);
s.joinGroup(group);
System.out.println("Start listening ... @" + ni );
final var buf = new byte[1000];
DatagramPacket recv = new DatagramPacket(buf, buf.length);
s.receive(recv);
System.out.println(recv.getData());
s.leaveGroup(group);
s.close();
}
}
我将firewalld配置为:
knx_multicast (active)
target: default
icmp-block-inversion: no
interfaces:
sources: 224.0.23.12
services:
ports: 3671/udp
protocols:
masquerade: no
forward-ports:
source-ports:
icmp-blocks:
rich rules:
public (active)
target: default
icmp-block-inversion: no
interfaces: enp1s0
sources:
services: cockpit dhcpv6-client ssh
ports:
protocols:
masquerade: no
forward-ports:
source-ports:
icmp-blocks:
rich rules:
在 CentOS 8.1 上测试多播数据包
现在我首先在 CentOS 8.1 运行中进行了测试,它在我得到一些数据时工作(见:[B@61a52fbd
下文)
[root@PIT-Server ~]# javac Test.java && java Test
Start listening ... @name:enp1s0 (enp1s0)
[B@61a52fbd
在 CentOS 8.1 上使用 PODMAN 测试多播数据包
下一步是在 podman 容器中进行测试(图像:'adoptopenjdk/openjdk11:latest',在“Ubuntu 18.04.3 LTS”上运行),使用:podman run --rm -it --net host docker.io/adoptopenjdk/openjdk11 /bin/bash
在 podman 中,我还看到了来自 PIT-KNX(KNX 路由器)的 UDP 数据包。
root@PIT-Server:/tcpdump -i enp1s0 udp port 3671
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on enp1s0, link-type EN10MB (Ethernet), capture size 262144 bytes
19:49:35.583901 IP PIT-KNX.pit-router.3671 > 224.0.23.12.3671: UDP, length 17
19:49:36.032139 IP PIT-KNX.pit-router.3671 > 224.0.23.12.3671: UDP, length 18
... lines omitted ...
启动相同的 java 应用程序(在容器环境之外工作)我无法获取任何数据(“开始侦听”后没有字节数组到达)
root@PIT-Server:/# javac Test.java && java Test
Start listening ... @name:enp1s0 (enp1s0)
解决方法(防火墙)
在调查了几个小时/咖啡之后,我发现在 zone=knx_multicast 中允许端口是不够的。我也必须添加端口zone=public
,使用:firewall-cmd --add-port=3671/udp
。firewalld 的配置现在是:
knx_multicast (active)
target: default
icmp-block-inversion: no
interfaces:
sources: 224.0.23.12
services:
ports: 3671/udp
protocols:
masquerade: no
forward-ports:
source-ports:
icmp-blocks:
rich rules:
public (active)
target: default
icmp-block-inversion: no
interfaces: enp1s0
sources:
services: cockpit dhcpv6-client ssh
ports: 3671/udp <== ADDED!!!! (that one fixes the problem)
protocols:
masquerade: no
forward-ports:
source-ports:
icmp-blocks:
rich rules:
在 CentOS 8.1 上使用 PODMAN 重新测试多播数据包
通过重新运行 java 应用程序,我现在能够看到到达的 UDP 多播数据包(见:[B@61a52fbd
下文)
root@PIT-Server:/# javac Test.java && java Test
Start listening ... @name:enp1s0 (enp1s0)
[B@61a52fbd
我的问题......发生了什么?下一步?
谁能帮我理解问题到底是什么?为什么我也必须添加端口zone=public
?这是我这边的错误还是配置问题?如何在不将端口添加到的情况下解决它zone=public
?我有什么误解吗?
如果只添加一个新的 firewalld 区域(称为 ),我会更舒服knx_multicast
;并保持firewalldpublic
区域的配置不变。建议?
谢谢你,克里斯托夫