Monday

how to keep ssh tunnel alive

To keep ssh session alive Create ssh_config file in your home folder with this line:
        
ServerAliveInterval 5

This will keep ssh alive and open.

No comments:

test smtp server with powershell

Send-MailMessage -SMTPServer smtp.domain.com -To [email protected] -From [email protected] -Subject "This is a test email" -Body ...