Sunday, September 7, 2025

Adding a Samba user and setting the password

I almost always forget to add users to Samba group after enabling Samba. So here it is:

sudo smbpasswd -a <username>


Change service shutdown timeout in Debian

Make a change so that slow-non/responding services to terminate quickly during shutdown:

sudo nano /etc/systemd/system.conf

Uncomment and edit to:

DefaultTimeoutStopSec=5s

Reboot or reload with:

sudo systemctl daemon-reload


Change GRUB boot delay

sudo nano /etc/default/grub
sudo update-grub

Adding ufw rules using application profiles while restricting source network

Unfortunately, the ufw help doesn't provide an example for using application profiles while specifying the source network. Here's an example how "OpenSSH" profile can be used but restricting the source network to local:

sudo ufw allow from 192.168.0.0/24 to any app OpenSSH


Saturday, September 6, 2025

Disable IPv6 in Debian Trixie

Edit /etc/hosts and remove the default IPv6 entries, including localhost, etc. If you don't do this, you may encounter weird errors down the road because some programs will try to bind to "localhost" and it ends up try using non-existing IPv6 address, etc.

Create the follow file:

sudo nano /etc/sysctl.d/90-disable_ipv6.conf

then add these lines and save:

net.ipv6.conf.all.disable_ipv6 = 1

net.ipv6.conf.default.disable_ipv6 = 1

Run:

sudo sysctl --system


Tuesday, September 2, 2025

Jumbo frame size setting in Windows

For network adapter drivers that require the "Jumbo Packet" value to be set for MTU, enter 9014. This is to accommodate 14 bytes of Ethernet header, which is then added to the 9000-byte packet. For example, Mellanox ConnectX-3 adapters require this value to function correctly.

To confirm testing of Jumbo frame between two nodes, use the ping command as follows:

For Windows:

ping <target> -f -l 8972

For Linux:

ping <target> -M do -s 8972