最新消息: USBMI致力于为网友们分享Windows、安卓、IOS等主流手机系统相关的资讯以及评测、同时提供相关教程、应用、软件下载等服务。

华为静态路由器协议配置方法

IT圈 admin 27浏览 0评论

2024年3月3日发(作者:阳昆纬)

华为静态路由器协议配置方法

一、配置ipv4静态路由基本功能示例

组网需求

路由器各USB及主机的ip地址和掩码例如图1右图。建议使用静态路由,并使图中任一两台主机之间都能够互通。

图1配置静态路由组网图

操作步骤

a的配置

#

interfacegigabitethernet1/0/0

ipaddress10.1.1.1255.255.255.0

#

interfacegigabitethernet2/0/0

ipaddress10.1.4.1255.255.255.252

#

iproute-static10.1.2.0255.255.255.010.1.4.2

iproute-static10.1.3.0255.255.255.010.1.4.2//布局routera至相同网段的静态路由

#

return

b的配置

#

interfacegigabitethernet1/0/0

ipaddress10.1.2.1255.255.255.0

#

interfacegigabitethernet2/0/0

ipaddress10.1.4.2255.255.255.252

#

interfacegigabitethernet3/0/0

ipaddress10.1.4.5255.255.255.252

#

iproute-static10.1.1.0255.255.255.010.1.4.1

iproute-static10.1.3.0255.255.255.010.1.4.6//配置routerb到不同网段的静态路由#

return

c的配置

#

interfacegigabitethernet1/0/0

ipaddress10.1.3.1255.255.255.0

#

interfacegigabitethernet2/0/0

ipaddress10.1.4.6255.255.255.252

#

iproute-static10.1.1.0255.255.255.010.1.4.5

iproute-static10.1.2.0255.255.255.010.1.4.5//布局routerc至相同网段的静态路由

#

return

4.配置主机

布局vlan10内主机的缺省网关为10.1.1.1,vlan20内主机的缺省网关为10.1.3.1,vlan30内主机的缺省网关为10.1.2.1。

5.配置交换机

布局各交换机,使各主机能够与其网关路由器互通。

6.检查配置结果

采用displayiprouting-table命令查阅路由器的ip路由表。

使用ping命令验证连通性。

布局注意事项

——正确配置各路由器各接口的ipv4地址,使网络互通。

——确保两个路由器互连USB地址布局在同一网段,并且可以正常互通。

——在各主机上配置ipv4缺省网关。

二、布局nqaforipv4静态路由示例

组网需求

通过布局nqaforipv4静态路由可以快速检测至网络的故障,掌控静态路由的公布。例如图2右图,routera通过USBge2/0/0相连接routerb至routerd做为主链路,routera通过USBge1/0/0相连接routerc至routerd做为备份链路。在routera上布局nqaicmp测试基准,以检测主链路的网络状况。当主链路发生故障时,从routera发送到routerd的报文就可以转换至备份链路展开留言。

图2配置nqaforipv4静态路由组网图

操作步骤

a的配置

#

sysnameroutera

#

interfacegigabitethernet1/0/0

ipaddress192.168.1.1255.255.255.0

#

interfacegigabitethernet2/0/0

ipaddress192.168.4.1255.255.255.0

#

interfacegigabitethernet3/0/0

ipaddress192.168.6.1255.255.255.0

#

iproute-static192.168.2.0255.255.255.0192.168.1.2

iproute-static192.168.3.0255.255.255.0192.168.4.2

iproute-static192.168.5.0255.255.255.0192.168.1.2preference100//布局静态路由优先级为100,用以搞水泵路由

iproute-static192.168.5.0255.255.255.0gigabitethernet2/0/0192.168.4.2tracknqaadminicmp//配置与nqa测试例联动的静态路由

#

nqatest-instanceadminicmp//配置名为adminicmp的nqa测试例

test-typeicmp//布局测试基准类型为icmp

destination-addressipv4192.168.3.1//配置nqa测试例的目的地址为192.168.3.1

frequency10//布局nqa测试基准两次测试之间间隔10秒

probe-count2//配置nqa测试例的测试探针数目为2

startnow//立即已经开始继续执行当前的nqa测试基准

#

b的布局

#

sysnamerouterb

#

interfacegigabitethernet1/0/0

ipaddress192.168.3.2255.255.255.0

#

interfacegigabitethernet2/0/0

ipaddress192.168.4.2255.255.255.0

#

iproute-static192.168.5.0255.255.255.0192.168.3.1

iproute-static192.168.6.0255.255.255.0192.168.4.1

#

c的配置

#

sysnamerouterc

#

interfacegigabitethernet1/0/0

ipaddress192.168.1.2255.255.255.0

#

interfacegigabitethernet2/0/0

ipaddress192.168.2.1255.255.255.0

#

iproute-static192.168.5.0255.255.255.0192.168.2.2

iproute-static192.168.6.0255.255.255.0192.168.1.1

#

d的布局

#

sysnamerouterd

#

interfacegigabitethernet1/0/0

ipaddress192.168.3.1255.255.255.0

#

interfacegigabitethernet2/0/0

ipaddress192.168.2.2255.255.255.0

#

interfacegigabitethernet3/0/0

ipaddress192.168.5.1255.255.255.0

#

iproute-static192.168.1.0255.255.255.0192.168.2.1

iproute-static192.168.4.0255.255.255.0192.168.3.2

iproute-static192.168.6.0255.255.255.0192.168.3.2

iproute-static192.168.6.0255.255.255.0192.168.2.1

#

5.检查布局结果

在routera上执行命令displaynqaresultstest-instanceadminicmp查看nqa测试结果,其中可以看到“lostpacketratio:0%”,这说明链路状态完好。然后执行命令displayiprouting-table查看路由表,可以看到到目的网段192.168.5.0/24,下一条为192.168.4.2的静态路由存在于路由表中,而配置的优先级为100的静态路由不存在与路由表中。

在routerb的两个USB的任一USB视图下执行命令shutdown,去演示链路发生故障。然后在routera上执行命令displaynqaresultstest-instanceadminicmp,查阅nqa测试结果,其中可以看见“packetratio:100%”,这表明检测至链路发生故障。接着执行命令displayiprouting-table查阅路由表,可以看见之前至目的网段192.168.5.0/24,下一条为192.168.4.2的静态路由被优先级为100的静态路由在路由表中所替代。

配置注意事项

——nqa测试基准采用displaynqaresults命令查阅测试结果,只有当测试顺利完成状态为测试失利时,与nqa协同的静态路由才可以在路由表中被删掉。

——修改nqa测试例的配置时,要先停止当前运行的nqa测试例。

——布局同一条静态路由与其它nqa测试基准协同时,可以中止与当前nqa测试例的协同关系。

——此案例中的nqa仅做ping检测,对对端设备没有配置要求。目的是让routera通过检测结果来切换链路,从而增强routera对报文转发的可靠性。

三、布局ipv6静态路由基本功能示例

组网需求

路由器各USB及主机的ipv6地址和掩码例如图3右图。建议使用静态路由,并使图中任一两台主机之间都能够互通。

图3配置ipv6静态路由组网图

操作步骤

a的配置

#

ipv6//使能路由器ipv6报文转发能力

#

interfacegigabitethernet1/0/0

ipv6enable//在USB上CX600Xipv6功能

ipv6address1::164

#

interfacegigabitethernet2/0/0

ipv6enable

ipv6address2::264

#

ipv6route-static3::642::1

ipv6route-static4::642::1

ipv6route-static5::642::1//配置routera到不同网段的静态路由

#

return

b的布局

#

ipv6

#

interfacegigabitethernet1/0/0

ipv6enable

ipv6address3::164

#

interfacegigabitethernet2/0/0

ipv6enable

ipv6address2::164

#

interfacegigabitethernet3/0/0

ipv6enable

ipv6address4::164

#

ipv6route-static1::642::2

ipv6route-static5::644::2

#

return

c的布局

#

ipv6

#

interfacegigabitethernet1/0/0

ipv6enable

ipv6address5::164

#

interfacegigabitethernet2/0/0

ipv6enable

ipv6address4::264

#

ipv6route-static1::644::1

ipv6route-static2::644::1

ipv6route-static3::644::1

#

return

4.配置主机

布局vlan10内主机的缺省网关为1::1,vlan20内主机的缺省网关为5::1,vlan30内主机的缺省网关为3::1。

5.配置交换机

布局各交换机,使各主机能够与其网关路由器互通。

6.检查配置结果

采用displayipv6routing-table命令查阅路由器的ip路由表。

使用pingipv6命令验证连通性。

布局注意事项

——配置ipv6路由协议前,一定要先使能路由设备转发ipv6单播报文。在接口下配置关于ipv6特性的命令前必须先在接口上使能ipv6功能。

——恰当布局各路由器各USB的ipv6地址,并使网络互通。

——在各主机上配置缺省网关。

2024年3月3日发(作者:阳昆纬)

华为静态路由器协议配置方法

一、配置ipv4静态路由基本功能示例

组网需求

路由器各USB及主机的ip地址和掩码例如图1右图。建议使用静态路由,并使图中任一两台主机之间都能够互通。

图1配置静态路由组网图

操作步骤

a的配置

#

interfacegigabitethernet1/0/0

ipaddress10.1.1.1255.255.255.0

#

interfacegigabitethernet2/0/0

ipaddress10.1.4.1255.255.255.252

#

iproute-static10.1.2.0255.255.255.010.1.4.2

iproute-static10.1.3.0255.255.255.010.1.4.2//布局routera至相同网段的静态路由

#

return

b的配置

#

interfacegigabitethernet1/0/0

ipaddress10.1.2.1255.255.255.0

#

interfacegigabitethernet2/0/0

ipaddress10.1.4.2255.255.255.252

#

interfacegigabitethernet3/0/0

ipaddress10.1.4.5255.255.255.252

#

iproute-static10.1.1.0255.255.255.010.1.4.1

iproute-static10.1.3.0255.255.255.010.1.4.6//配置routerb到不同网段的静态路由#

return

c的配置

#

interfacegigabitethernet1/0/0

ipaddress10.1.3.1255.255.255.0

#

interfacegigabitethernet2/0/0

ipaddress10.1.4.6255.255.255.252

#

iproute-static10.1.1.0255.255.255.010.1.4.5

iproute-static10.1.2.0255.255.255.010.1.4.5//布局routerc至相同网段的静态路由

#

return

4.配置主机

布局vlan10内主机的缺省网关为10.1.1.1,vlan20内主机的缺省网关为10.1.3.1,vlan30内主机的缺省网关为10.1.2.1。

5.配置交换机

布局各交换机,使各主机能够与其网关路由器互通。

6.检查配置结果

采用displayiprouting-table命令查阅路由器的ip路由表。

使用ping命令验证连通性。

布局注意事项

——正确配置各路由器各接口的ipv4地址,使网络互通。

——确保两个路由器互连USB地址布局在同一网段,并且可以正常互通。

——在各主机上配置ipv4缺省网关。

二、布局nqaforipv4静态路由示例

组网需求

通过布局nqaforipv4静态路由可以快速检测至网络的故障,掌控静态路由的公布。例如图2右图,routera通过USBge2/0/0相连接routerb至routerd做为主链路,routera通过USBge1/0/0相连接routerc至routerd做为备份链路。在routera上布局nqaicmp测试基准,以检测主链路的网络状况。当主链路发生故障时,从routera发送到routerd的报文就可以转换至备份链路展开留言。

图2配置nqaforipv4静态路由组网图

操作步骤

a的配置

#

sysnameroutera

#

interfacegigabitethernet1/0/0

ipaddress192.168.1.1255.255.255.0

#

interfacegigabitethernet2/0/0

ipaddress192.168.4.1255.255.255.0

#

interfacegigabitethernet3/0/0

ipaddress192.168.6.1255.255.255.0

#

iproute-static192.168.2.0255.255.255.0192.168.1.2

iproute-static192.168.3.0255.255.255.0192.168.4.2

iproute-static192.168.5.0255.255.255.0192.168.1.2preference100//布局静态路由优先级为100,用以搞水泵路由

iproute-static192.168.5.0255.255.255.0gigabitethernet2/0/0192.168.4.2tracknqaadminicmp//配置与nqa测试例联动的静态路由

#

nqatest-instanceadminicmp//配置名为adminicmp的nqa测试例

test-typeicmp//布局测试基准类型为icmp

destination-addressipv4192.168.3.1//配置nqa测试例的目的地址为192.168.3.1

frequency10//布局nqa测试基准两次测试之间间隔10秒

probe-count2//配置nqa测试例的测试探针数目为2

startnow//立即已经开始继续执行当前的nqa测试基准

#

b的布局

#

sysnamerouterb

#

interfacegigabitethernet1/0/0

ipaddress192.168.3.2255.255.255.0

#

interfacegigabitethernet2/0/0

ipaddress192.168.4.2255.255.255.0

#

iproute-static192.168.5.0255.255.255.0192.168.3.1

iproute-static192.168.6.0255.255.255.0192.168.4.1

#

c的配置

#

sysnamerouterc

#

interfacegigabitethernet1/0/0

ipaddress192.168.1.2255.255.255.0

#

interfacegigabitethernet2/0/0

ipaddress192.168.2.1255.255.255.0

#

iproute-static192.168.5.0255.255.255.0192.168.2.2

iproute-static192.168.6.0255.255.255.0192.168.1.1

#

d的布局

#

sysnamerouterd

#

interfacegigabitethernet1/0/0

ipaddress192.168.3.1255.255.255.0

#

interfacegigabitethernet2/0/0

ipaddress192.168.2.2255.255.255.0

#

interfacegigabitethernet3/0/0

ipaddress192.168.5.1255.255.255.0

#

iproute-static192.168.1.0255.255.255.0192.168.2.1

iproute-static192.168.4.0255.255.255.0192.168.3.2

iproute-static192.168.6.0255.255.255.0192.168.3.2

iproute-static192.168.6.0255.255.255.0192.168.2.1

#

5.检查布局结果

在routera上执行命令displaynqaresultstest-instanceadminicmp查看nqa测试结果,其中可以看到“lostpacketratio:0%”,这说明链路状态完好。然后执行命令displayiprouting-table查看路由表,可以看到到目的网段192.168.5.0/24,下一条为192.168.4.2的静态路由存在于路由表中,而配置的优先级为100的静态路由不存在与路由表中。

在routerb的两个USB的任一USB视图下执行命令shutdown,去演示链路发生故障。然后在routera上执行命令displaynqaresultstest-instanceadminicmp,查阅nqa测试结果,其中可以看见“packetratio:100%”,这表明检测至链路发生故障。接着执行命令displayiprouting-table查阅路由表,可以看见之前至目的网段192.168.5.0/24,下一条为192.168.4.2的静态路由被优先级为100的静态路由在路由表中所替代。

配置注意事项

——nqa测试基准采用displaynqaresults命令查阅测试结果,只有当测试顺利完成状态为测试失利时,与nqa协同的静态路由才可以在路由表中被删掉。

——修改nqa测试例的配置时,要先停止当前运行的nqa测试例。

——布局同一条静态路由与其它nqa测试基准协同时,可以中止与当前nqa测试例的协同关系。

——此案例中的nqa仅做ping检测,对对端设备没有配置要求。目的是让routera通过检测结果来切换链路,从而增强routera对报文转发的可靠性。

三、布局ipv6静态路由基本功能示例

组网需求

路由器各USB及主机的ipv6地址和掩码例如图3右图。建议使用静态路由,并使图中任一两台主机之间都能够互通。

图3配置ipv6静态路由组网图

操作步骤

a的配置

#

ipv6//使能路由器ipv6报文转发能力

#

interfacegigabitethernet1/0/0

ipv6enable//在USB上CX600Xipv6功能

ipv6address1::164

#

interfacegigabitethernet2/0/0

ipv6enable

ipv6address2::264

#

ipv6route-static3::642::1

ipv6route-static4::642::1

ipv6route-static5::642::1//配置routera到不同网段的静态路由

#

return

b的布局

#

ipv6

#

interfacegigabitethernet1/0/0

ipv6enable

ipv6address3::164

#

interfacegigabitethernet2/0/0

ipv6enable

ipv6address2::164

#

interfacegigabitethernet3/0/0

ipv6enable

ipv6address4::164

#

ipv6route-static1::642::2

ipv6route-static5::644::2

#

return

c的布局

#

ipv6

#

interfacegigabitethernet1/0/0

ipv6enable

ipv6address5::164

#

interfacegigabitethernet2/0/0

ipv6enable

ipv6address4::264

#

ipv6route-static1::644::1

ipv6route-static2::644::1

ipv6route-static3::644::1

#

return

4.配置主机

布局vlan10内主机的缺省网关为1::1,vlan20内主机的缺省网关为5::1,vlan30内主机的缺省网关为3::1。

5.配置交换机

布局各交换机,使各主机能够与其网关路由器互通。

6.检查配置结果

采用displayipv6routing-table命令查阅路由器的ip路由表。

使用pingipv6命令验证连通性。

布局注意事项

——配置ipv6路由协议前,一定要先使能路由设备转发ipv6单播报文。在接口下配置关于ipv6特性的命令前必须先在接口上使能ipv6功能。

——恰当布局各路由器各USB的ipv6地址,并使网络互通。

——在各主机上配置缺省网关。

发布评论

评论列表 (0)

  1. 暂无评论