You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I'm trying to implement an auto-notification system which sends me an email when an user connects through Wetty.
Describe the solution you'd like
I have already implemented the following configuration in /etc/ssh/sshrc, which sends me an email when an user connects via SSH. The same doesn't work when connecting from Wetty.
ip=`echo $SSH_CONNECTION | cut -d " " -f 1`
logger -t ssh-wrapper $USER login from $ip
echo "$USER - $ip" | mail -s "SECURITY ALERT: $USER has logged in from $ip" mymail@gmail.com &
Describe alternatives you've considered
I see from documentation that, when running Wetty as root, /bin/login is used for login. It's not clear to me how the same script developed for SSH can be used for /bin/login access.
Additional context
I'm running Wetty as a systemd unit file, configured as follows:
Is your feature request related to a problem? Please describe.
I'm trying to implement an auto-notification system which sends me an email when an user connects through Wetty.
Describe the solution you'd like
I have already implemented the following configuration in /etc/ssh/sshrc, which sends me an email when an user connects via SSH. The same doesn't work when connecting from Wetty.
Describe alternatives you've considered
I see from documentation that, when running Wetty as root, /bin/login is used for login. It's not clear to me how the same script developed for SSH can be used for /bin/login access.
Additional context
I'm running Wetty as a systemd unit file, configured as follows:
The text was updated successfully, but these errors were encountered: