You are not logged in.

#1 2026-03-20 07:46:08

Engi
Member
Registered: 2026-03-20
Posts: 5

Error "Limited connectivity" and 0 bytes/s on my network porblem

Hello everyone, I am not pro and there might be problem with me not installing something while setting up my Arch, but I tried everything I could find, and it didn't fix, as far as it seems.

So, I have wired and WLAN connection on my PC, which often show 0 bytes when I try to download something, but AT THE SAME TIME my browser works perfectly, I can listen to music and/or chat without problems. Main problem is, I don't understand root of this problem, because sometimes my connection jumps to 500+ Mbps, works like that for ~15 minutes, and then to 0 again.

I remember I turned off PowerSave, so I don't think it might be the issue.

And as said - I'm new, so don't really know what info I need to additionally give, so whoever answers it - just tell me what you need and I'll send it right away.

Offline

#2 2026-03-20 08:28:45

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,257

Re: Error "Limited connectivity" and 0 bytes/s on my network porblem

Please post the output of

find /etc/systemd -type l -exec test -f {} \; -print | awk -F'/' '{ printf ("%-40s | %s\n", $(NF-0), $(NF-1)) }' | sort -f

Also

ip a; ip r

For the latter you want to obfuscate IPv6 connections that don't start w/  fe80:: (keep the first two fields and X the rest)

Offline

#3 2026-03-20 08:55:55

Engi
Member
Registered: 2026-03-20
Posts: 5

Re: Error "Limited connectivity" and 0 bytes/s on my network porblem

cups.path                                | multi-user.target.wants
cups.service                             | multi-user.target.wants
cups.service                             | printer.target.wants
cups.socket                              | sockets.target.wants
dbus-org.freedesktop.nm-dispatcher.service | system
display-manager.service                  | system
ethtool-enp10s0.service                  | multi-user.target.wants
getty@tty1.service                       | getty.target.wants
network-fix.service                      | multi-user.target.wants
NetworkManager.service                   | multi-user.target.wants
NetworkManager-wait-online.service       | network-online.target.wants
nvidia-hibernate.service                 | systemd-hibernate.service.wants
nvidia-resume.service                    | systemd-hibernate.service.wants
nvidia-resume.service                    | systemd-suspend.service.wants
nvidia-resume.service                    | systemd-suspend-then-hibernate.service.wants
nvidia-suspend.service                   | systemd-suspend.service.wants
p11-kit-server.socket                    | sockets.target.wants
pipewire-pulse.socket                    | sockets.target.wants
pipewire-session-manager.service         | user
pipewire.socket                          | sockets.target.wants
remote-fs.target                         | multi-user.target.wants
systemd-userdbd.socket                   | sockets.target.wants
vnstatd.service                          | system
vnstat.service                           | multi-user.target.wants
wireplumber.service                      | pipewire.service.wants
xdg-user-dirs.service                    | graphical-session-pre.target.wants
zapret_discord_youtube.service           | multi-user.target.wants
zapret-list-update.timer                 | timers.target.wants
[Engi@myhostname ~]$ ip a; ip r
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host noprefixroute 
       valid_lft forever preferred_lft forever
2: enp10s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 34:5a:60:b4:10:4b brd ff:ff:ff:ff:ff:ff
    altname enx345a60b4104b
    inet 192.168.1.103/24 brd 192.168.1.255 scope global dynamic noprefixroute enp10s0
       valid_lft 6726sec preferred_lft 6726sec
    inet6 fe80::833:30e3:74f0:c8cd/64 scope link noprefixroute 
       valid_lft forever preferred_lft forever
3: wlp11s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
    link/ether 84:9e:56:8c:5a:07 brd ff:ff:ff:ff:ff:ff
    altname wlx849e568c5a07
    inet 192.168.1.101/24 brd 192.168.1.255 scope global dynamic noprefixroute wlp11s0
       valid_lft 6721sec preferred_lft 6721sec
    inet6 fe80::ab54:9ab1:3e06:e750/64 scope link noprefixroute 
       valid_lft forever preferred_lft forever
default via 192.168.1.1 dev enp10s0 proto dhcp src 192.168.1.103 metric 20100 
default via 192.168.1.1 dev wlp11s0 proto dhcp src 192.168.1.101 metric 20600 
192.168.1.0/24 dev enp10s0 proto kernel scope link src 192.168.1.103 metric 100 
192.168.1.0/24 dev wlp11s0 proto kernel scope link src 192.168.1.101 metric 600 

Here it is, as you asked.

Last edited by Engi (2026-03-20 09:19:04)

Offline

#4 2026-03-20 09:02:34

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,257

Re: Error "Limited connectivity" and 0 bytes/s on my network porblem

Please use [code][/code] tags. Edit your post in this regard.

ethtool-enp10s0.service                  | multi-user.target.wants
network-fix.service                      | multi-user.target.wants

what are those?


You end up w/ two leases over both NICs to the same gateway, routing prefers the ethernet device over wifi.
What's the plan here? The NM default is to fall-over, but not a hybrid connection - and it doesn't look like bonding either.
I assume it has to do w/ those mystery services?

Offline

#5 2026-03-20 09:21:53

Engi
Member
Registered: 2026-03-20
Posts: 5

Re: Error "Limited connectivity" and 0 bytes/s on my network porblem

enp10s0 is my wired connection, network-fix is I don't really know what.

Though, wired connection falls (to 0 bytes, as I initially told) even when it's alone and WiFi isn't connected.

Offline

#6 2026-03-20 09:45:23

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,257

Re: Error "Limited connectivity" and 0 bytes/s on my network porblem

enp10s0 is my wired connection

Yes, the "enp" gives that away - but that doesn't answer any questions about the status quo.

network-fix is I don't really know what

Then how and why is that there?

systemctl show ethtool-enp10s0.service
systemctl show network-fix.service

wired connection falls (to 0 bytes, as I initially told) even when it's alone and WiFi isn't connected

We'll first check those mystery services, in doubt we'll have to check the journal for whether and why it flickers otherwise.

Offline

#7 2026-03-20 16:58:36

Engi
Member
Registered: 2026-03-20
Posts: 5

Re: Error "Limited connectivity" and 0 bytes/s on my network porblem

 Id=ethtool-enp10s0.service
Names=ethtool-enp10s0.service
Requires=sysinit.target system.slice
Wants=network-online.target
WantedBy=multi-user.target
Conflicts=shutdown.target
Before=shutdown.target multi-user.target
After=network-online.target systemd-journald.socket system.slice basic.target sysinit.target
Description=Apply ethtool fixes for Realtek NIC
LoadState=loaded
ActiveState=active
FreezerState=running
SubState=exited
FragmentPath=/etc/systemd/system/ethtool-enp10s0.service
UnitFileState=enabled
UnitFilePreset=disabled
StateChangeTimestamp=Fri 2026-03-20 11:47:06 MSK
StateChangeTimestampMonotonic=52562862
InactiveExitTimestamp=Fri 2026-03-20 11:47:06 MSK
InactiveExitTimestampMonotonic=52543402
ActiveEnterTimestamp=Fri 2026-03-20 11:47:06 MSK
ActiveEnterTimestampMonotonic=52562862
ActiveExitTimestampMonotonic=0
InactiveEnterTimestampMonotonic=0
CanStart=yes
CanStop=yes
CanReload=no
CanIsolate=no
CanFreeze=yes
CanLiveMount=no
StopWhenUnneeded=no
RefuseManualStart=no
RefuseManualStop=no
AllowIsolate=no
DefaultDependencies=yes
SurviveFinalKillSignal=no
OnSuccessJobMode=fail
OnFailureJobMode=replace
IgnoreOnIsolate=no
NeedDaemonReload=no
JobTimeoutUSec=infinity
JobRunningTimeoutUSec=infinity
JobTimeoutAction=none
ConditionResult=yes
AssertResult=yes
ConditionTimestamp=Fri 2026-03-20 11:47:06 MSK
ConditionTimestampMonotonic=52542781
AssertTimestamp=Fri 2026-03-20 11:47:06 MSK
AssertTimestampMonotonic=52542781
Transient=no
Perpetual=no
StartLimitIntervalUSec=10s
StartLimitBurst=5
StartLimitAction=none
FailureAction=none
SuccessAction=none
InvocationID=0104270bd41240248bd98a22d7bc1f2e
CollectMode=inactive
DebugInvocation=no
Type=oneshot
ExitType=main
Restart=no
RestartMode=normal
NotifyAccess=none
RestartUSec=100ms
RestartSteps=0
RestartMaxDelayUSec=infinity
RestartUSecNext=100ms
TimeoutStartUSec=infinity
TimeoutStopUSec=1min 30s
TimeoutAbortUSec=1min 30s
TimeoutStartFailureMode=terminate
TimeoutStopFailureMode=terminate
RuntimeMaxUSec=infinity
RuntimeRandomizedExtraUSec=0
WatchdogUSec=0
WatchdogTimestampMonotonic=0
RootDirectoryStartOnly=no
RemainAfterExit=yes
GuessMainPID=yes
MainPID=0
ControlPID=0
FileDescriptorStoreMax=0
NFileDescriptorStore=0
FileDescriptorStorePreserve=restart
StatusErrno=0
Result=success
ReloadResult=success
CleanResult=success
LiveMountResult=success
UID=[not set]
GID=[not set]
NRestarts=0
OOMPolicy=stop
ReloadSignal=1
ExecMainStartTimestamp=Fri 2026-03-20 11:47:06 MSK
ExecMainStartTimestampMonotonic=52559184
ExecMainExitTimestamp=Fri 2026-03-20 11:47:06 MSK
ExecMainExitTimestampMonotonic=52562729
ExecMainHandoffTimestamp=Fri 2026-03-20 11:47:06 MSK
ExecMainHandoffTimestampMonotonic=52561976
ExecMainPID=773
ExecMainCode=1
ExecMainStatus=0
ExecStart={ path=/usr/bin/ethtool ; argv[]=/usr/bin/ethtool --set-eee enp10s0 eee off ; ignore_errors=no ; start_time=[n/a] ; stop_time=[n/a] ; pid=0 ; code=(null) ; status=0/0 }
ExecStart={ path=/usr/bin/ethtool ; argv[]=/usr/bin/ethtool -K enp10s0 tso off gso off ; ignore_errors=no ; start_time=[n/a] ; stop_time=[n/a] ; pid=0 ; code=(null) ; status=0/0 }
ExecStartEx={ path=/usr/bin/ethtool ; argv[]=/usr/bin/ethtool --set-eee enp10s0 eee off ; flags= ; start_time=[n/a] ; stop_time=[n/a] ; pid=0 ; code=(null) ; status=0/0 }
ExecStartEx={ path=/usr/bin/ethtool ; argv[]=/usr/bin/ethtool -K enp10s0 tso off gso off ; flags= ; start_time=[n/a] ; stop_time=[n/a] ; pid=0 ; code=(null) ; status=0/0 }
Slice=system.slice
ControlGroupId=3492
MemoryCurrent=[not set]
MemoryPeak=2150400
MemorySwapCurrent=[not set]
MemorySwapPeak=0
MemoryZSwapCurrent=[not set]
MemoryAvailable=26076258304
EffectiveMemoryMax=32698499072
EffectiveMemoryHigh=32698499072
CPUUsageNSec=7570000
TasksCurrent=[not set]
EffectiveTasksMax=37032
IPIngressBytes=[no data]
IPIngressPackets=[no data]
IPEgressBytes=[no data]
IPEgressPackets=[no data]
IOReadBytes=[not set]
IOReadOperations=[not set]
IOWriteBytes=[not set]
IOWriteOperations=[not set]
OOMKills=0
ManagedOOMKills=0
Delegate=no
CPUWeight=[not set]
StartupCPUWeight=[not set]
CPUQuotaPerSecUSec=infinity
CPUQuotaPeriodUSec=infinity
IOAccounting=no
IOWeight=[not set]
StartupIOWeight=[not set]
MemoryAccounting=yes
DefaultMemoryLow=0
DefaultStartupMemoryLow=0
DefaultMemoryMin=0
MemoryMin=0
MemoryLow=0
StartupMemoryLow=0
MemoryHigh=infinity
StartupMemoryHigh=infinity
MemoryMax=infinity
StartupMemoryMax=infinity
MemorySwapMax=infinity
StartupMemorySwapMax=infinity
MemoryZSwapMax=infinity
StartupMemoryZSwapMax=infinity
MemoryZSwapWriteback=yes
DevicePolicy=auto
TasksAccounting=yes
TasksMax=37032
IPAccounting=no
ManagedOOMSwap=auto
ManagedOOMMemoryPressure=auto
ManagedOOMMemoryPressureLimit=0
ManagedOOMMemoryPressureDurationUSec=[not set]
ManagedOOMPreference=none
MemoryPressureWatch=auto
MemoryPressureThresholdUSec=200ms
CoredumpReceive=no
UMask=0022
LimitCPU=infinity
LimitCPUSoft=infinity
LimitFSIZE=infinity
LimitFSIZESoft=infinity
LimitDATA=infinity
LimitDATASoft=infinity
LimitSTACK=infinity
LimitSTACKSoft=8388608
LimitCORE=infinity
LimitCORESoft=infinity
LimitRSS=infinity
LimitRSSSoft=infinity
LimitNOFILE=524288
LimitNOFILESoft=1024
LimitAS=infinity
LimitASSoft=infinity
LimitNPROC=123441
LimitNPROCSoft=123441
LimitMEMLOCK=8388608
LimitMEMLOCKSoft=8388608
LimitLOCKS=infinity
LimitLOCKSSoft=infinity
LimitSIGPENDING=123441
LimitSIGPENDINGSoft=123441
LimitMSGQUEUE=819200
LimitMSGQUEUESoft=819200
LimitNICE=0
LimitNICESoft=0
LimitRTPRIO=0
LimitRTPRIOSoft=0
LimitRTTIME=infinity
LimitRTTIMESoft=infinity
RootEphemeral=no
OOMScoreAdjust=0
CoredumpFilter=0x33
Nice=0
IOSchedulingClass=2
IOSchedulingPriority=4
CPUSchedulingPolicy=0
CPUSchedulingPriority=0
CPUAffinityFromNUMA=no
NUMAPolicy=n/a
TimerSlackNSec=50000
CPUSchedulingResetOnFork=no
NonBlocking=no
StandardInput=null
StandardOutput=journal
StandardError=inherit
TTYReset=no
TTYVHangup=no
TTYVTDisallocate=no
SyslogPriority=30
SyslogLevelPrefix=yes
SyslogLevel=6
SyslogFacility=3
LogLevelMax=-1
LogRateLimitIntervalUSec=0
LogRateLimitBurst=0
SecureBits=0
CapabilityBoundingSet=cap_chown cap_dac_override cap_dac_read_search cap_fowner cap_fsetid cap_kill cap_setgid cap_setuid cap_setpcap cap_linux_immutable cap_net_bind_service cap_net_broadcast cap_net_admin cap_net_raw cap_ipc_lock cap>
DynamicUser=no
SetLoginEnvironment=no
RemoveIPC=no
PrivateTmp=no
PrivateTmpEx=no
PrivateDevices=no
ProtectClock=no
ProtectKernelTunables=no
ProtectKernelModules=no
ProtectKernelLogs=no
ProtectControlGroups=no
ProtectControlGroupsEx=no
PrivateNetwork=no
PrivateUsers=no
PrivateUsersEx=no
PrivateMounts=no
PrivateIPC=no
PrivatePIDs=no
ProtectHome=no
ProtectSystem=no
SameProcessGroup=no
UtmpMode=init
IgnoreSIGPIPE=yes
NoNewPrivileges=no
SystemCallErrorNumber=2147483646
LockPersonality=no
RuntimeDirectoryPreserve=no
RuntimeDirectoryMode=0755
StateDirectoryMode=0755
StateDirectoryAccounting=no
StateDirectoryQuota=[not set]
CacheDirectoryMode=0755
CacheDirectoryAccounting=no
CacheDirectoryQuota=[not set]
LogsDirectoryMode=0755
LogsDirectoryAccounting=no
LogsDirectoryQuota=[not set]
ConfigurationDirectoryMode=0755
TimeoutCleanUSec=infinity
MemoryDenyWriteExecute=no
RestrictRealtime=no
RestrictSUIDSGID=no
RestrictNamespaces=no
DelegateNamespaces=18446744073709551615
MountAPIVFS=no
BindLogSockets=no
KeyringMode=private
ProtectProc=default
ProcSubset=all
ProtectHostname=no
PrivateBPF=no
MemoryKSM=no
RootImagePolicy=root=verity+signed+encrypted+unprotected+absent:usr=verity+signed+encrypted+unprotected+absent:home=encrypted+unprotected+absent:srv=encrypted+unprotected+absent:tmp=encrypted+unprotected+absent:var=encrypted+unprotecte>
MountImagePolicy=root=verity+signed+encrypted+unprotected+absent:usr=verity+signed+encrypted+unprotected+absent:home=encrypted+unprotected+absent:srv=encrypted+unprotected+absent:tmp=encrypted+unprotected+absent:var=encrypted+unprotect>
ExtensionImagePolicy=root=verity+signed+encrypted+unprotected+absent:usr=verity+signed+encrypted+unprotected+absent:home=encrypted+unprotected+absent:srv=encrypted+unprotected+absent:tmp=encrypted+unprotected+absent:var=encrypted+unpro>
KillMode=control-group
KillSignal=15
RestartKillSignal=15
FinalKillSignal=9
SendSIGKILL=yes
SendSIGHUP=no
WatchdogSignal=6
lines 231-290/290 

Here what it says, sorry for not answering earlier, I've been to uni.

Offline

#8 2026-03-20 20:11:21

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,257

Re: Error "Limited connectivity" and 0 bytes/s on my network porblem

No problem, I'm not in a rush wink

ethtool-enp10s0.service tries to

ethtool --set-eee enp10s0 eee off
ethtool -K enp10s0 tso off gso off

disable Energy-Efficient Ethernet, TCP segmentation offload and generic segmentation offload
Why?

We're also still lacking

systemctl show network-fix.service

Offline

#9 2026-03-21 07:16:12

Engi
Member
Registered: 2026-03-20
Posts: 5

Re: Error "Limited connectivity" and 0 bytes/s on my network porblem

 systemctl show network-fix.service
Id=network-fix.service
Names=network-fix.service
Requires=sysinit.target system.slice
WantedBy=multi-user.target
Conflicts=shutdown.target
Before=multi-user.target shutdown.target
After=systemd-journald.socket network.target basic.target system.slice sysinit.target
Description=Network interface fixes
LoadState=loaded
ActiveState=active
FreezerState=running
SubState=exited
FragmentPath=/etc/systemd/system/network-fix.service
UnitFileState=enabled
UnitFilePreset=disabled
StateChangeTimestamp=Sat 2026-03-21 09:09:43 MSK
StateChangeTimestampMonotonic=35465262
InactiveExitTimestamp=Sat 2026-03-21 09:09:43 MSK
InactiveExitTimestampMonotonic=35413136
ActiveEnterTimestamp=Sat 2026-03-21 09:09:43 MSK
ActiveEnterTimestampMonotonic=35465262
ActiveExitTimestampMonotonic=0
InactiveEnterTimestampMonotonic=0
CanStart=yes
CanStop=yes
CanReload=no
CanIsolate=no
CanFreeze=yes
CanLiveMount=no
StopWhenUnneeded=no
RefuseManualStart=no
RefuseManualStop=no
AllowIsolate=no
DefaultDependencies=yes
SurviveFinalKillSignal=no
OnSuccessJobMode=fail
OnFailureJobMode=replace
IgnoreOnIsolate=no
NeedDaemonReload=no
JobTimeoutUSec=infinity
JobRunningTimeoutUSec=infinity
JobTimeoutAction=none
ConditionResult=yes
AssertResult=yes
ConditionTimestamp=Sat 2026-03-21 09:09:43 MSK
ConditionTimestampMonotonic=35409521
AssertTimestamp=Sat 2026-03-21 09:09:43 MSK
AssertTimestampMonotonic=35409539
Transient=no
Perpetual=no
StartLimitIntervalUSec=10s
StartLimitBurst=5
StartLimitAction=none
FailureAction=none
SuccessAction=none
InvocationID=e81efbfddbdf464280a7390298fd0e43
CollectMode=inactive
DebugInvocation=no
Type=oneshot
ExitType=main
Restart=no
RestartMode=normal
NotifyAccess=none
RestartUSec=100ms
RestartSteps=0
RestartMaxDelayUSec=infinity
RestartUSecNext=100ms
TimeoutStartUSec=infinity
TimeoutStopUSec=1min 30s
TimeoutAbortUSec=1min 30s
TimeoutStartFailureMode=terminate
TimeoutStopFailureMode=terminate
RuntimeMaxUSec=infinity
RuntimeRandomizedExtraUSec=0
WatchdogUSec=0
WatchdogTimestampMonotonic=0
RootDirectoryStartOnly=no
RemainAfterExit=yes
GuessMainPID=yes
MainPID=0
ControlPID=0
FileDescriptorStoreMax=0
NFileDescriptorStore=0
FileDescriptorStorePreserve=restart
StatusErrno=0
Result=success
ReloadResult=success
CleanResult=success
LiveMountResult=success
UID=[not set]
GID=[not set]
NRestarts=0
OOMPolicy=stop
ReloadSignal=1
ExecMainStartTimestamp=Sat 2026-03-21 09:09:43 MSK
ExecMainStartTimestampMonotonic=35440294
ExecMainExitTimestamp=Sat 2026-03-21 09:09:43 MSK
ExecMainExitTimestampMonotonic=35465135
ExecMainHandoffTimestamp=Sat 2026-03-21 09:09:43 MSK
ExecMainHandoffTimestampMonotonic=35443076
ExecMainPID=774
ExecMainCode=1
ExecMainStatus=0
ExecStart={ path=/usr/bin/ethtool ; argv[]=/usr/bin/ethtool -K enp10s0 tso off gso off gro off ; ignore_errors=no ; start_time=[Sat 2026-03-21 09:09:43 MSK] ; stop_time=[Sat 2026-03-21 09:09:43 MSK] ; pid=769 ; code=exited ; status=0 }
ExecStart={ path=/usr/bin/ethtool ; argv[]=/usr/bin/ethtool -K enp10s0 tx off rx off ; ignore_errors=no ; start_time=[Sat 2026-03-21 09:09:43 MSK] ; stop_time=[Sat 2026-03-21 09:09:43 MSK] ; pid=774 ; code=exited ; status=0 }
ExecStartEx={ path=/usr/bin/ethtool ; argv[]=/usr/bin/ethtool -K enp10s0 tso off gso off gro off ; flags= ; start_time=[Sat 2026-03-21 09:09:43 MSK] ; stop_time=[Sat 2026-03-21 09:09:43 MSK] ; pid=769 ; code=exited ; status=0 }
ExecStartEx={ path=/usr/bin/ethtool ; argv[]=/usr/bin/ethtool -K enp10s0 tx off rx off ; flags= ; start_time=[Sat 2026-03-21 09:09:43 MSK] ; stop_time=[Sat 2026-03-21 09:09:43 MSK] ; pid=774 ; code=exited ; status=0 }
Slice=system.slice
ControlGroupId=3402
MemoryCurrent=[not set]
MemoryPeak=2920448
MemorySwapCurrent=[not set]
MemorySwapPeak=0
MemoryZSwapCurrent=[not set]
MemoryAvailable=27480502272
EffectiveMemoryMax=32698499072
EffectiveMemoryHigh=32698499072
CPUUsageNSec=22666000
TasksCurrent=[not set]
EffectiveTasksMax=37032
IPIngressBytes=[no data]
IPIngressPackets=[no data]
IPEgressBytes=[no data]
IPEgressPackets=[no data]
IOReadBytes=[not set]
IOReadOperations=[not set]
IOWriteBytes=[not set]
IOWriteOperations=[not set]
OOMKills=0
ManagedOOMKills=0
Delegate=no
CPUWeight=[not set]
StartupCPUWeight=[not set]
CPUQuotaPerSecUSec=infinity
CPUQuotaPeriodUSec=infinity
IOAccounting=no
IOWeight=[not set]
StartupIOWeight=[not set]
MemoryAccounting=yes
DefaultMemoryLow=0
DefaultStartupMemoryLow=0
DefaultMemoryMin=0
MemoryMin=0
MemoryLow=0
StartupMemoryLow=0
MemoryHigh=infinity
StartupMemoryHigh=infinity
MemoryMax=infinity
StartupMemoryMax=infinity
MemorySwapMax=infinity
StartupMemorySwapMax=infinity
MemoryZSwapMax=infinity
StartupMemoryZSwapMax=infinity
MemoryZSwapWriteback=yes
DevicePolicy=auto
TasksAccounting=yes
TasksMax=37032
IPAccounting=no
ManagedOOMSwap=auto
ManagedOOMMemoryPressure=auto
ManagedOOMMemoryPressureLimit=0
ManagedOOMMemoryPressureDurationUSec=[not set]
ManagedOOMPreference=none
MemoryPressureWatch=auto
MemoryPressureThresholdUSec=200ms
CoredumpReceive=no
UMask=0022
LimitCPU=infinity
LimitCPUSoft=infinity
LimitFSIZE=infinity
LimitFSIZESoft=infinity
LimitDATA=infinity
LimitDATASoft=infinity
LimitSTACK=infinity
LimitSTACKSoft=8388608
LimitCORE=infinity
LimitCORESoft=infinity
LimitRSS=infinity
LimitRSSSoft=infinity
LimitNOFILE=524288
LimitNOFILESoft=1024
LimitAS=infinity
LimitASSoft=infinity
LimitNPROC=123441
LimitNPROCSoft=123441
LimitMEMLOCK=8388608
LimitMEMLOCKSoft=8388608
LimitLOCKS=infinity
LimitLOCKSSoft=infinity
LimitSIGPENDING=123441
LimitSIGPENDINGSoft=123441
LimitMSGQUEUE=819200
LimitMSGQUEUESoft=819200
LimitNICE=0
LimitNICESoft=0
LimitRTPRIO=0
LimitRTPRIOSoft=0
LimitRTTIME=infinity
LimitRTTIMESoft=infinity
RootEphemeral=no
OOMScoreAdjust=0
CoredumpFilter=0x33
Nice=0
IOSchedulingClass=2
IOSchedulingPriority=4
CPUSchedulingPolicy=0
CPUSchedulingPriority=0
CPUAffinityFromNUMA=no
NUMAPolicy=n/a
TimerSlackNSec=50000
CPUSchedulingResetOnFork=no
NonBlocking=no
StandardInput=null
StandardOutput=journal
StandardError=inherit
TTYReset=no
TTYVHangup=no
TTYVTDisallocate=no
SyslogPriority=30
SyslogLevelPrefix=yes
SyslogLevel=6
SyslogFacility=3
LogLevelMax=-1
LogRateLimitIntervalUSec=0
LogRateLimitBurst=0
SecureBits=0
CapabilityBoundingSet=cap_chown cap_dac_override cap_dac_read_search cap_fowner cap_fsetid cap_kill cap_setgid cap_setuid cap_setpcap cap_linux_immutable cap_net_bind_service cap_net_broadcast cap_net_admin cap_net_raw cap_ipc_lock cap>
DynamicUser=no
SetLoginEnvironment=no
RemoveIPC=no
PrivateTmp=no
PrivateTmpEx=no
PrivateDevices=no
ProtectClock=no
ProtectKernelTunables=no
ProtectKernelModules=no
ProtectKernelLogs=no
ProtectControlGroups=no
ProtectControlGroupsEx=no
PrivateNetwork=no
PrivateUsers=no
PrivateUsersEx=no
PrivateMounts=no
PrivateIPC=no
PrivatePIDs=no
ProtectHome=no
ProtectSystem=no
SameProcessGroup=no
UtmpMode=init
IgnoreSIGPIPE=yes
NoNewPrivileges=no
SystemCallErrorNumber=2147483646
LockPersonality=no
RuntimeDirectoryPreserve=no
RuntimeDirectoryMode=0755
StateDirectoryMode=0755
StateDirectoryAccounting=no
StateDirectoryQuota=[not set]
CacheDirectoryMode=0755
CacheDirectoryAccounting=no
CacheDirectoryQuota=[not set]
LogsDirectoryMode=0755
LogsDirectoryAccounting=no
LogsDirectoryQuota=[not set]
ConfigurationDirectoryMode=0755
TimeoutCleanUSec=infinity
MemoryDenyWriteExecute=no
RestrictRealtime=no
RestrictSUIDSGID=no
RestrictNamespaces=no
DelegateNamespaces=18446744073709551615
MountAPIVFS=no
BindLogSockets=no
KeyringMode=private
ProtectProc=default
ProcSubset=all
ProtectHostname=no
PrivateBPF=no
MemoryKSM=no
RootImagePolicy=root=verity+signed+encrypted+unprotected+absent:usr=verity+signed+encrypted+unprotected+absent:home=encrypted+unprotected+absent:srv=encrypted+unprotected+absent:tmp=encrypted+unprotected+absent:var=encrypted+unprotecte>
MountImagePolicy=root=verity+signed+encrypted+unprotected+absent:usr=verity+signed+encrypted+unprotected+absent:home=encrypted+unprotected+absent:srv=encrypted+unprotected+absent:tmp=encrypted+unprotected+absent:var=encrypted+unprotect>
ExtensionImagePolicy=root=verity+signed+encrypted+unprotected+absent:usr=verity+signed+encrypted+unprotected+absent:home=encrypted+unprotected+absent:srv=encrypted+unprotected+absent:tmp=encrypted+unprotected+absent:var=encrypted+unpro>
KillMode=control-group
KillSignal=15
RestartKillSignal=15
FinalKillSignal=9
SendSIGKILL=yes
SendSIGHUP=no
WatchdogSignal=6 

Here's network-fix.service.

There's possibility that first two (which start with ethtool) things are somehow connected to how I turned off PowerSave, though I'm not really sure. So, as far as I understand, I need to somehow turn off (or rather on, in this case) eee, tso and gso?

Offline

#10 2026-03-21 08:05:57

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,257

Re: Error "Limited connectivity" and 0 bytes/s on my network porblem

ethtool -K enp10s0 tso off gso off gro off
ethtool -K enp10s0 tx off rx off

I need to somehow turn off (or rather on, in this case) eee, tso and gso?

You don't "need" anything => disable both services.
Remains the question why you have parallel leases and routes - also disable the wifi, reboot and if you still encounter network drops, please post your complete system journal for the boot:

sudo journalctl -b | curl -F 'file=@-' https://0x0.st

Offline

Board footer

Powered by FluxBB