I need to change the log_martians settings on a couple of device because they are on a network where physiologically they see “martian” packets. So i need to set value “0” to those sysctl (dafult is “1”).
Those are the lines i added in my sysctl.conf, but they are ignored and, after the boot, values are always set to default.
Trying to do those changes I discovered that it’s impossible to set at boot time every sysctl network related settings. So the problem is general and not limited to log_martians. There are tons of reasons to change those parameters, it’s unacceptable that you are forced to use default values! it’s simply absurd!
Hi Tsu,
the link you posted describes exactly what i’m trying to do! Modifications to sysctl.conf are ignored or overwritten, this is the real problem! I suspect systemd is involved in the problem.
systemd is of course involved here - it sets up configured sysctl values. I already told you the first step to debug it - use shell wrapper to verify that systemd-sysctl is called and sets correct values.
Hi arvidjaar,
unfortunately I’m unable to use a “shell wrapper”, could you please help me o could you give me an hint or a link to some documents about it?
This is also my very first experience with systemd.
And examine /tmp/systemd-sysctl.log after reboot. If it does not exist, systemd-sysctl does is not called at all. If it exists, check values of interest. Are they set correctly?
Thank you very much! I made the wrapper (now it’s clear what a shell wrapper is ) and rebooted the system, the file systemd-sysctl.log contains only the date!
So systemd-sysctl is called but for sure it does not do what is supposed to do! It’s also very strange that sysctl -a does not produce any output at all.
You should be able to verify the method described in my paper works, easily and without much time involved.
Run this command to see current tcp/ip buffer settings
# tcpdump _ni eth0
Make the sysctl.conf settings exactly as described in my paper.
Reboot
Re-run the above command to view the new buffer values
View the changed (current) congestion control algorithm. Current Linux default is cubic, my script changes to veno
# cat /proc/sys/net/ipv4/tcp_congestion_control
When you’re done and want to undo the changes in this test, just remove the lines of code at the end of sysctl.conf (or if you previously just copied and renamed a backup of your original, restore accordingly).
Should take only slightly longer than a reboot to do this. As I described, this still works for 12.2, haven’t tested but should still work for future systemd systems although no guarantee. At some point native systemd commands should likely be preferred.
If it ends up that you <really> can’t make sysctl.conf work for (I doubt) you can try writing/converting your calls to a custom systemd service unit.
There is a long, excellent series in a blog by one of the systemd authors, although you might need to read other blog entries for foundation info, the specific ones you likely would want to concentrate on are
It’s simply PATH problem, sorry, had to be more careful but I was writing from memory and could not check where commands are located anyway. As I had to reboot after kernel update anyway, I tested this and guess what - it of course works.
You were right i’m sorry, it was a simple path problem that I should have guessed on my own!
So i did the test and the result is that systemd-sysctl is regularly called, and sysctl.conf are applied! When the boot is finished however sysctl values are at their default again. So something in the boot sequence is changing them. I have already excluded vmware and xen.
The SuSeFirewall service overwrites network related sysctl settings. I suppose this is a bug. Do you know if there is a way to tell the firewall scripts to leave untouched sysctl parameters ?
I had a look to SuSeFirewall yast graphic configuration mask and to /etc/sysconfig/SuSEFirewall* files, without any success.
Is someone of you so kind to do a very simple test just to double check if this behavior is common to all 12.2 installations and it’s not related someway with my particular configuration. ?
The test could be very simple:
modify something network related using /etc/sysctl.conf, for example add some lines like this:
net.ipv4.conf.default.log_martians = 0
net.ipv4.conf.all.log_martians = 0
net.ipv4.conf.br0.log_martians = 0
net.ipv4.conf.eth0.log_martians = 0
Please note that the value you are modifying must be different from kernel default
enable SuSEFirewall service
reboot
verify that your modifications are reverted to default
And, just changing <anything> in syslog.conf is shotgun scatter without necessary revance, eg the settings in my link <will> persist non-default values but have nothing to do with the firewall. Small wonder then that the settings I describe should be unaffected.
I’m in a situation where physiologically there are “martian” packets on the network and this flood my log file with useless information. So I would like to disable martian packets notification. The problem i discovered is, by the way, more general and involves all network related and device specific parameters
I re-visited what is on my machine(12.2) and to my amazement the entire /proc/net/ipv4/ branch is missing (I would swear it existed a year ago).
This leads me to speculate that the currently installed systemd on my system (version 44) may have re-written and “acquired” control of the ipv4 network stack, leaving behind for the moment only ipv6, fw configs and some deprecated commands like netstat.
Or, it may be related to the fact I’m currently connected to the Internet using IPv6. If this is the case when I change my network connection <maybe> my ipv4 branch may re-appear.
So, am suggesting that you also check the existence of the ipv4 branch on your system. If it doesn’t exist, then it may exist only as a volatile setting.
Ah, systemd. During this transition a lot of strange things may happen…
On 2013-03-05 17:36, tsu2 wrote:
>
> FYI
> Curious about your findings,
>
> I re-visited what is on my machine(12.2) and to my amazement the entire
> /proc/net/ipv4/ branch is missing (I would swear it existed a year ago).
It does not exist in my 11.4, and this version predates systemd.
–
Cheers / Saludos,
Carlos E. R.
(from 11.4, with Evergreen, x86_64 “Celadon” (Minas Tirith))
SOLVED
thank to bugzilla guys, the problem is solved. It was not a bug! the FW_KERNEL_SECURITY parameter in /etc/sysconfig/ allows you to stop SuSeFirewall from automatically setting several sysctl network related parameters.