惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recent Announcements
Recent Announcements
博客园 - Franky
博客园 - 三生石上(FineUI控件)
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
人人都是产品经理
人人都是产品经理
博客园 - 【当耐特】
L
LangChain Blog
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
爱范儿
爱范儿
罗磊的独立博客
博客园_首页
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
月光博客
月光博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
V
Visual Studio Blog
T
Tailwind CSS Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Why SSH Password Login Persisted: cloud-init Drop-in Trap
바람의평온 · 2026-06-22 · via DEV Community

바람의평온

Why SSH Password Login Persisted: The cloud-init Drop-in Configuration Trap

There was a time when I tried to disable SSH password login and use only key authentication to enhance server security. Despite changing the PasswordAuthentication setting to 'no' in the /etc/ssh/sshd_config file and restarting the sshd daemon, I still encountered a situation where password access was possible. I was frustrated that the configuration file I modified wasn't being applied. It made me pause, thinking that some unexpected setting was being enforced. Even though I followed the usual SSH configuration change procedure, I spent some time figuring out why I wasn't getting the desired result. This problem often occurs in cloud environments. I finally found some time on the weekend to organize my findings.

What this post covers

Understanding how OpenSSH configurations are merged from multiple filesIdentifying the mechanism by which cloud-init overwrites SSH settingsHow to check the actual applied SSH configuration using the sshd -T commandFollowing the safe procedure to disable SSH password login*Target Audience:* Developers or system administrators who are confused because their SSH password login disablement settings are not being applied.Difficulty: Intermediate

Problem Situation: The perplexity of password login persisting after sshd_config changes

I planned to enhance server security by disabling SSH password login and allowing only key authentication. Following the standard procedure, I opened the /etc/ssh/sshd_config file, changed the PasswordAuthentication entry to 'no', and restarted the sshd service with sudo systemctl restart ssh. However, I was surprised to find that I could still log in with a password. It was difficult to understand why the changes weren't applied, even though I had clearly modified the settings and restarted the service. I checked the file several times for typos and carefully looked for any commented-out lines. But the problem wasn't in the sshd_config file itself. I had a hunch that the settings were being overwritten elsewhere. This is a common situation you might encounter when initially setting up cloud instances.

Root Cause Analysis: The Trap of cloud-init Generated Drop-in Configurations

The root cause of the problem was that sshd doesn't just read the /etc/ssh/sshd_config file; it also reads additional configuration files within the /etc/ssh/sshd_config.d/ directory. In a cloud instance environment, a tool called cloud-init handles initial setup during boot. In this process, it creates a drop-in file named something like 50-cloud-init.conf in the /etc/ssh/sshd_config.d/ path. This file explicitly contained the PasswordAuthentication yes setting. When sshd merges multiple configuration files, settings in files read later often take precedence. In my case, the 'yes' setting in the drop-in file created by cloud-init took precedence over the 'no' setting in the sshd_config file I modified, keeping password login active. This hidden file made my main configuration changes ineffective. I used the grep command to find the problematic file: sudo grep -ri passwordauthentication /etc/ssh/sshd_config /etc/ssh/sshd_config.d/. This command searches for the string 'passwordauthentication' (case-insensitive) in /etc/ssh/sshd_config and all files within the /etc/ssh/sshd_config.d/ directory. This allowed me to confirm the existence of the 50-cloud-init.conf file.

Resolution Process: Directly Modifying cloud-init Drop-in File and Safe Application

Once the cause was identified, the solution was simple: directly modify the /etc/ssh/sshd_config.d/50-cloud-init.conf file generated by cloud-init. I changed the PasswordAuthentication yes line within that file to PasswordAuthentication no, or I commented out or deleted the line entirely. However, it's crucial to follow important safety procedures during this process. Before disabling password login, you must verify that key authentication is working correctly. I kept an existing SSH session open and then opened a new terminal to attempt connecting to the server using my key file. Only after confirming that key access worked without issues did I proceed with disabling password login. This is because if key access doesn't work and you disable passwords, you might permanently lose access to your server. After modifying the configuration file, you need to restart the sshd service for the changes to take effect. # Change cloud-init drop-in's 'yes' to 'no' # Modify the corresponding line in /etc/ssh/sshd_config.d/50-cloud-init.conf. PasswordAuthentication no sudo systemctl restart ssh I restarted the sshd service with the command above to apply the changed settings.

Verification and Results: Confirming Final Settings with sshd -T and Connection Test

After changing the settings and restarting the service, it's important to verify the final configuration actually applied to sshd. The sudo sshd -T command is very useful here. This command shows in detail how sshd is currently operating and outputs the final merged result of all configuration files. Through this result, I could clearly confirm that the PasswordAuthentication setting was indeed applied as 'no'. sudo sshd -T | grep -i passwordauthentication I was relieved to see 'passwordauthentication no' output when I ran this command. This confirmed that the final settings were correctly reflected. Afterwards, I performed a connection test again from a new terminal. SSH connection was successful with the key file, and when I intentionally tried to connect using a password, I received a 'Permission denied' message, confirming that access was rejected. Thus, the goal of enhancing server security was successfully achieved. In such complex configuration environments, it's crucial to always verify the final applied values directly.

Conclusion

When dealing with SSH configurations in a cloud environment, I learned that you shouldn't just look at the /etc/ssh/sshd_config file, but also check the drop-in files within the /etc/ssh/sshd_config.d/ directory. Configuration files generated by initialization tools like cloud-init can act as unexpected variables. The most important thing is to always verify the actual application of changed settings using the sudo sshd -T command and to follow the safety procedure of first verifying key authentication access in a separate session before disabling password login. I need to keep this well-documented to avoid repeating such mistakes, even when busy.