When I work from home, I connect from my Linux machine to a VPN, via this command:
$ sudo openconnect --protocol=anyconnect -u usernameatwork --authgroup=MFA foo.bar.baz.work
which will require that I
- insert the password of my local user, simply because I'm running
sudo
, - insert the password of my user in the VPN at work,
- confirm with another device because of MFA.
I've just noticed that
- before step 1,
who
on my local machine tells me I'm the only one logged in my computer:myself tty1 2025-01-14 17:47
- right after step 1,
who
on my local machine tells me I've just logged in again:myself tty1 2025-01-14 17:47myself pts/2 2025-02-03 07:17
What is the meaning of the second line of the output?
I mean, I've connected to a VPN. Why does this mean I've re-logged in my own system?