具有双接口的服务器。
One(eht0) 用于为互联网用户提供 http/ssh 服务的 WAN。
另一个(eth1)用于接收来自内网的组播数据。
218.108.132.177是公网网关。
125.210.198.1 是专用网络网关。
233.49.3.*/24 是多播地址。
10.0.11.*/24 是组播数据的来源。
当路由表如下图时,ffmpeg 无法从 eth1 读取 udp 数据,ffmpeg 挂了:
rrca@rcasnap02:~$ route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
218.108.132.176 * 255.255.255.252 U 0 0 0 eth0
125.210.198.0 * 255.255.255.240 U 0 0 0 eth1
default 218.108.132.177 0.0.0.0 UG 100 0 0 eth0
default 125.210.198.1 0.0.0.0 UG 100 0 0 eth1
或者
rrca@rcasnap02:~$ route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
218.108.132.176 * 255.255.255.252 U 0 0 0 eth0
125.210.198.0 * 255.255.255.240 U 0 0 0 eth1
default 218.108.132.177 0.0.0.0 UG 100 0 0 eth0
10.0.11.0 125.210.198.1 0.0.0.0 UG 100 0 0 eth1
或者
rrca@rcasnap02:~$ route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
218.108.132.176 * 255.255.255.252 U 0 0 0 eth0
125.210.198.0 * 255.255.255.240 U 0 0 0 eth1
default 218.108.132.177 0.0.0.0 UG 100 0 0 eth0
233.49.3.0 125.210.198.1 255.255.255.0 UG 100 0 0 eth1
我想让ffmpeg正常工作,但现在我认为路由表中的两个默认路由相互干扰,我尝试一下,当公共网关路由被删除,或者私有网关路由在公共默认网关路由的头部, ffmpeg 运行良好,我认为它从 eth1 读取多播。但路由表不是这样,ffmpeg 无法从 eth1 读取数据,我认为它读取 eth0(不是专用网络接口)上的数据。
ffmpeg如何同时与两个接口一起工作?