Network
🌐 Network Configuration
Network Interfaces
# View network interfaces
ip link show # Show all interfaces
ip addr show # Show interfaces with IP
ifconfig # Traditional command
nmcli device show # NetworkManager info
# Enable/disable interface
ip link set eth0 up # Enable interface
ip link set eth0 down # Disable interfaceIP Configuration
# Configure IP address
ip addr add 192.168.1.10/24 dev eth0 # Add IP
ip addr del 192.168.1.10/24 dev eth0 # Remove IP
# DHCP configuration
dhclient eth0 # Request DHCP address
dhclient -r eth0 # Release DHCP address
# Static IP in /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.1.10
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 8.8.8.8 8.8.4.4🔄 Routing
Route Management
Advanced Routing
🔍 Network Diagnostics
Basic Tools
Network Analysis
🛡️ Firewall Configuration
iptables
UFW (Uncomplicated Firewall)
📡 Network Services
SSH Configuration
Network Time Protocol
🔒 Network Security
SSL/TLS
VPN Configuration
📊 Network Monitoring
Performance Monitoring
System Logging
💡 Best Practices
🔧 Troubleshooting
Common Issues
Performance Issues
📝 Network Configuration Files
Important Files
Example Configurations
Last updated