On my network, I have a SERVER
with 3 NICs, each on a separate subnet A
, B
, and C
.
I also have a user, JOE
who uses SSH to login to SERVER
The issue is, JOE
can log in on any of the interfaces:
$ ssh joe@server-a
] Welcome to SERVER
exit
$ ssh joe@server-b
] Welcome to SERVER
exit
$ ssh joe@server-b
] Welcome to SERVER
exit
I would like an easy way to prevent JOE
from logging to the B
& C
interfaces. (Alternately, only allow JOE
to log in to the A interface).
Is this possible? I have hundreds of servers, and I'll have to this to many of them, so simple solutions are preferred.
I'm running Red Hat 7.x
I'm on a closed network, so please don't recommend 3rd party products -- I won't be able to get them.
TIA!