I had a problem using SSH through tailscale which only happened from time to time:
Dec 21 09:13:48 raspberrypi2 authpriv.crit login[3400]: ILLEGAL ROOT LOGIN on '/dev/pts/4' from '100.117.71.145'
After weeks of scratching my head I finally figured out it was because /etc/securetty had a limited amount of pts entries:
$ grep pts /etc/securetty pts/0 pts/1 pts/2 pts/3
Adding some more fixed the issue:
$ echo 'pts/4 pts/5 pts/6 pts/7' >> /etc/securetty
I suspect this might be the root cause for not being able to access the VRM console from time to time too, since it seemed to happen at the same time of a tailscale ssh login.
Would it be possible add these in the stock image too? Should I create a PR for it, @mvader (Victron Energy) ?