The default setting was changed to 184.
Here is the output from the latest TW, and I highlighted the Magic Line in Bold & Red for you:
cat /usr/lib/sysctl.d/50-default.conf
#
# Distribution defaults.
# Use /etc/sysctl.conf to override.
#
# Disable response to broadcast pings to avoid smurf attacks.
net.ipv4.icmp_echo_ignore_broadcasts = 1
# enable route verification on all interfaces
net.ipv4.conf.all.rp_filter = 1
# avoid deleting secondary IPs on deleting the primary IP
net.ipv4.conf.default.promote_secondaries = 1
net.ipv4.conf.all.promote_secondaries = 1
# disable IPv6 completely
#net.ipv6.conf.all.disable_ipv6 = 1
# enable IPv6 forwarding
#net.ipv6.conf.all.forwarding = 1
# enable IPv6 privacy but do not use the temporary
# addresses for outgoing connections by default
# (bsc#678066,bsc#752842,bsc#988023,bsc#990838)
net.ipv6.conf.default.use_tempaddr = 1
# increase the number of possible inotify(7) watches
fs.inotify.max_user_watches = 65536
# Magic SysRq Keys enable some control over the system even if it
# crashes (e.g. during kernel debugging).
#
# 0 - disable sysrq completely
# 1 - enable all functions of sysrq
# >1 - bitmask of allowed sysrq functions:
# 2 - enable control of console logging level
# 4 - enable control of keyboard (SAK, unraw)
# 8 - enable debugging dumps of processes etc.
# 16 - enable sync command
# 32 - enable remount read-only
# 64 - enable signalling of processes (term, kill, oom-kill)
# 128 - allow reboot/poweroff
# 256 - allow nicing of all RT tasks
#
# For further information see /usr/src/linux/Documentation/sysrq.txt
# default 184 = 128+32+16+8
**kernel.sysrq = 184**
# Disable auto-closing of cd tray bnc#659153
dev.cdrom.autoclose = 0
# enable hard- and symlink protection (bnc#821585)
fs.protected_hardlinks = 1
fs.protected_symlinks = 1
# restrict printed kernel ptrs (bnc#833774)
kernel.kptr_restrict = 1
and here is the same line from Leap 15.0 (Just the line, to save Forum space)
kernel.sysrq = 184
From a long ago thread (and you observed this at the time, as well ;)), following an in-depth writeup I did explaining Alt-SysRq and all its options, especially as the defaults changed in Leap starting with 42.2 that I was aware of at the time:
Alt-SysRq: How can it be made permanent please?
cat /proc/sys/kernel/sysrq
echo 1 > /proc/sys/kernel/sysrq
Turns out 42.2 and 42.3 keep reverting it back to 184 at boot.
However, just to make you blush, ol’ Down Under Pal, instead of quoting my own material, I will quote your answer in that thread:
You can define the necessary (eg kernel.sysrq = 1) in /etc/sysctl.conf, or a .conf file in the /etc/sysctl.d/ directory
To get current settings do
sysctl --system
If you run 'sysctl --system' it will show you the order that the settings were applied. The naming is important. I found that in order to override settings in /usr/lib/sysctl.d/50-default.conf, my configuration file in /etc/sysctl.d/ needed to be named something like 80-custom.conf (or similar) so that it was processed after the default configuration....
but, I am trying to remember what I did on 15.0 to stop it from reverting, perhaps that, or perhaps I used some other systemd method that I do not recall at the moment.
rotfl!