美文网首页Linux学习资料收集
BIRD is not ready: BGP not estab

BIRD is not ready: BGP not estab

作者: forrestsun | 来源:发表于2021-04-06 10:47 被阅读0次

使用calico建立网络后,发现151.152两机均可正常访问,但在访问master(150)机时报错。

BIRD is not ready: BGP not established with .....

使用calicoctl检查发现与master机建立连接使用的为非node ip


master
node1.png
node2.png

网络搜索有两种方式解决此问题:
一种是通过正则指定网卡,类似这样:

- name: IP_AUTODETECTION_METHOD
value: "interface=ens.*"  # ens 根据实际网卡开头配置

另一种是从部署节点到到达目的节点的,类似这样:

# Using IP addresses
IP_AUTODETECTION_METHOD=can-reach=8.8.8.8
IP6_AUTODETECTION_METHOD=can-reach=2001:4860:4860::8888

# Using domain names
IP_AUTODETECTION_METHOD=can-reach=www.google.com
IP6_AUTODETECTION_METHOD=can-reach=www.google.com

通过查看网卡发现名称命名不规则有叫en0的,有叫enp6s0的。感觉第二种对于现在情况会更方便一些。
为了防止8.8.8.8无法访问,在这里改成了114.114.114.114。



重新加载yaml文件

[root@kmaster ~]# kubectl apply -f calico.yaml

启动后稍等一会再查看发现启动成功



2021-04-06_10-46.png

参考:

相关文章

网友评论

    本文标题:BIRD is not ready: BGP not estab

    本文链接:https://www.haomeiwen.com/subject/gurskltx.html