Hello,
I run a container "Solaranzeige" which is created with the compose-plugin. This container have to access a "Solaredge SE7k", which is placed in the VLAN IOT on an openwrt-router. This worked until end of july on which I switched the formerly on portainer created container to the compose-file. But even put the with compose created container down and start the old container on portainer don't solve the problem.
Here some information on my environment:
OMV is running on a NAS and have ip 192.168.178.57.
The container Solaranzeige has a brigded network 172.27.0.0/16.
The openwrt-router has internal ip 192.168.1.1 and gets wan-ip 192.168.178.73 from my main-router (192.168.178.1).
The VLAN has ip 192.168.103.0/24.
The Solaredge SE7k has ip 192.168.103.111.
In my main-router a static route is set to:
network = 192.168.103.0
subnetmask = 255.255.255.0
gateway = 192.168.178.73
In the container-log I see "connection timed out".
Here a tcpdump from inside the container:
tcpdump -v -n -i eth0 | grep 192.168.103.111
tcpdump: listening on eth0, link-type EN10MB (Ethernet), snapshot length 262144 bytes
172.27.0.2.43834 > 192.168.103.111.1502: Flags [S], cksum 0xd463 (incorrect -> 0x4dd2), seq 489377900, win 64240, options [mss 1460,sackOK,TS val 2357886925 ecr 0,nop,wscale 7], length 0
A tcpdump on the wan-interface of openwrt gives no result:
tcpdump -n -v -i eth1 | grep 192.168.103.111
tcpdump: listening on eth1, link-type EN10MB (Ethernet), capture size 262144 bytes
A tcpdump on OMV for the container-interface:
tcpdump -n -v -i br-b7332f814f7a | grep 192.168.103.111
tcpdump: listening on br-b7332f814f7a, link-type EN10MB (Ethernet), snapshot length 262144 bytes
172.27.0.2.33918 > 192.168.103.111.1502: Flags [S], cksum 0xd463 (incorrect -> 0xf6e1), seq 821241838, win 64240, options [mss 1460,sackOK,TS val 2358186539 ecr 0,nop,wscale 7], length 0
172.27.0.2.33918 > 192.168.103.111.1502: Flags [S], cksum 0xd463 (incorrect -> 0xf2eb), seq 821241838, win 64240, options [mss 1460,sackOK,TS val 2358187553 ecr 0,nop,wscale 7], length 0
172.27.0.2.33918 > 192.168.103.111.1502: Flags [S], cksum 0xd463 (incorrect -> 0xeb0b), seq 821241838, win 64240, options [mss 1460,sackOK,TS val 2358189569 ecr 0,nop,wscale 7], length 0
And a tcpdump on OMV for the main-interface gives no result:
tcpdump -n -v -i enp3s0 | grep 192.168.103.111
tcpdump: listening on enp3s0, link-type EN10MB (Ethernet), snapshot length 262144 bytes
Has anybody an idea, what the cause is? And what I can do to solve it?
Thanks in advance
Matthias