我想配置GPSD作为UDP组播流的输入。 我有一个后台服务,它在UDP多播上发送NMEA帧,端口5098(254.0.0.50:5098)
我试过了:
gpsd udp://254.0.0.50:5098 -n -N -D 5
但它不起作用。 结果如下:
gpsd:INFO: launching (Version 3.9)
gpsd:IO: opening IPv4
gpsd:IO: opening IPv6 socket
gpsd:INFO: listening on port gpsd
gpsd:PROG: NTPD shmat(0,0,0) succeeded, segment 0
gpsd:PROG: NTPD shmat(32769,0,0) succeeded, segment 1
gpsd:PROG: NTPD shmat(65538,0,0) succeeded, segment 2
gpsd:PROG: NTPD shmat(98307,0,0) succeeded, segment 3
gpsd:PROG: successfully connected to the DBUS system bus
gpsd:PROG: PPS thread launched
gpsd:INFO: NTPD ntpd_link_activate: 1
gpsd:INFO: stashing device udp://254.0.0.50:5098 at slot 0
gpsd:PROG: no /etc/gpsd/device-hook present, skipped running ACTIVATE hook
gpsd:INFO: opening UDP feed at 254.0.0.50, port 5098.
gpsd:PROG: PPS Create Thread gpsd_ppsmonitor
gpsd:PROG: PPS thread awaiting device activation
gpsd:ERROR: UDP device open error can't connect to host/port pair.
gpsd:ERROR: initial GPS device udp://254.0.0.50:5098 open failed
gpsd:PROG: PPS thread awaiting device activation
gpsd:INFO: running with effective group ID 20
gpsd:INFO: running with effective user ID 65534
gpsd:INFO: startup at 2015-05-05T13:38:33.000Z (1430833113)
gpsd:PROG: PPS thread awaiting device activation
你知道我哪里错了吗?
先谢谢。
此致。
汤姆
答案 0 :(得分:1)
我有完全相同的问题。我试图使用来自192.168.1.100端口10110的UDP多播,但是使用gpsd udp://192.168.1.100:10110 -n -N -D 5没有工作,也没有监听localhost。 经过大量研究后,我发现它可以通过使用来实现 gpsd udp://192.168.1.255 -n -N -D 5 请注意,192.168.1.255是我网络中不存在的IP。似乎gpsd只能从不存在的.255节点获取UDP组播消息。
答案 1 :(得分:0)
254.0.0.50不是有效的多播地址。
有效的IPv4多播地址范围为224.0.0.1 - 239.255.255.255。保留范围为240.0.0.0 - 255.255.255.255的地址。