2024-10-09, 05:41 PM
(This post was last modified: 2024-10-09, 06:32 PM by TheDreadPirate. Edited 6 times in total.)
Yes, Pirate, network is o.k.:
The network.xml seems to have been generated by the server?
could it be the name of the interface?
...apparently not - if I change
<VirtualInterfaceNames>
<string>veth</string>
</VirtualInterfaceNames>
to the name of the interface:
<VirtualInterfaceNames>
<string>eth0</string>
</VirtualInterfaceNames>
I cannot connect via http at all...
~R.
Code:
root@jellyfin:/# ping google.com
PING google.com(fra24s02-in-x0e.1e100.net (2a00:1450:4001:803::200e)) 56 data bytes
64 bytes from fra24s02-in-x0e.1e100.net (2a00:1450:4001:803::200e): icmp_seq=1 ttl=57 time=21.8 ms
64 bytes from fra24s02-in-x0e.1e100.net (2a00:1450:4001:803::200e): icmp_seq=2 ttl=57 time=9.95 ms
64 bytes from fra24s02-in-x0e.1e100.net (2a00:1450:4001:803::200e): icmp_seq=3 ttl=57 time=11.6 ms
64 bytes from fra24s02-in-x0e.1e100.net (2a00:1450:4001:803::200e): icmp_seq=4 ttl=57 time=12.4 ms
^C
--- google.com ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 3002ms
rtt min/avg/max/mdev = 9.950/13.924/21.803/4.632 ms
The network.xml seems to have been generated by the server?
Code:
root@jellyfin:/# cat /etc/jellyfin/network.xml
<?xml version="1.0" encoding="utf-8"?>
<NetworkConfiguration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<BaseUrl />
<EnableHttps>false</EnableHttps>
<RequireHttps>false</RequireHttps>
<CertificatePath />
<CertificatePassword />
<InternalHttpPort>8096</InternalHttpPort>
<InternalHttpsPort>8920</InternalHttpsPort>
<PublicHttpPort>8096</PublicHttpPort>
<PublicHttpsPort>8920</PublicHttpsPort>
<AutoDiscovery>true</AutoDiscovery>
<EnableUPnP>false</EnableUPnP>
<EnableIPv4>true</EnableIPv4>
<EnableIPv6>true</EnableIPv6>
<EnableRemoteAccess>false</EnableRemoteAccess>
<LocalNetworkSubnets />
<LocalNetworkAddresses />
<KnownProxies />
<IgnoreVirtualInterfaces>true</IgnoreVirtualInterfaces>
<VirtualInterfaceNames>
<string>veth</string>
</VirtualInterfaceNames>
<EnablePublishedServerUriByRequest>false</EnablePublishedServerUriByRequest>
<PublishedServerUriBySubnet />
<RemoteIPFilter />
<IsRemoteIPFilterBlacklist>false</IsRemoteIPFilterBlacklist>
</NetworkConfiguration>
could it be the name of the interface?
Code:
root@jellyfin:/# ifconfig
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 10.3.3.3 netmask 255.255.255.0 broadcast 10.3.3.255
inet6 2a02:[public IPv6 address] prefixlen 64 scopeid 0x0<global>
inet6 fe80::87b:60ff:fe3a:74e8 prefixlen 64 scopeid 0x20<link>
ether 0a:7b:60:3a:74:e8 txqueuelen 1000 (Ethernet)
RX packets 290536 bytes 43602281 (41.5 MiB)
RX errors 0 dropped 91317 overruns 0 frame 0
TX packets 4355 bytes 6326000 (6.0 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 16 bytes 3091 (3.0 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 16 bytes 3091 (3.0 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
...apparently not - if I change
<VirtualInterfaceNames>
<string>veth</string>
</VirtualInterfaceNames>
to the name of the interface:
<VirtualInterfaceNames>
<string>eth0</string>
</VirtualInterfaceNames>
I cannot connect via http at all...
~R.