SSH Connection Problem: Can't Connect to Server
SSH connection troubleshooting guide: Path.net firewall rules, Default Block, creating a filter rule for SSH port, and step-by-step troubleshooting.
Packet capture guide using Linux tcpdump and Windows Wireshark. Create PCAP files for network analysis, troubleshoot connectivity issues, and submit to support.
Packet capture (PCAP) is the process of recording network traffic. It's used to analyze network issues, connection problems, and attack traffic.
PCAP files contain raw network traffic records. They can be opened and analyzed with tools like Wireshark.
sudo apt-get install tcpdump # Debian/Ubuntu
sudo yum install tcpdump # CentOS/RHEL
# Capture on all interfaces, specific port
sudo tcpdump --interface any -w capture.pcap -nn port 25565
# Capture from specific IP
sudo tcpdump --interface any -w capture.pcap -nn host 1.2.3.4
# Limited packet count
sudo tcpdump --interface any -w capture.pcap -nn -c 1000 port 25565
Stop capture with CTRL+C.
Adjust capture duration to the time window when the issue occurs. Usually 1-5 minutes is sufficient.
.pcapUnfiltered capture can create very large files. Use port or IP filters when possible.
.pcap fileOn Linux use 'sudo tcpdump --interface any -w capture.pcap -nn port PORT_NO', on Windows use Wireshark.
Create a support ticket at my.rexe.tr and upload the PCAP file as an attachment.
A 1-5 minute capture is usually sufficient. For intermittent issues, start the capture when the problem occurs and stop it a few seconds after the issue resolves.
SSH connection troubleshooting guide: Path.net firewall rules, Default Block, creating a filter rule for SSH port, and step-by-step troubleshooting.
RDP connection troubleshooting guide: Path.net firewall rules, Default Block, creating a filter rule for RDP port, and step-by-step troubleshooting.
Guide to running MTR network tests with WinMTR and Linux MTR, creating ICMP filter rules, and submitting results to support. Diagnose packet loss and latency.