BGP建立连接问题排查
BGP 建立连接ACTIVE或CONNECT状态修复,需要依次排查如下: 物理线是否正常,IP基础配置是否正确; 排查防火墙是否拦截,是否需要关闭service firewall stop, 或者修改指定条目放开179端口;
1 2 3 4 5 6 |
#关闭防火墙 systemctl stop firewalld #iptables添加端口179; iptables -I INPUT -p tcp -m multiport --dports 179 -j ACCEPT #或关闭iptables #systemctl stop iptables |
排查路由是否准确,静态路由或默认路由;… 阅读更多 »BGP建立连接问题排查