Kubernetes/Weave Net configuration

Hi,

I started up a Bare Metal Kubernetes (ARM64) with Weave Net plugin to manage my network but for some reason i can’t get any Pods talking together. I launched a Shell Pod with busybox and tried to ping another Pod in the same node but nothing works.

Could someone tell me if this configuration is Good:

Kubernetes Node 1:

Pods:

NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES
busybox-5cf647b64-zwrvp 1/1 Running 0 8m23s 10.44.0.6 node1.kube.local
nginx-86c57db685-cxq24 1/1 Running 1 6d13h 10.44.0.1 node1.kube.local
options-deploy-7b85d89cdc-rcd5g 1/1 Running 1 18d 10.44.0.3 node1.kube.local
pubsub-deploy-6c49bc9c64-zxnjt 1/1 Running 1 18d 10.44.0.2 node1.kube.local

IP Route:

@node1:~# ip route
default via 192.168.0.1 dev eth0 proto dhcp metric 100
10.32.0.0/12 dev weave proto kernel scope link src 10.44.0.0
169.254.0.0/16 dev eth0 scope link metric 1000
172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown
192.168.0.0/24 dev eth0 proto kernel scope link src 192.168.0.112 metric 100

ifconfig

weave: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1376
inet 10.44.0.0 netmask 255.240.0.0 broadcast 10.47.255.255
inet6 fe80::7ccd:96ff:fe78:87ae prefixlen 64 scopeid 0x20
ether 7e:cd:96:78:87:ae txqueuelen 1000 (Ethernet)
RX packets 197702 bytes 13496710 (12.8 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 195670 bytes 15364328 (14.6 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

Can you tell me if the configuration on that Node is Good ?

Thanks