The ICMP redirect messages modify the kernel routing table in an undesirable way; it should be disabled from both manageability and security considerations.
The followings show some configuration command examples for different OS kernels.
sysctl net.inet.icmp.drop_redirect=1
sysctl net.ipv4.conf.all.accept_redirects=0
sysctl net.ipv6.conf.all.accept_redirects=0
ipadm set-prop -p _ignore_redirect=1 ipv4
ipadm set-prop -p _ignore_redirect=1 ipv6
sh
echo "_rtredirect/W 01040000" | adb -k -w /vmunix /dev/mem... read more
After reading Bernhold's Nine different audio encoders 100-pass recompression test, I had an idea of quickly testing some free encoders for common audio codecs available from ffmpeg(1).
So I came up the following Unix shell script in a few minutes:
```sh