Linux下的网络管理相关知识
linux下的网络管理工具,大致分成了三个系列,最古老的ifcfg系列、iproute2系列以及nm系列。我们会就三个命令进行分析和讲解,接着会讲一下更改IP地址和主机名等永久有效的方法。
一、ifcfg家族系列工具
ifconfig: 配置IP和掩码
route: 配置路由
netstat: 网络状态和统计数据的查看
1. ifconfig:用于查看和配置IP地址,立即生效,但不是永久有效。
使用方法:
ifconfig [接口]
ifconfig 接口 [aftype] options | address ...
选项:
-a: 查看所有接口的IP地址
up:激活接口
down:关闭接口
(1). 查看IP地址
格式: ifconfig [接口]
示例:
~]# ifconfig -a
~]# ifconfig
~]# ifconfig eth0
[[email protected] ~]# ifconfig eth0
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.99.20 netmask 255.255.255.0 broadcast 192.168.99.255
inet6 fe80::b107:482e:27bd:7123 prefixlen 64 scopeid 0x20<link>
ether 00:15:5d:63:5a:04 txqueuelen 1000 (Ethernet)
RX packets 1242117 bytes 334742873 (319.2 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 139089 bytes 15879315 (15.1 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
(2). 配置IP地址
格式:
ifconfig IFACE IP/mask [up]
ifconfig IFACE IP netmask MASK
示例:
~]# ifconfig eth0 172.16.100.11/16
# IP地址的表示方法可以使用ip/prefix的方式
~]# ifconfig eth0 172.16.100.11 netmask 255.255.255.0
#IP地址的表示方法也可以使用IP-ADDR netmask MASK的方法,IP和掩码都可使用点分十进制的方式
2. route,可用于查看配置路由
选项及使用格式
3. netstat
二、 iproute2系列工具
ip OBJECT
addr: 地址和掩码
link: 接口
route: 路由
ss: 状态及统计数据查看
三、nm系列工具
network manager
nmcli: 命令行工具
nmtui: 文本窗口工具
原文地址:http://blog.51cto.com/liu008qing/2298897
时间: 2024-11-05 06:20:41