亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

網(wǎng)絡(luò)技術(shù)

網(wǎng)絡(luò)的路由配置以及Centos7的網(wǎng)絡(luò)組實(shí)現(xiàn)

時(shí)間:2024-06-24 23:38:50 網(wǎng)絡(luò)技術(shù) 我要投稿
  • 相關(guān)推薦

網(wǎng)絡(luò)的路由配置以及Centos7的網(wǎng)絡(luò)組實(shí)現(xiàn)

  路由是互聯(lián)網(wǎng)絡(luò)的核心,沒有路由的網(wǎng)絡(luò)如同一座孤島,掌握路由的配置是IT人員的必備技能。下面是百分網(wǎng)小編精心為大家整理的網(wǎng)絡(luò)的路由配置以及Centos7的網(wǎng)絡(luò)組實(shí)現(xiàn),希望對(duì)大家有幫助,更多內(nèi)容請(qǐng)關(guān)注應(yīng)屆畢業(yè)生網(wǎng)!

  1、路由配置

  路由是互聯(lián)網(wǎng)絡(luò)的核心,沒有路由的網(wǎng)絡(luò)如同一座孤島,掌握路由的配置是IT人員的必備技能。

  例如:現(xiàn)在有三臺(tái)主機(jī)需要通信,其中A和B在同一網(wǎng)段,C在另一網(wǎng)段,這兩個(gè)網(wǎng)段有三個(gè)路由相隔,如何實(shí)現(xiàn)他們之間的通信呢?

  主機(jī)A:IP=192.168.1.100/24

  主機(jī)B:IP=192.168.1.63/24

  主機(jī)C:IP=10.2.110.100/16

  R1的接口0:IP=192.168.1.1/24,接口1:IP=110.1.24.10/24

  R2的接口0:IP=110.1.24.20/24,接口1:IP=72.98.2.10/16

  R3的接口0:IP=72.98.70.20/16,接口1:IP=10.2.0.1/16

  通過分析上面的網(wǎng)絡(luò)環(huán)境,可以得到R1,R2和R3的路由信息,這里我們指定每一個(gè)路由的靜態(tài)路由表

  R1:路由表

  網(wǎng)段 網(wǎng)關(guān)接口

  192.168.1.0/24 0.0.0.0/0 eth0

  110.1.24.10/24 0.0.0.0/0 eth1

  72.98.0.0/16 110.1.24.20 eth1

  10.2.0.0/16    110.1.24.20 eth1

  0.0.0.0/0 110.1.24.20 eth1

  R2:路由表

  網(wǎng)段 網(wǎng)關(guān)接口

  192.168.1.0/24 110.1.24.10 eth0

  110.1.24.10/24 0.0.0.0/0 eth0

  72.98.0.0/16 0.0.0.0/0 eth1

  10.2.0.0/1672.98.70.20 eth1

  0.0.0.0/0 外網(wǎng)IP(這里不寫)

  R3:路由表

  網(wǎng)段 網(wǎng)關(guān)接口

  192.168.1.0/24 72.98.2.10 eth0

  110.1.24.10/24 72.98.2.10 eth0

  72.98.0.0/16 0.0.0.0/0 eth0

  10.2.0.0/160.0.0.0/0 eth1

  0.0.0.0/0 72.98.2.10 eth0

  這里用3臺(tái)centos系統(tǒng)作為路由

  用node1主機(jī)來做route1

  [root@node1~]#ipaddrshowdeveth1

  3:eth1:mtu1500qdiscpfifo_faststateUPqlen1000

  link/ether00:0c:29:e2:96:7cbrdff:ff:ff:ff:ff:ff

  inet192.168.1.1/24scopeglobaleth1

  inet6fe80::20c:29ff:fee2:967c/64scopelink

  valid_lftforeverpreferred_lftforever

  [root@node1~]#ipaddrshowdeveth2

  4:eth2:mtu1500qdiscpfifo_faststateUPqlen1000

  link/ether00:0c:29:e2:96:86brdff:ff:ff:ff:ff:ff

  inet110.1.24.10/24scopeglobaleth2

  inet6fe80::20c:29ff:fee2:9686/64scopelink

  valid_lftforeverpreferred_lftforever

  [root@node1~]#routeadd-net10.2.0.0/16gw110.1.24.20deveth2

  [root@node1~]#route-n

  KernelIProutingtable

  DestinationGatewayGenmaskFlagsMetricRefUseIface

  192.168.1.00.0.0.0255.255.255.0U000eth1

  110.1.24.00.0.0.0255.255.255.0U000eth2

  10.2.0.0110.1.24.20255.255.0.0UG000eth2

  72.98.0.0110.1.24.20255.255.0.0UG000eth2

  10.1.0.00.0.0.0255.255.0.0U000eth0

  169.254.0.00.0.0.0255.255.0.0U10020

  [root@node1~]#echo1>/proc/sys/net/ipv4/ip_forward

  note2用來做route2

  [root@node2~]#ipaddradd110.1.24.20/24deveth1

  [root@node2~]#ipaddradd72.98.2.10/16deveth2

  [root@node2~]#ipaddrshowdeveth1

  3:eth1:mtu1500qdiscpfifo_faststateUPqlen1000

  link/ether00:0c:29:00:90:24brdff:ff:ff:ff:ff:ff

  inet110.1.24.20/24scopeglobaleth1

  inet6fe80::20c:29ff:fe00:9024/64scopelink

  valid_lftforeverpreferred_lftforever

  [root@node2~]#ipaddrshowdeveth2

  4:eth2:mtu1500qdiscpfifo_faststateUPqlen1000

  link/ether00:0c:29:00:90:2ebrdff:ff:ff:ff:ff:ff

  inet72.98.2.10/16scopeglobaleth2

  inet6fe80::20c:29ff:fe00:902e/64scopelink

  valid_lftforeverpreferred_lftforever

  [root@node2~]#route-n

  KernelIProutingtable

  DestinationGatewayGenmaskFlagsMetricRefUseIface

  110.1.24.00.0.0.0255.255.255.0U000eth1

  72.98.0.00.0.0.0255.255.0.0U000eth2

  10.1.0.00.0.0.0255.255.0.0U000eth0

  169.254.0.00.0.0.0255.255.0.0U100200eth0

  169.254.0.00.0.0.0255.255.0.0U100300eth1

  [root@node2~]#routeadd-net192.168.1.0/24gw110.1.24.10deveth1

  [root@node2~]#routeadd-net10.2.0.0/16gw72.98.70.20deveth2

  [root@node2~]#route-n

  KernelIProutingtable

  DestinationGatewayGenmaskFlagsMetricRefUseIface

  192.168.1.0110.1.24.10255.255.255.0UG000eth1

  110.1.24.00.0.0.0255.255.255.0U000eth1

  10.2.0.072.98.70.20255.255.0.0UG000eth2

  72.98.0.00.0.0.0255.255.0.0U000eth2

  10.1.0.00.0.0.0255.255.0.0U000eth0

  169.254.0.00.0.0.0255.255.0.0U100200eth0

  169.254.0.00.0.0.0255.255.0.0U100300eth1

  [root@node2~]#echo1>/proc/sys/net/ipv4/ip_forward

  note3用來做route3

  [root@node3~]#ipaddradd72.98.70.20/16deveth1

  [root@node3~]#ipaddradd10.2.0.1/16deveth2

  [root@node3~]#ipaddrshowdeveth1

  3:eth1:mtu1500qdiscpfifo_faststateUPqlen1000

  link/ether00:0c:29:47:d8:e1brdff:ff:ff:ff:ff:ff

  inet72.98.70.20/16scopeglobaleth1

  inet6fe80::20c:29ff:fe47:d8e1/64scopelink

  valid_lftforeverpreferred_lftforever

  [root@node3~]#ipaddrshowdeveth2

  4:eth2:mtu1500qdiscpfifo_faststateUPqlen1000

  link/ether00:0c:29:47:d8:ebbrdff:ff:ff:ff:ff:ff

  inet10.2.0.1/16scopeglobaleth2

  inet6fe80::20c:29ff:fe47:d8eb/64scopelink

  valid_lftforeverpreferred_lftforever

  [root@node3~]#routeadd-net110.1.24.0/24gw72.98.2.10deveth1

  [root@node3~]#route-n

  KernelIProutingtable

  DestinationGatewayGenmaskFlagsMetricRefUseIface

  192.168.1.072.98.2.10255.255.255.0UG000eth1

  110.1.24.072.98.2.10255.255.255.0UG000eth1

  10.2.0.00.0.0.0255.255.0.0U000eth2

  72.98.0.00.0.0.0255.255.0.0U000eth1

  10.1.0.00.0.0.0255.255.0.0U000eth0

  169.254.0.00.0.0.0255.255.0.0U100200eth0

  169.254.0.00.0.0.0255.255.0.0U100300eth1

  [root@node3~]#echo1>/proc/sys/net/ipv4/ip_forward

  主機(jī)A:

  [root@host1~]#ipaddradd192.168.1.100/24deveno33554984

  [root@host1~]#iprouteadddefaultvia192.168.1.1

  [root@host1~]#ipaddrshowdeveno33554984

  3:eno33554984:mtu1500qdiscpfifo_faststateUPqlen1000

  link/ether00:0c:29:2b:82:a6brdff:ff:ff:ff:ff:ff

  inet192.168.1.100/24scopeglobaleno33554984

  valid_lftforeverpreferred_lftforever

  inet6fe80::20c:29ff:fe2b:82a6/64scopelink

  valid_lftforeverpreferred_lftforever

  [root@host1~]#route-n

  -bash:route:commandnotfound

  [root@host1~]#iprouteshow

  10.1.0.0/16deveno16777736protokernelscopelinksrc10.1.70.171metric100

  192.168.1.0/24deveno33554984protokernelscopelinksrc192.168.1.100

  0.0.0.0via192.168.1.1deveno33554984

  主機(jī)B:

  [root@host2~]#ipaddrshowdeveno33554984

  3:eno33554984:mtu1500qdiscpfifo_faststateUPqlen1000

  link/ether00:0c:29:aa:22:47brdff:ff:ff:ff:ff:ff

  inet192.168.1.63/24scopeglobaleno33554984

  valid_lftforeverpreferred_lftforever

  inet6fe80::20c:29ff:feaa:2247/64scopelink

  valid_lftforeverpreferred_lftforever

  [root@host2~]#route-n

  KernelIProutingtable

  DestinationGatewayGenmaskFlagsMetricRefUseIface

  10.1.0.00.0.0.0255.255.0.0U10000eno16777736

  192.168.1.00.0.0.0255.255.255.0U000eno33554984

  0.0.0.0192.168.1.1255.255.255.255UGH000eno33554984

  主機(jī)C:

  root@debian:~#ipaddrshowdeveth1

  3:eth1:mtu1500qdiscpfifo_faststateUPgroupdefaultqlen1000

  link/ether00:0c:29:f1:04:08brdff:ff:ff:ff:ff:ff

  inet10.2.110.100/16scopeglobaleth1

  valid_lftforeverpreferred_lftforever

  root@debian:~#route-n

  KernelIProutingtable

  DestinationGatewayGenmaskFlagsMetricRefUseIface

  10.1.0.00.0.0.0255.255.0.0U000eth0

  10.2.0.00.0.0.0255.255.0.0U000eth1

  0.0.0.010.2.0.1255.255.255.255UGH000eth1

  root@debian:~#

  至此所有配置已經(jīng)結(jié)束,關(guān)閉所有主機(jī)的網(wǎng)關(guān)和selinux

  測(cè)試:

  在主機(jī)C上:

  root@debian:~#ping-Ieth1192.168.1.1

  PING192.168.1.1(192.168.1.1)from10.2.110.100eth1:56(84)bytesofdata.

  64bytesfrom192.168.1.1:icmp_seq=1ttl=62time=0.691ms

  64bytesfrom192.168.1.1:icmp_seq=2ttl=62time=1.17ms

  ^C

  ---192.168.1.1pingstatistics---

  2packetstransmitted,2received,0%packetloss,time1000ms

  rttmin/avg/max/mdev=0.691/0.931/1.171/0.240ms

  root@debian:~#ping-Ieth1192.168.1.63

  PING192.168.1.63(192.168.1.63)from10.2.110.100eth1:56(84)bytesofdata.

  64bytesfrom192.168.1.63:icmp_seq=1ttl=61time=1.22ms

  64bytesfrom192.168.1.63:icmp_seq=2ttl=61time=0.927ms

  ^C

  ---192.168.1.63pingstatistics---

  2packetstransmitted,2received,0%packetloss,time1001ms

  rttmin/avg/max/mdev=0.927/1.074/1.221/0.147ms

  root@debian:~#ping-Ieth1192.168.1.100

  PING192.168.1.100(192.168.1.100)from10.2.110.100eth1:56(84)bytesofdata.

  64bytesfrom192.168.1.100:icmp_seq=1ttl=61time=1.21ms

  64bytesfrom192.168.1.100:icmp_seq=2ttl=61time=1.78ms

  ^C

  ---192.168.1.100pingstatistics---

  2packetstransmitted,2received,0%packetloss,time1001ms

  rttmin/avg/max/mdev=1.214/1.497/1.780/0.283ms

  root@debian:~#

  在主機(jī)A上:

  [root@host1~]#ping-Ieno3355498410.2.110.100

  PING10.2.110.100(10.2.110.100)from192.168.1.100eno33554984:56(84)bytesofdata.

  64bytesfrom10.2.110.100:icmp_seq=1ttl=61time=0.985ms

  64bytesfrom10.2.110.100:icmp_seq=2ttl=61time=1.09ms

  64bytesfrom10.2.110.100:icmp_seq=3ttl=61time=1.89ms

  64bytesfrom10.2.110.100:icmp_seq=4ttl=61time=2.00ms

  ^C

  ---10.2.110.100pingstatistics---

  4packetstransmitted,4received,0%packetloss,time3005ms

  rttmin/avg/max/mdev=0.985/1.493/2.008/0.459ms

  [root@host1~]#

  在主機(jī)B上:

  [root@host2~]#ping-Ieno3355498410.2.110.100

  PING10.2.110.100(10.2.110.100)from192.168.1.63eno33554984:56(84)bytesofdata.

  64bytesfrom10.2.110.100:icmp_seq=1ttl=61time=1.15ms

  64bytesfrom10.2.110.100:icmp_seq=2ttl=61time=1.93ms

  64bytesfrom10.2.110.100:icmp_seq=3ttl=61time=0.979ms

  ^C

  ---10.2.110.100pingstatistics---

  3packetstransmitted,3received,0%packetloss,time2003ms

  rttmin/avg/max/mdev=0.979/1.355/1.930/0.412ms

  [root@host2~]#ping-Ieno3355498472.98.70.20

  PING72.98.70.20(72.98.70.20)from192.168.1.63eno33554984:56(84)bytesofdata.

  64bytesfrom72.98.70.20:icmp_seq=1ttl=62time=0.751ms

  64bytesfrom72.98.70.20:icmp_seq=2ttl=62time=0.807ms

  64bytesfrom72.98.70.20:icmp_seq=3ttl=62time=1.33ms

  ^C

  ---72.98.70.20pingstatistics---

  3packetstransmitted,3received,0%packetloss,time2000ms

  rttmin/avg/max/mdev=0.751/0.964/1.335/0.264ms

  [root@host2~]#ping-Ieno3355498472.98.70.10###不知道為啥ping不通

  PING72.98.70.10(72.98.70.10)from192.168.1.63eno33554984:56(84)bytesofdata.

  From110.1.24.20icmp_seq=1DestinationHostUnreachable

  From110.1.24.20icmp_seq=2DestinationHostUnreachable

  From110.1.24.20icmp_seq=3DestinationHostUnreachable

  ^C

  ---72.98.70.10pingstatistics---

  5packetstransmitted,0received,+3errors,100%packetloss,time4002ms

  pipe4

  [root@host2~]#ping-Ieno33554984110.1.24.20

  PING110.1.24.20(110.1.24.20)from192.168.1.63eno33554984:56(84)bytesofdata.

  64bytesfrom110.1.24.20:icmp_seq=1ttl=63time=0.556ms

  64bytesfrom110.1.24.20:icmp_seq=2ttl=63time=2.15ms

  64bytesfrom110.1.24.20:icmp_seq=3ttl=63time=0.972ms

  ^C

  ---110.1.24.20pingstatistics---

  3packetstransmitted,3received,0%packetloss,time2002ms

  rttmin/avg/max/mdev=0.556/1.228/2.157/0.678ms

  [root@host2~]#ping-Ieno33554984110.1.24.10

  PING110.1.24.10(110.1.24.10)from192.168.1.63eno33554984:56(84)bytesofdata.

  64bytesfrom110.1.24.10:icmp_seq=1ttl=64time=0.282ms

  64bytesfrom110.1.24.10:icmp_seq=2ttl=64time=0.598ms

  64bytesfrom110.1.24.10:icmp_seq=3ttl=64time=0.367ms

  ^C

  ---110.1.24.10pingstatistics---

  3packetstransmitted,3received,0%packetloss,time2000ms

  rttmin/avg/max/mdev=0.282/0.415/0.598/0.135ms

  [root@host2~]#

  2.centos7的網(wǎng)絡(luò)組實(shí)現(xiàn)

  網(wǎng)絡(luò)組類似于centos6的bond,都是多個(gè)網(wǎng)卡使用一個(gè)IP,是增強(qiáng)網(wǎng)絡(luò)健壯性的一個(gè)手段

  網(wǎng)絡(luò)組:是將多個(gè)網(wǎng)卡聚合在一起方法,從而實(shí)現(xiàn)冗錯(cuò)和提高吞吐量

  網(wǎng)絡(luò)組不同于舊版中bonding技術(shù),提供更好的性能和擴(kuò)展性

  網(wǎng)絡(luò)組由內(nèi)核驅(qū)動(dòng)和teamd守護(hù)進(jìn)程實(shí)現(xiàn).包名是teamd

  啟動(dòng)網(wǎng)絡(luò)組接口不會(huì)自動(dòng)啟動(dòng)網(wǎng)絡(luò)組中的port接口啟動(dòng)網(wǎng)絡(luò)組接口中的port接口不會(huì)自動(dòng)啟動(dòng)網(wǎng)絡(luò)組接口禁用網(wǎng)絡(luò)組接口會(huì)自動(dòng)禁用網(wǎng)絡(luò)組中的port接口沒有port接口的網(wǎng)絡(luò)組接口可以啟動(dòng)靜態(tài)IP連接啟用DHCP連接時(shí),沒有port接口的網(wǎng)絡(luò)組會(huì)等待port接口的加入

  具體的runner方式可以查看man 5 teamd.conf幫助

  創(chuàng)建網(wǎng)絡(luò)組接口:

  [root@linux~]#nmcliconaddtypeteamcon-nametestifnameteam0config'{"runner":{"name":"activebackup"}}'

  Connection'test'(5a3bfb26-993f-45ad-add6-246ff419e7bd)successfullyadded.

  此時(shí)在網(wǎng)絡(luò)配置目錄下生成了一個(gè)文件

  [root@linux~]#ls/etc/sysconfig/network-scripts/ifcfg-test

  /etc/sysconfig/network-scripts/ifcfg-test

  [root@linux~]#nmclidevshowteam0

  GENERAL.DEVICE:team0

  GENERAL.TYPE:team

  GENERAL.HWADDR:82:D0:69:2C:48:6E

  GENERAL.MTU:1500

  GENERAL.STATE:70(connecting(gettingIPconfiguration))

  GENERAL.CONNECTION:test

  GENERAL.CON-PATH:/org/freedesktop/NetworkManager/ActiveConnection/3

  [root@linux~]#nmcliconshow

  NAMEUUIDTYPEDEVICE

  eno33554984fb67dbad-ec81-39b4-42b1-ebf975c3ff13802-3-etherneteno33554984

  eno16777736d329fbf7-4423-4a10-b097-20b266c26768802-3-etherneteno16777736

  eno50332208d2665055-8e83-58f1-e9e3-49a5fb133641802-3-etherneteno50332208

  test5a3bfb26-993f-45ad-add6-246ff419e7bdteamteam0

  給team0設(shè)置靜態(tài)IP和開機(jī)自啟動(dòng)

  [root@linux~]#nmcliconmodtestipv4.methodmanualipv4.addresses"10.1.70.24/16"connection.autoconnectyes

  [root@linux~]#cat/etc/sysconfig/network-scripts/ifcfg-test

  DEVICE=team0

  TEAM_CONFIG="{\"runner\":{\"name\":\"activebackup\"}}"

  DEVICETYPE=Team

  BOOTPROTO=none

  DEFROUTE=yes

  IPV4_FAILURE_FATAL=no

  IPV6INIT=yes

  IPV6_AUTOCONF=yes

  IPV6_DEFROUTE=yes

  IPV6_FAILURE_FATAL=no

  NAME=test

  UUID=5a3bfb26-993f-45ad-add6-246ff419e7bd

  ONBOOT=yes

  IPADDR=10.1.70.24

  PREFIX=16

  IPV6_PEERDNS=yes

  IPV6_PEERROUTES=yes

  [root@linux~]#

  創(chuàng)建兩個(gè)port接口

  [root@linux~]#nmcliconaddtypeteam-slavecon-nametest-1ifnameeno33554984masterteam0

  Connection'test-1'(234c3e91-d90d-421c-ae88-133deddfce94)successfullyadded.

  [root@linux~]#nmcliconaddtypeteam-slavecon-nametest-2ifnameeno50332208masterteam0

  Connection'test-2'(116ef596-d983-456c-a6ae-a74a4f8c03dc)successfullyadded.

  [root@linux~]#

  [root@linux~]#cat/etc/sysconfig/network-scripts/ifcfg-test-1

  NAME=test-1

  UUID=234c3e91-d90d-421c-ae88-133deddfce94

  DEVICE=eno33554984

  ONBOOT=yes

  TEAM_MASTER=team0

  DEVICETYPE=TeamPort

  [root@linux~]#cat/etc/sysconfig/network-scripts/ifcfg-test-2

  NAME=test-2

  UUID=116ef596-d983-456c-a6ae-a74a4f8c03dc

  DEVICE=eno50332208

  ONBOOT=yes

  TEAM_MASTER=team0

  DEVICETYPE=TeamPort

  查看網(wǎng)絡(luò)組狀態(tài):

  [root@linux~]#teamdctlteam0stat

  setup:

  runner:activebackup

  runner:

  activeport:

  發(fā)現(xiàn)port端口均沒有開啟

  開啟port端口

  [root@linux~]#nmcliconuptest-1

  Connectionsuccessfullyactivated(D-Busactivepath:/org/freedesktop/NetworkManager/ActiveConnection/5)

  [root@linux~]#nmcliconuptest-2

  Connectionsuccessfullyactivated(D-Busactivepath:/org/freedesktop/NetworkManager/ActiveConnection/7)

  [root@linux~]#teamdctlteam0stat

  setup:

  runner:activebackup

  ports:

  eno33554984

  linkwatches:

  linksummary:up

  instance[link_watch_0]:

  name:ethtool

  link:up

  downcount:0

  eno50332208

  linkwatches:

  linksummary:up

  instance[link_watch_0]:

  name:ethtool

  link:up

  downcount:0

  runner:

  activeport:eno33554984

  可以看到端口開啟成功

  [root@linux~]#ping-Iteam010.1.70.172

  PING10.1.70.172(10.1.70.172)from10.1.70.24team0:56(84)bytesofdata.

  64bytesfrom10.1.70.172:icmp_seq=1ttl=64time=0.500ms

  64bytesfrom10.1.70.172:icmp_seq=2ttl=64time=0.804ms

  ^C

  ---10.1.70.172pingstatistics---

  2packetstransmitted,2received,0%packetloss,time1001ms

  rttmin/avg/max/mdev=0.500/0.652/0.804/0.152ms

  [root@linux~]#

  配置成功,可以看到當(dāng)前活動(dòng)的是eno33554984,測(cè)試禁用后能否成功

  [root@linux~]#nmclidevicedisconnecteno33554984

  Device'eno33554984'successfullydisconnected.

  [root@linux~]#ping-Iteam010.1.70.172

  PING10.1.70.172(10.1.70.172)from10.1.70.24team0:56(84)bytesofdata.

  測(cè)試不成功,通過查找資料了解到當(dāng)使用activebackup的runner時(shí),必須加上一個(gè)參數(shù)

  [root@linux~]#nmcliconmodifytestteam.config'{"runner":{"name":"activebackup","hwaddr_policy":"by_active"}}'

  [root@linux~]#cat/etc/sysconfig/network-scripts/ifcfg-test

  DEVICE=team0

  TEAM_CONFIG="{\"runner\":{\"name\":\"activebackup\",\"hwaddr_policy\":\"by_active\"}}"

  DEVICETYPE=Team

  BOOTPROTO=none

  DEFROUTE=yes

  IPV4_FAILURE_FATAL=no

  IPV6INIT=yes

  IPV6_AUTOCONF=yes

  IPV6_DEFROUTE=yes

  IPV6_FAILURE_FATAL=no

  NAME=test

  UUID=5a3bfb26-993f-45ad-add6-246ff419e7bd

  ONBOOT=yes

  IPADDR=10.1.70.24

  PREFIX=16

  IPV6_PEERDNS=yes

  IPV6_PEERROUTES=yes

【網(wǎng)絡(luò)的路由配置以及Centos7的網(wǎng)絡(luò)組實(shí)現(xiàn)】相關(guān)文章:

Linux網(wǎng)絡(luò)配置文件入門指導(dǎo)08-06

路由器的網(wǎng)絡(luò)管理功能是什么09-29

路由器如何設(shè)置無線網(wǎng)絡(luò)09-23

路由器怎么設(shè)置無線網(wǎng)絡(luò)10-19

講解Java的Socket網(wǎng)絡(luò)編程的多播與廣播實(shí)現(xiàn)09-03

極路由如何防止別人盜用無線網(wǎng)絡(luò)09-02

路由器導(dǎo)致網(wǎng)絡(luò)故障問題及解決辦法09-28

2015計(jì)算機(jī)三級(jí)《網(wǎng)絡(luò)技術(shù)》復(fù)習(xí)重點(diǎn):路由器與路由選擇09-16

冒泡排序的原理以及java代碼實(shí)現(xiàn)08-17

路由器怎么設(shè)置無線網(wǎng)絡(luò)網(wǎng)速變快11-01