ubuntu配置网卡的metric

metric

配置网卡的默认metric

给网卡配置默认的metric值,当添加路由的时候如果没有手动指定 metric 值,则使用默认值,默认值为 -1 ,表示自动配置路由的metric值。metric 数值越大,路由的优先级越低。

没有 NetworkManager 的情况下设置

修改位于/etc/sysconfig/network-scripts/目录下的ifcfg-<interface>文件,<interface>是接口的名称,添加以下内容

METRIC=XXXX

重新启动network服务生效

service network restart

使用 NetworkManager 配置metric

使用nmclinmtui ,或者GUI修改路由的Metric
例如,添加一条名为的连接external 的 metric

nmcli connection modify external ipv4.route-metric 600

重新加载连接生效

nmcli connection up external

注意:ipv4.route-metric 参数可以更改所有该连接对应网卡的所有路由的 metric 值,但是。。。对应手动指定了metric 值的路由,是不会修改的。也就是配置网卡的默认metric,-1表示自动配置metric

[root@oracle-linux7-9-5 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         10.0.0.2        0.0.0.0         UG    100    0        0 ens33
10.0.0.0        0.0.0.0         255.255.255.0   U     100    0        0 ens33
172.16.0.0      0.0.0.0         255.255.255.0   U     105    0        0 ens35
172.16.1.0      0.0.0.0         255.255.255.0   U     600    0        0 ens36
192.168.1.0     172.16.0.1      255.255.255.0   UG    105    0        0 ens35
192.168.1.0     172.16.1.1      255.255.255.0   UG    600    0        0 ens36
[root@oracle-linux7-9-5 ~]# nmcli connection show vpn2 | grep -E 'routes|metric|ens36'
connection.interface-name:              ens36
ipv4.routes:                            { ip = 192.168.1.0/24, nh = 172.16.1.1 }
ipv4.route-metric:                      600
ipv4.ignore-auto-routes:                no
ipv6.routes:                            --
ipv6.route-metric:                      -1
ipv6.ignore-auto-routes:                no
GENERAL.DEVICES:                        ens36

# 可以看到网络连接vpn2,对应的路由条目没有指定metric值,所以该网卡对应的所有路由条目的metric值都是ipv4.route-metric的值

范例:手动修改路由的metric值

[root@oracle-linux7-9-5 ~]# nmcli connection modify vpn2 ipv4.routes '192.168.1.0/24 172.16.1.1 300'
[root@oracle-linux7-9-5 ~]# nmcli connection up vpn2
Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/16)
[root@oracle-linux7-9-5 ~]# route -n | grep ens36
172.16.1.0      0.0.0.0         255.255.255.0   U     600    0        0 ens36
192.168.1.0     172.16.1.1      255.255.255.0   UG    300    0        0 ens36

修改路由的优先级

没有 NetworkManager 的情况下设置

创建或修改位于/etc/sysconfig/network-scripts/目录下route-<interface>文件,<interface>是网卡接口的名称

文件的格式如下

<network/prefix> via <gateway> <metric "value">
<network/prefix>    指定目标IP或者网段
<gateway>           指定下一跳的地址
<metric "value">    指定路由的优先级,metric值越高,路由的优先级越低

范例:

# cat /etc/sysconfig/network-scripts/route-<interface>
10.0.0.0/24 via 192.51.100.10 metric 200
10.0.1.0/24 via 192.51.10.20 metric 50

让路由生效

ifup <interface>

使用 NetworkManager 配置metric

  • 修改现有连接的metric

    nmcli connection modify ens192 ipv4.routes "10.0.0.0/24 192.51.100.10 400"
    
  • 为一条连接添加路由并配置metric

    nmcli connection modify external +ipv4.routes "10.0.0.0/24 192.0.2.30 350"
    

让配置生效

nmcli connection up ens192

大小路由优先级

在路由表中既有大路由,又包含小的路由,例如下面这种

10.0.0.0/16 via 192.51.100.10 metric 200    # 大路由
10.0.0.0/24 via 192.51.10.20 metric 50      # 小路由

实验环境
小路由VPN1,网卡ens35,对应网关172.16.0.1
大路由VPN2,网卡ens36,对应网关172.16.1.1

# 配置小路由
[root@oracle-linux7-9-5 ~]# nmcli connection modify vpn1 ipv4.routes '192.168.1.0/24 172.16.0.1 200'
[root@oracle-linux7-9-5 ~]# nmcli connection show vpn1 | egrep 'metric|routes|ens35'
connection.interface-name:              ens35
ipv4.routes:                            { ip = 192.168.1.0/24, nh = 172.16.0.1, mt = 200 }
ipv4.route-metric:                      -1
ipv4.ignore-auto-routes:                no
ipv6.routes:                            --
ipv6.route-metric:                      -1
ipv6.ignore-auto-routes:                no
GENERAL.DEVICES:                        ens35

# 配置大路由
[root@oracle-linux7-9-5 ~]# nmcli connection modify vpn2 ipv4.routes '192.168.0.0/16 172.16.1.1 200'
[root@oracle-linux7-9-5 ~]# nmcli connection up vpn2
Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/30)
[root@oracle-linux7-9-5 ~]# nmcli connection show vpn2 | egrep 'metric|routes|ens36'
connection.interface-name:              ens36
ipv4.routes:                            { ip = 192.168.0.0/16, nh = 172.16.1.1, mt = 200 }
ipv4.route-metric:                      -1
ipv4.ignore-auto-routes:                no
ipv6.routes:                            --
ipv6.route-metric:                      -1
ipv6.ignore-auto-routes:                no
GENERAL.DEVICES:                        ens36

# 最终路由,大路由的网关是172.16.1.1,小路由是172.16.0.1
[root@oracle-linux7-9-5 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         10.0.0.2        0.0.0.0         UG    100    0        0 ens33
10.0.0.0        0.0.0.0         255.255.255.0   U     100    0        0 ens33
172.16.0.0      0.0.0.0         255.255.255.0   U     113    0        0 ens35
172.16.1.0      0.0.0.0         255.255.255.0   U     114    0        0 ens36
192.168.0.0     172.16.1.1      255.255.0.0     UG    200    0        0 ens36
192.168.1.0     172.16.0.1      255.255.255.0   UG    200    0        0 ens35

# 发现是小的路由优先生效
[root@oracle-linux7-9-5 ~]# traceroute -n 192.168.1.9
traceroute to 192.168.1.9 (192.168.1.9), 30 hops max, 60 byte packets
 1  172.16.0.1  0.621 ms  0.569 ms  0.564 ms
 2  192.168.1.9  1.071 ms  1.112 ms  1.108 ms

担心是添加路由的顺序导致,小路由在前,路由表优先匹配,删除大小路由重新测试

# 删除大小路由
nmcli connection modify vpn1 ipv4.routes ''
nmcli connection up vpn1
nmcli connection modify vpn2 ipv4.routes ''
nmcli connection up vpn2
# 这次先添加大路由,后添加小路由
nmcli connection modify vpn2 ipv4.routes '192.168.0.0/16 172.16.1.1 200'
nmcli connection up vpn2
nmcli connection modify vpn1 ipv4.routes '192.168.1.0/24 172.16.0.1 200'
nmcli connection up vpn1
# 最终路由表依然是大路由出现在了前面,目前metric相同,开始测试
[root@oracle-linux7-9-5 ~]# traceroute -n 192.168.1.9
traceroute to 192.168.1.9 (192.168.1.9), 30 hops max, 60 byte packets
 1  172.16.0.1  0.810 ms  0.764 ms  0.760 ms
 2  192.168.1.9  1.223 ms  1.218 ms  1.214 ms
 `最终还是走小路由`

降低小路由metric值,也就是提高他的优先级,看看效果

[root@oracle-linux7-9-5 ~]# nmcli connection show vpn1 | egrep 'metric|routes|ens36'
ipv4.routes:                            { ip = 192.168.0.0/16, nh = 172.16.1.1, mt = 200 }
ipv4.route-metric:                      -1
ipv4.ignore-auto-routes:                no
ipv6.routes:                            --
ipv6.route-metric:                      -1
ipv6.ignore-auto-routes:                no

# 修改metric值
[root@oracle-linux7-9-5 ~]# nmcli connection modify vpn1 ipv4.routes '192.168.0.0/24 172.16.0.1 1'
[root@oracle-linux7-9-5 ~]# nmcli connection up vpn1
Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/27)
[root@oracle-linux7-9-5 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         10.0.0.2        0.0.0.0         UG    100    0        0 ens33
10.0.0.0        0.0.0.0         255.255.255.0   U     100    0        0 ens33
172.16.0.0      0.0.0.0         255.255.255.0   U     111    0        0 ens35
172.16.1.0      0.0.0.0         255.255.255.0   U     110    0        0 ens36
192.168.0.0     172.16.0.1      255.255.255.0   UG    1      0        0 ens35
192.168.0.0     172.16.1.1      255.255.0.0     UG    200    0        0 ens36
# 发现还是大的路由生效
[root@oracle-linux7-9-5 ~]# traceroute -n 192.168.1.9
traceroute to 192.168.1.9 (192.168.1.9), 30 hops max, 60 byte packets
 1  172.16.1.1  0.613 ms  0.563 ms  0.534 ms
 2  192.168.1.9  0.999 ms  0.955 ms  0.922 ms

小路由优先级更高
删除大路由测试小路由是否生效

[root@oracle-linux7-9-5 ~]# nmcli connection modify vpn2 ipv4.routes ''
[root@oracle-linux7-9-5 ~]# nmcli connection up vpn2
Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/28)
[root@oracle-linux7-9-5 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         10.0.0.2        0.0.0.0         UG    100    0        0 ens33
10.0.0.0        0.0.0.0         255.255.255.0   U     100    0        0 ens33
172.16.0.0      0.0.0.0         255.255.255.0   U     119    0        0 ens35
172.16.1.0      0.0.0.0         255.255.255.0   U     120    0        0 ens36
192.168.1.0     172.16.0.1      255.255.255.0   UG    200    0        0 ens35
[root@oracle-linux7-9-5 ~]# traceroute -n 192.168.1.9
traceroute to 192.168.1.9 (192.168.1.9), 30 hops max, 60 byte packets
 1  172.16.0.1  0.671 ms  0.620 ms  0.586 ms
 2  192.168.1.9  0.792 ms  0.759 ms  0.722 ms

删除小路由测试大路由是否生效

[root@oracle-linux7-9-5 ~]# nmcli connection modify vpn1 ipv4.routes ''
[root@oracle-linux7-9-5 ~]# nmcli connection up vpn1
Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/41)
[root@oracle-linux7-9-5 ~]# nmcli connection modify vpn2 ipv4.routes ''
[root@oracle-linux7-9-5 ~]# nmcli connection up vpn2
Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/42)
[root@oracle-linux7-9-5 ~]# nmcli connection modify vpn2 ipv4.routes '192.168.0.0/16 172.16.1.1 200'
[root@oracle-linux7-9-5 ~]# nmcli connection up vpn2
Connection successfully activated (D-Bus active path: /org/freedesktop/NetworkManager/ActiveConnection/43)
[root@oracle-linux7-9-5 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         10.0.0.2        0.0.0.0         UG    100    0        0 ens33
10.0.0.0        0.0.0.0         255.255.255.0   U     100    0        0 ens33
172.16.0.0      0.0.0.0         255.255.255.0   U     121    0        0 ens35
172.16.1.0      0.0.0.0         255.255.255.0   U     122    0        0 ens36
192.168.0.0     172.16.1.1      255.255.0.0     UG    200    0        0 ens36
[root@oracle-linux7-9-5 ~]# traceroute -n 192.168.1.9
traceroute to 192.168.1.9 (192.168.1.9), 30 hops max, 60 byte packets
 1  172.16.1.1  0.611 ms  0.559 ms  0.605 ms
 2  192.168.1.9  1.247 ms  1.242 ms  1.239 ms

提高大路由的metric,看看效果

[root@oracle-linux7-9-5 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         10.0.0.2        0.0.0.0         UG    100    0        0 ens33
10.0.0.0        0.0.0.0         255.255.255.0   U     100    0        0 ens33
172.16.0.0      0.0.0.0         255.255.255.0   U     125    0        0 ens35
172.16.1.0      0.0.0.0         255.255.255.0   U     124    0        0 ens36
192.168.0.0     172.16.1.1      255.255.0.0     UG    200    0        0 ens36
192.168.1.0     172.16.0.1      255.255.255.0   UG    200    0        0 ens35

# 提高大路由优先级
nmcli connection modify vpn2 ipv4.routes '192.168.0.0/16 172.16.1.1 1'
nmcli connection up vpn2
[root@oracle-linux7-9-5 ~]# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         10.0.0.2        0.0.0.0         UG    100    0        0 ens33
10.0.0.0        0.0.0.0         255.255.255.0   U     100    0        0 ens33
172.16.0.0      0.0.0.0         255.255.255.0   U     125    0        0 ens35
172.16.1.0      0.0.0.0         255.255.255.0   U     126    0        0 ens36
192.168.0.0     172.16.1.1      255.255.0.0     UG    1      0        0 ens36
192.168.1.0     172.16.0.1      255.255.255.0   UG    200    0        0 ens35
# 测试还是小路由生效
[root@oracle-linux7-9-5 ~]# traceroute -n 192.168.1.9
traceroute to 192.168.1.9 (192.168.1.9), 30 hops max, 60 byte packets
 1  172.16.0.1  0.808 ms  0.749 ms  0.718 ms
 2  192.168.1.9  1.552 ms  1.547 ms  1.543 ms
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345

推荐阅读更多精彩内容