Linux之ip命令

ip命令是route2的一个网络配置工具,用于取代ifconfig,route等命令。此命令只是临时添加,重启网卡IP丢失。

常用参数

link:常用于查看网看属性

addr:用于配置/删除多IP

route:用于配置路由信息

rule:用于查看路由表

命令详解:

ip link:主要用于查看网卡属性,或者开启,关闭网卡

show

set

例:show

[[email protected] ~]# ip link show   #####查看所有网卡的硬件属性,不包括IP地址

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN

link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00

2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000

link/ether 00:0c:29:01:bf:a0 brd ff:ff:ff:ff:ff:ff

3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000

link/ether 00:0c:29:01:bf:aa brd ff:ff:ff:ff:ff:ff

[[email protected] ~]# ip link show eth0  ########查看某一块网卡信息

2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000

link/ether 00:0c:29:01:bf:a0 brd ff:ff:ff:ff:ff:ff

[[email protected] ~]# ip -s link show eth1    ######  -s  参数查看统计信息

3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000

link/ether 00:0c:29:01:bf:aa brd ff:ff:ff:ff:ff:ff

RX: bytes  packets  errors  dropped overrun mcast

2085187    28951    0       0       0       0

TX: bytes  packets  errors  dropped carrier collsns

5161       35       0       0       0       0

例:set

# ip link set eth1 up|down          ####关闭或开始某个网卡

ip addr:用于管理多IP

add  增加一个IP

del  删除IP

show  显示IP

flush  清空IP

例:

[[email protected] ~]# ip addr add 10.1.8.16/8 dev eth1  ###eth1增加IP,并没有使用别名

[[email protected] ~]# ip addr

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN

link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00

inet 127.0.0.1/8 scope host lo

inet6 ::1/128 scope host

valid_lft forever preferred_lft forever

2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000

link/ether 00:0c:29:01:bf:a0 brd ff:ff:ff:ff:ff:ff

inet 172.16.16.173/24 brd 172.16.16.255 scope global eth0

inet6 fe80::20c:29ff:fe01:bfa0/64 scope link

valid_lft forever preferred_lft forever

3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000

link/ether 00:0c:29:01:bf:aa brd ff:ff:ff:ff:ff:ff

inet 192.168.7.173/24 brd 192.168.7.255 scope global eth1

inet 10.1.8.16/8 scope global eth1   注:ifconfig看不到

inet6 fe80::20c:29ff:fe01:bfaa/64 scope link

valid_lft forever preferred_lft forever

[[email protected] ~]# ip addr add 192.168.29.10/24 dev eth1 label eth1:1

用label关键字增加子卡

[[email protected] ~]# ifconfig

eth0      Link encap:Ethernet  HWaddr 00:0C:29:01:BF:A0

inet addr:172.16.16.173  Bcast:172.16.16.255  Mask:255.255.255.0

inet6 addr: fe80::20c:29ff:fe01:bfa0/64 Scope:Link

UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

RX packets:27735 errors:0 dropped:0 overruns:0 frame:0

TX packets:549 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:1000

RX bytes:1978580 (1.8 MiB)  TX bytes:67070 (65.4 KiB)

eth1      Link encap:Ethernet  HWaddr 00:0C:29:01:BF:AA

inet addr:192.168.7.173  Bcast:192.168.7.255  Mask:255.255.255.0

inet6 addr: fe80::20c:29ff:fe01:bfaa/64 Scope:Link

UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

RX packets:31549 errors:0 dropped:0 overruns:0 frame:0

TX packets:35 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:1000

RX bytes:2277774 (2.1 MiB)  TX bytes:5161 (5.0 KiB)

eth1:1    Link encap:Ethernet  HWaddr 00:0C:29:01:BF:AA

inet addr:192.168.29.10  Bcast:0.0.0.0  Mask:255.255.255.0

UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

lo        Link encap:Local Loopback

inet addr:127.0.0.1  Mask:255.0.0.0

inet6 addr: ::1/128 Scope:Host

UP LOOPBACK RUNNING  MTU:16436  Metric:1

RX packets:16 errors:0 dropped:0 overruns:0 frame:0

TX packets:16 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:0

RX bytes:960 (960.0 b)  TX bytes:960 (960.0 b)

[[email protected] ~]# ip addr del 192.168.29.10/24 dev eth1:1   ###删除eth1:1

[[email protected] ~]# ifconfig

eth0      Link encap:Ethernet  HWaddr 00:0C:29:01:BF:A0

inet addr:172.16.16.173  Bcast:172.16.16.255  Mask:255.255.255.0

inet6 addr: fe80::20c:29ff:fe01:bfa0/64 Scope:Link

UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

RX packets:29138 errors:0 dropped:0 overruns:0 frame:0

TX packets:627 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:1000

RX bytes:2083498 (1.9 MiB)  TX bytes:76506 (74.7 KiB)

eth1      Link encap:Ethernet  HWaddr 00:0C:29:01:BF:AA

inet addr:192.168.7.173  Bcast:192.168.7.255  Mask:255.255.255.0

inet6 addr: fe80::20c:29ff:fe01:bfaa/64 Scope:Link

UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

RX packets:32839 errors:0 dropped:0 overruns:0 frame:0

TX packets:35 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:1000

RX bytes:2372722 (2.2 MiB)  TX bytes:5161 (5.0 KiB)

lo        Link encap:Local Loopback

inet addr:127.0.0.1  Mask:255.0.0.0

inet6 addr: ::1/128 Scope:Host

UP LOOPBACK RUNNING  MTU:16436  Metric:1

RX packets:16 errors:0 dropped:0 overruns:0 frame:0

TX packets:16 errors:0 dropped:0 overruns:0 carrier:0

collisions:0 txqueuelen:0

RX bytes:960 (960.0 b)  TX bytes:960 (960.0 b)

[[email protected] ~]# ip addr del 10.1.8.16/8 dev eth1  ####删除IP

[[email protected] ~]# ip addr show

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN

link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00

inet 127.0.0.1/8 scope host lo

inet6 ::1/128 scope host

valid_lft forever preferred_lft forever

2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000

link/ether 00:0c:29:01:bf:a0 brd ff:ff:ff:ff:ff:ff

inet 172.16.16.173/24 brd 172.16.16.255 scope global eth0

inet6 fe80::20c:29ff:fe01:bfa0/64 scope link

valid_lft forever preferred_lft forever

3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000

link/ether 00:0c:29:01:bf:aa brd ff:ff:ff:ff:ff:ff

inet 192.168.7.173/24 brd 192.168.7.255 scope global eth1

inet6 fe80::20c:29ff:fe01:bfaa/64 scope link

valid_lft forever preferred_lft forever

ip route

show:显示路由

add:增加路由

del:删除路由

[[email protected] ~]# ip route show  查看路由

192.168.7.0/24 dev eth1  proto kernel  scope link  src 192.168.7.173

172.16.16.0/24 dev eth0  proto kernel  scope link  src 172.16.16.173

169.254.0.0/16 dev eth0  scope link  metric 1002

10.0.0.0/8 dev eth1  proto kernel  scope link  src 10.1.5.10

[[email protected] ~]# route -n    查看路由

Kernel IP routing table

Destination     Gateway         Genmask         Flags Metric Ref    Use Iface

192.168.7.0     0.0.0.0         255.255.255.0   U     0      0        0 eth1

172.16.16.0     0.0.0.0         255.255.255.0   U     0      0        0 eth0

169.254.0.0     0.0.0.0         255.255.0.0     U     1002   0        0 eth0

10.0.0.0        0.0.0.0         255.0.0.0       U     0      0        0 eth1

[[email protected] ~]# ip route add 10.0.8.0/24 via 192.168.7.1

等价于: ip route add 10.0.8.0/24 dev eth1

[[email protected] ~]# ip route show

192.168.7.0/24 dev eth1  proto kernel  scope link  src 192.168.7.173

172.16.16.0/24 dev eth0  proto kernel  scope link  src 172.16.16.173

10.0.8.0/24 via 192.168.7.1 dev eth1

169.254.0.0/16 dev eth0  scope link  metric 1002

[[email protected] ~]# ip route del 10.0.8.0/24

[[email protected] ~]# ip route show   ########删除路由

192.168.7.0/24 dev eth1  proto kernel  scope link  src 192.168.7.173

172.16.16.0/24 dev eth0  proto kernel  scope link  src 172.16.16.173

169.254.0.0/16 dev eth0  scope link  metric 1002

ip rule:查看默认路由,策略路由,本地路由

show|list

[[email protected] ~]# ip rule show

0:from all lookup local

32766:from all lookup main

32767:from all lookup default

时间: 2024-12-21 12:19:41

Linux之ip命令的相关文章

linux 下ip命令对比ifconfig命令

原文:https://linux.cn/article-3144-1.html ------------------------------------------------------------------------------------------------------------------------------------------ 试试Linux下的ip命令,ifconfig已经过时了 linux的ip命令和ifconfig类似,但前者功能更强大,并旨在取代后者.使用ip

linux下ip命令用法

配置数据转发,可以通过 1.路由转发即用用路由器实现: 2.使用NAT转发: 简单的说: 路由表内的信息只是指定数据包在路由器内的下一个去处.并不能改变数据包本身的地址信息.即它只是“换条路而已,目的地不变”: 而地址转换是把数据包来时的地址转换成可以上网的IP地址,这样才能通过验证使主机到INTERNET可达.即“换掉目的地”: 设置和删除Ip地址 设置一个IP地址,可以使用下列ip命令: # ip addr add 192.168.0.193/24 dev wlan0 请注意IP地址要有一个

[svc]linux的ip命令操作接口和路由表

参考: https://www.tecmint.com/ip-command-examples/ 学会linux的配置ip,配置网关,添加路由等命令 man ip man ip address man ip route ip address help 可简写 ip a s 操作&查看接口 - 查看所有接口ip+mac ip a - 查看eth0的ip+mac ip a s eth0 - 给一个接口设置多个ip (ip addr add) ip a a 12.1.1.1/24 dev eth0 i

Linux下的ip命令

linux的ip命令和ifconfig类似,但前者功能更强大,并旨在取代后者.使用ip命令,只需一个命令,你就能很轻松地执行一些网络管理任务.ifconfig是net-tools中已被废弃使用的一个命令,许多年前就已经没有维护了.iproute2套件里提供了许多增强功能的命令,ip命令即是其中之一. Net tools vs Iproute2 要安装ip,请点击这里下载iproute2套装工具 .不过,大多数Linux发行版已经预装了iproute2工具. 你也可以使用git命令来下载最新源代码

linux命令总结之ip命令

Linux的ip命令和ifconfig类似,但前者功能更强大,并旨在取代后者.使用ip命令,只需一个命令,你就能很轻松地执行一些网络管理任务.ifconfig是net-tools中已被废弃使用的一个命令,许多年前就已经没有维护了.iproute2套件里提供了许多增强功能的命令,ip命令即是其中之一. 要安装ip,请点击这里下载iproute2套装工具 .不过,大多数Linux发行版已经预装了iproute2工具. 你也可以使用git命令来下载最新源代码来编译: $ git clone https

linux IP命令总结

一.作用 linux的ip命令和ifconfig类似,但ip命令功能更强大,ip是iproute2软件包里的一个网络配置工具,使用权限为超级用户,它是用来显示或操作linux主机的路由,设备,策略路由和隧道. 二.用法 ip [OPTIONS] OBJECT { COMMAND | help } ip [ -force ] -batch filename OBJECT := { link | address | addrlabel | route | rule | neigh | ntable

Linux下的ip命令,除了ifconfig还有很多

linux的ip命令和ifconfig类似,但前者功能更强大,并旨在取代后者.使用ip命令,只需一个命令,你就能很轻松地执行一些网络管理任务.ifconfig是net-tools中已被废弃使用的一个命令,许多年前就已经没有维护了.iproute2套件里提供了许多增强功能的命令,ip命令即是其中之一. 要安装ip,请点击这里下载iproute2套装工具 .不过,大多数Linux发行版已经预装了iproute2工具. 你也可以使用git命令来下载最新源代码来编译: $ git clone https

Linux命令之ip命令

linux的ip命令和ifconfig类似,但前者功能更强大,并旨在取代后者.使用ip命令,只需一个命令,你就能很轻松地执行一些网络管理任务.ifconfig是net-tools中已被废弃使用的一个命令,许多年前就已经没有维护了.iproute2套件里提供了许多增强功能的命令,ip命令即是其中之一. 要安装ip,请点击这里下载iproute2套装工具 .不过,大多数Linux发行版已经预装了iproute2工具. 你也可以使用git命令来下载最新源代码来编译: $ git clone https

ip命令和ifconfig命令(转载)

Linux的ip命令和ifconfig类似,但前者功能更强大,并旨在取代后者.使用ip命令,只需一个命令,你就能很轻松地执行一些网络管理任务.ifconfig是net-tools中已被废弃使用的一个命令,许多年前就已经没有维护了.iproute2套件里提供了许多增强功能的命令,ip命令即是其中之一. 设置和删除Ip地址 要给你的机器设置一个IP地址,可以使用下列ip命令: 1. $ sudo ip addr add 192.168.0.193/24 dev wlan0 请注意IP地址要有一个后缀