How to Recover a CentOS Server When SSH Stops Working: Step‑by‑Step Fix

This guide walks through diagnosing a CentOS server where SSH, web, and database services are down, analyzing log files, reinstalling OpenSSH, adjusting file attributes, and configuring iptables and access controls to restore secure remote access.

MaGe Linux Operations
MaGe Linux Operations
MaGe Linux Operations
How to Recover a CentOS Server When SSH Stops Working: Step‑by‑Step Fix

On a Monday, a CentOS server became unreachable via SSH while VNC still worked; web and database services also failed. Log inspection with last showed that login records before the 2nd were cleared, the sshd binary was modified on Saturday night, and the server was remotely rebooted at 2 am on Sunday.

Reviewing /var/log/messages after the reboot revealed that iptables rules were active and the system had endured a large number of SSH brute‑force scans. The test environment hosted Oracle and Squid, and temporary iptables changes had been applied; after the reboot the iptables service started again, but some system files were altered.

Solution

1. Change the root password.

2. Reinstall SSH and restrict access. Because the sshd binary had been altered, the OpenSSH packages were removed and reinstalled. The installed packages were identified with: rpm -qa | grep ssh Resulting packages: openssh-clients, openssh-server, openssh, openssh-askpass. They were removed in dependency order:

yum remove openssh-askpass openssh openssh-server openssh-clients

After removal, the packages were reinstalled using: yum install openssh-askpass openssh-server openssh-clients During installation, an “Operation not permitted” error occurred because the sshd binary had immutable and append attributes set. The hidden attributes were inspected and cleared with: chattr -ia /usr/sbin/sshd After clearing the attributes, yum install openssh-server succeeded.

3. Configure SSH login control. Set allowed internal IP addresses and define whitelist/blacklist rules.

Configure iptables for SSH

The required iptables syntax is:

iptables [-t table] [-A|I|D|R chain] [-i interface] [-p protocol] [-s source] [-d destination] [--dport port] -j action

The filter table with INPUT, OUTPUT, and FORWARD chains is used. For complex rule sets, a shell script can be written and the SSH service restarted after applying the rules.

After configuring, save the rules with /etc/rc.d/init.d/iptables save and apply them using service iptables restart.

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

iptablesLinux securityserver troubleshooting
MaGe Linux Operations
Written by

MaGe Linux Operations

Founded in 2009, MaGe Education is a top Chinese high‑end IT training brand. Its graduates earn 12K+ RMB salaries, and the school has trained tens of thousands of students. It offers high‑pay courses in Linux cloud operations, Python full‑stack, automation, data analysis, AI, and Go high‑concurrency architecture. Thanks to quality courses and a solid reputation, it has talent partnerships with numerous internet firms.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.