Hi. I am using an rpi4 (rpi4a) as libreelec player and another rpi4 (rpi4b) as a file server. I also have a pc running pfsense as the router for the entire network
On the libreelec box, I have added the rpi4b as a file source, using the box's host name "rpi4b". It works fine before
I think the problem started two versions ago. Whenever I tried to access rpi4b, the interface took like half a minute, then present me with a "No Route to Host" error message. If I added rpi4b as an SMB source using its IP address, I can access it fine in libreelec
Libreelec SMB minimum version is set to v1 and I didn't set the versions of SMB share in rpi4b (default)
I don't have problem using hostnames for other network shares (a few WD Mybooklive drives, an old Asus router and my personal PC)
The funny thing is I was able to mount the SMB shares of rpi4b in rpi4a using the instructions from https://wiki.libreelec.tv/how-to/mount_network_share using the host name
One of the .mount file:
rpi4a:~/.config/system.d # cat storage-videos-rpi4b-mybook8.mount
[Unit]
Description=cifs mount script
Requires=network-online.service
After=network-online.service
Before=kodi.service
[Mount]
What=//rpi4b/mybook8
Where=/storage/videos/rpi4b/mybook8
Options=username=linx,password=<removed>,rw,vers=2.1
Type=cifs
[Install]
WantedBy=multi-user.target
Display More
Pinging rpi4b from rpi4a works fine:
rpi4a:~/.config/system.d # ping rpi4b
PING rpi4b (192.168.0.25): 56 data bytes
64 bytes from 192.168.0.25: seq=0 ttl=64 time=0.766 ms
64 bytes from 192.168.0.25: seq=1 ttl=64 time=0.851 ms
64 bytes from 192.168.0.25: seq=2 ttl=64 time=0.892 ms
System.log
################################################################################
# ... output of dmesg
# LibreELEC release: RPi4.arm-11.0.1
#
################################################################################
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd083]
[ 0.000000] Linux version 6.1.19 (docker@2a05ae69d73e) (aarch64-none-elf-gcc-12.2.0 (GCC) 12.2.0, GNU ld (GNU Binutils) 2.39) #1 SMP Sat Mar 18 20:58:05 UTC 2023
KODI.log
2023-06-11 03:48:23.589 T:1135 error <general>: Exception ignored on calling ctypes callback function
2023-06-11 03:48:23.589 T:1135 error <general>: :
2023-06-11 03:48:23.589 T:1135 error <general>: <function Connection.add_filter.<locals>.wrap_function at 0xebab9098>
2023-06-11 03:48:23.589 T:1135 error <general>:
2023-06-11 03:48:23.589 T:1135 error <general>: Traceback (most recent call last):
2023-06-11 03:48:23.589 T:1135 error <general>: File "/usr/lib/python3.11/site-packages/dbussy.py", line 2616, in wrap_function
2023-06-11 03:48:23.590 T:1135 error <general>: File "/usr/lib/python3.11/site-packages/ravel.py", line 2036, in _message_interface_dispatch
2023-06-11 03:48:23.591 T:1135 error <general>: File "/usr/share/kodi/addons/service.libreelec.settings/resources/lib/dbus_bluez.py", line 70, in Release
2023-06-11 03:48:23.591 T:1135 error <general>: NotImplementedError
2023-06-11 03:48:23.591 T:1135 error <general>: :
2023-06-11 03:48:23.591 T:1135 error <general>:
2023-06-11 03:48:23.591 T:1135 error <general>:
Display More
Any help will be appreciated. Thank you