腾讯云专线通过物理专线将腾讯云和用户 IDC 连接,用户在腾讯云侧完成专线网关、专用通道等配置后,还需要在本地 IDC 进行路由配置(推荐使用三层子接口对接腾讯云侧)。本文将对如何在本地 IDC 使用华为 CE 系列交换机配置静态路由展开介绍。
说明
本文仅介绍与腾讯云专线相关的用户本地路由配置项,其他不做介绍,如需了解其他内容请查阅本地路由器文档或者联系各自路由器商咨询。
路由配置
说明
通过 BGP 连通的对接参数,建议 Keepalive 及 holdtime 参数使用缺省配置,Holdtime 参数设置为:60 * 3=180秒(此时 keepalive 报文周期60s)。
# 设置物理接口interfaces <interface_number>description <interface_desc>undo portswitchundo shutdownspeed <interface_speed>duplex fullundo negotiation autocommit# 设置虚拟通道(三层子接口)interface <interface_number>.subinterface-numberdescription <subinterface_desc>dot1q termination vid <vlanid>ip address <subinterface_ipaddress> <subinterface_netmask># 配置静态路由NQA探测nqa test-instance <admin-name>< test-name>test-type icmp //默认测试类型destination-address x.x.x.x(nexthop-address )//探测地址interval seconds <value> //探测间隔timeout <value> //超时时间probe-count <value> //每次探测包数frequency <value> //探测实例执行间隔start now# 设置静态路由# 设置全局静态路由ip route-static <ip-address> <mask | mask-length> <nexthop-address>track nqa <admin-name>< test-name>//<ip-address>为用户需要访问 Tencent 网络服务的目的网段例如:ip route-static 172.16.0.192 255.255.255.192 10.128.152.1 track nqa user test# 设置 VRF 下用户访问 Tencent 静态路由ip route-static <vpn-instance vpn-instance-name> <ip-address> <mask | mask-length> <nexthop-address>track nqa <admin-name>< test-name>例如:ip route-static vpn-instance GLOBAL 9.0.0.0 255.0.0.0 10.128.152.1 track nqa user testcommit