- Resolve SSH lockout after reboot caused by systemd lid switch suspend - Add systemd-logind configuration to disable lid switch handling - Add NetworkManager configuration for static IP and power management - Update network troubleshooting documentation with complete solution - Include diagnostic commands and deployment steps 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
485 B
Plaintext
22 lines
485 B
Plaintext
# NetworkManager configuration for homelab server
|
|
# Deploy: sudo cp config/networkmanager/01-homelab.conf /etc/NetworkManager/conf.d/
|
|
|
|
[main]
|
|
# Use internal DHCP client for faster startup
|
|
dhcp=internal
|
|
|
|
# Don't manage /etc/resolv.conf to avoid DNS issues
|
|
dns=none
|
|
|
|
[logging]
|
|
# Reduce log verbosity
|
|
level=WARN
|
|
|
|
[connection]
|
|
# Ensure ethernet has priority over WiFi
|
|
ethernet.cloned-mac-address=preserve
|
|
|
|
[device]
|
|
# Disable WiFi power saving
|
|
wifi.powersave=2
|
|
wifi.scan-rand-mac-address=no |