ip addr show
# 或
ifconfig
sudo ip addr add 192.168.1.100/24 dev eth0
sudo ip link set eth0 up
# /etc/netplan/01-netcfg.yaml
network:
version: 2
renderer: networkd
ethernets:
eth0:
dhcp4: no
addresses: [192.168.1.100/24]
gateway4: 192.168.1.1
nameservers:
addresses: [8.8.8.8, 8.8.4.4]
应用配置:
sudo netplan apply
# /etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=static
ONBOOT=yes
IPADDR=192.168.1.100
NETMASK=255.255.255.0
GATEWAY=192.168.1.1
DNS1=8.8.8.8
DNS2=8.8.4.4
重启网络服务:
sudo systemctl restart network
查看当前规则:
sudo iptables -L -n -v
允许SSH访问:
sudo iptables -A INPUT -p tcp --dport 22 -j ACCEPT
允许HTTP/HTTPS访问:
sudo iptables -A INPUT -p tcp --dport 80 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 443 -j ACCEPT
设置默认策略:
sudo iptables -P INPUT DROP
sudo iptables -P FORWARD DROP
sudo iptables -P OUTPUT ACCEPT
保存规则(根据发行版不同):
# Ubuntu/Debian
sudo iptables-save > /etc/iptables.rules
# CentOS/RHEL
sudo service iptables save
查看状态:
sudo firewall-cmd --state
常用命令:
# 查看所有区域
sudo firewall-cmd --list-all-zones
# 查看默认区域配置
sudo firewall-cmd --list-all
# 添加服务
sudo firewall-cmd --permanent --add-service=http
sudo firewall-cmd --permanent --add-service=https
# 添加端口
sudo firewall-cmd --permanent --add-port=8080/tcp
# 重新加载配置
sudo firewall-cmd --reload
ping google.com
ping -c 4 8.8.8.8 # 发送4个包后停止
traceroute google.com
# 或
tracepath google.com
netstat -tulnp # 查看监听端口
ss -tulnp # 更现代的替代方案
nslookup google.com
dig google.com
ip -s link
sudo ip link set eth0 up
检查/etc/resolv.conf
文件:
nameserver 8.8.8.8
nameserver 8.8.4.4
临时禁用防火墙进行测试:
# iptables
sudo iptables -F
# firewalld
sudo systemctl stop firewalld
ip route show
route -n
# systemd系统
sudo systemctl restart networking # Ubuntu/Debian
sudo systemctl restart NetworkManager # CentOS/RHEL
# 传统系统
sudo /etc/init.d/networking restart
通过以上配置和工具,您应该能够有效地管理和诊断Linux系统的网络连接和防火墙设置。