Jeff Geerling

Results 1858 comments of Jeff Geerling

``` pi@pi-nas:~ $ sudo su root@pi-nas:/home/pi# echo 1 >/sys/devices/system/cpu/cpufreq/ondemand/io_is_busy root@pi-nas:/home/pi# echo default > /sys/module/pcie_aspm/parameters/policy root@pi-nas:/home/pi# cat /sys/devices/system/cpu/cpufreq/ondemand/io_is_busy 1 root@pi-nas:/home/pi# cat /sys/module/pcie_aspm/parameters/policy [default] performance powersave powersupersave ``` Still seeing the same...

More stats on the share from the macOS client: ``` $ smbutil statshares -a ================================================================================================== SHARE ATTRIBUTE TYPE VALUE ================================================================================================== -------------------------------------------------------------------------------------------------- shared SERVER_NAME 10.0.2.214 USER_ID 501 SMB_NEGOTIATE SMBV_NEG_SMB1_ENABLED SMB_NEGOTIATE SMBV_NEG_SMB2_ENABLED...

I've tested iperf3 on this setup a few times—on the 1 Gbps port, I get 940 Mbps up, 940 Mbps down (doing `--reverse`), and `iozone` with a filesize of 10...

Testing from Windows 11 on the same network, reads maxed out at 110 MB/sec, just like on the Mac. ![smb copy down 110mb-ps](https://github.com/geerlingguy/raspberry-pi-pcie-devices/assets/481677/43f7ffc5-5ed9-404f-b942-b4a417736be6) Writes... are getting a consistent 108 MB/sec....

@ThomasKaiser - see above (https://github.com/geerlingguy/raspberry-pi-pcie-devices/issues/615#issuecomment-2035286025) — `SMB_CURR_SIGN_ALGORITHM AES_128_GMAC` does that mean it's enabled?

I tried adding `server signing = No` to the `smb.conf` on the Pi (and restarting it), and also tried disabling signing on the macOS side: ``` printf "[default]\nsigning_required=no\n" | sudo...

Reboot changed nothing, so I had a gander at the [SMB config documentation](https://www.samba.org/samba/docs/current/man-html/smb.conf.5.html), and found the client signing variable might need to be disabled? ``` client signing = disabled ```...

One last little nugget is I was debugging SMB via debug logging (easy enough to enable via OMV's UI), and I noticed there are actually two log files that are...

Note that on my Mac, I didn't have anything in place in `/etc/nsmb.conf` (I had to create the file). And regarding `delayed_ack`, once I get through anything that makes sense,...

> This can and will harm SMB performance (bitten by this several times). But I guess you also tried it with log settings set to info and 'performance' was the...