在Linux服务器上配置网络,可以通过多种方法实现,以下是几种常见的方法:
nmcli(NetworkManager命令行工具)是Linux系统中用于配置网络连接的命令行工具。它允许你通过命令行管理网络接口,包括配置静态IP、启用/禁用网络接口等。
添加静态IP:
nmcli connection add type ethernet con-name eth1_con ifname eth1 ip4.address 192.168.1.2/24 gw4 192.168.1.1
启用网络接口:
nmcli connection up id eth1_con
断开设备连接:
nmcli connection down id eth1_con
ip命令是Linux中用于配置和管理网络接口、路由表等的现代工具。它提供了比ifconfig更强大和灵活的功能。
配置静态IP:
ip addr add 192.168.1.10/24 dev eth0
启用网络接口:
ip link set eth0 up
查看路由表:
ip route show
DNS配置通常在/etc/resolv.conf
文件中设置,可以指定DNS服务器的IP地址。
添加DNS服务器:
echo "nameserver 8.8.8.8" | sudo tee -a /etc/resolv.conf
通过上述方法,你可以根据实际需求选择合适的方式来配置Linux服务器的网络。