You can use iperf that use client and server scenario to test network speed between two Linux based servers. The tool iperf is available in EPEL free repository else you can download from https://iperf.fr/iperf-download.php The following iperf command will send a buffer size enough to test network speed for 120 seconds iperf3 -i 5 -t …
Author: Albert
Why do Linux Kernel log “martian source” in log file /var/log/messages?
Mention of martian source in file /var/log/messages indicates a packet received on the active network interface eth0 whose source or destination IP address is not correct. An example of this scenario is source network IP address is already configured on the current system throwing martian source in log files. All this indicates a configuration error …
How to configure a SSH tunnel?
On the client machine perform the following step: [root@host]# ssh -N -L :: user@remote-machine-ip From a new console/terminal execute the telnet command as follows: [root@host]# telnet localhost This kb is relevant to the following; Encrypt the traffic by SSH tunneling the connection to remote host. Encrypt unencrypted network traffic