Command for Rsync over SSH – Unix/Linux

Command for Rsync over SSH   Common Syntax for Rsync: # rsync [options] Source Destinations. Set up a secure backup with rsync + SSH of one system to the other. backup.example.com# rsync -avz –numeric-ids –delete root@myserver.example.com:/path/ /backup/myserver/ To do the backup, you have to be root on the remote server, because some files are only root […]

How to stop syn attack on linux server

The SYN (TCP connection request) attack is a common denial of service (DoS) technique. A SYN flood is a form of denial-of-service attack in which an attacker sends a succession ofSYN requests to a target’s system When a client attempts to start a TCP connection to a server, the client and server exchange a series […]