腾讯云专线通过物理专线将腾讯云和用户 IDC 连接,用户在腾讯云侧完成专线网关、专用通道等配置后,还需要在本地 IDC 进行路由配置。本文将对如何在本地 IDC 使用 Cisco ASR 系列路由器配置静态路由展开介绍。
说明
本文仅介绍与腾讯云专线相关的用户本地路由配置项,其他不做介绍,如需了解其他内容请查阅本地路由器文档或者联系各自路由器商咨询。
路由配置
说明
通过 BGP 连通的对接参数,建议 Keepalive 及 holdtime 参数使用缺省配置,Holdtime 参数设置为:60 * 3=180秒(此时 keepalive 报文周期60s)。
# 配置物理接口interfaces <interface_number>description <interface_desc>no shutdownspeed <interface_speed>duplex fullno negotiation autocommit# 配置虚拟通道interfaces <interface_number>.<subinterface_number>description <subinterface_desc>encapsulation dot1q <subinterface_vlanid>ipv4 address <subinterface_ipaddress> <subinterface_netmask>commit# 配置IP SLA(NQA)ip sla <operation-number>icmp-echo x.x.x.x<nexthop_address> source-ip x.x.x.x <source_address>frequency <value> //设置探测频率timeout <value> //设置超时时间ip sla schedule <operation-number> life forever start-time nowen# 配置TRACK 关联 IP SLAtrack <operation-number> ip sla <operation-number> reachabilityend# 设置静态路由router staticvrf <vrf-name> //如果没有指定 VRF,静态路由在 default VRF 下address-family <ipv4 | ipv6> unicast<ip-prefix/netmask> <next_hop_ip> <interface_number> <description_text> <distance> <tag tag_value> track <operation-number>commit