I'm maintaining a server which was on net for several years before, having loaded NixOS ISO for that. It's very difficult to work with terminal because I get interrupted every several seconds with rejected scanning attempts -- I need to write every command several times hoping that this time no reject would come while I type it and verify that everything is correct. It therefore introduces possibilities for typos (because often you don't see the full line you typed) and general frustration (disclosure: my current main concern ~_^).

nixos-version, Ubuntu/Fedora: lsb_release -a, ...) NixOS pre17.03 09e4b78I tend walk to into our server room and rip out the Ethernet cords until I am done with the initial setup for that very reason :D
I personally change boot.consoleLogLevel for my ISO images as seen at https://github.com/NixOS/nixpkgs/blob/56904d7c423f2b13b37fbd29f39bbb4b52bc7824/nixos/modules/installer/cd-dvd/iso-image.nix#L235, but I guess lowering it could hide more important system issues.
Edit: On the official ISO, sysctl -w kernel.printk="3 4 1 3" is enough to stop the spam... Source: http://superuser.com/questions/351387/how-to-stop-kernel-messages-from-flooding-my-console
On my NixOS install I use networking.firewall.logRefusedConnections = false in configuration.nix to squelch these from spamming constantly, perhaps that should be the default?
Sounds like the real issue is it's logging to your console, interrupting your workflow, which definitely should only be done for critical problems per suggestions by @jokogr.
Heh, my actions are logged as abbradar's (EDIT: support notified).
GitHub seems to have fixed this fast!
Most helpful comment
On my NixOS install I use
networking.firewall.logRefusedConnections = falsein configuration.nix to squelch these from spamming constantly, perhaps that should be the default?Sounds like the real issue is it's logging to your console, interrupting your workflow, which definitely should only be done for critical problems per suggestions by @jokogr.