There is no traffic on wan-interface (eth1) for ip-address 192.168.103.111:
tcpdump -n -v -i eth1 | grep 192.168.103.111
returns nothing.
In IOT-Interface (br-IOT) I see some traffic for external ip-address:
tcpdump -n -v -i br-IOT | grep 192.168.103.111
tcpdump: listening on br-IOT, link-type EN10MB (Ethernet), capture size 262144 bytes
192.168.103.111.49517 > 224.0.0.251.5353: 0 PTR (QU)? _sense_rpc_service._udp.local. (47)
192.168.103.111.58276 > 224.0.0.251.5353: 0 PTR (QU)? _sense_rpc_service._udp.local. (47)
192.168.103.111.52097 > 224.0.0.251.5353: 0 PTR (QU)? _sense_rpc_service._udp.local. (47)
192.168.103.111.59790 > 167.94.174.2.443: Flags [P.], cksum 0x9a4e (correct), seq 3960597330:3960597381, ack 3239821367, win 2252, options [nop,nop,TS val 3879784232 ecr 1782224068], length 51
167.94.174.2.443 > 192.168.103.111.59790: Flags [.], cksum 0x77d4 (correct), ack 51, win 17, options [nop,nop,TS val 1782258821 ecr 3879784232], length 0
167.94.174.2.443 > 192.168.103.111.59790: Flags [P.], cksum 0x2b39 (correct), seq 1:52, ack 51, win 17, options [nop,nop,TS val 1782258874 ecr 3879784232], length 51
192.168.103.111.59790 > 167.94.174.2.443: Flags [.], cksum 0x6e75 (correct), ack 52, win 2252, options [nop,nop,TS val 3879784292 ecr 1782258874], length 0
From inside the container I get:
tcpdump -n -v -i eth0 | grep 192.168.103.
tcpdump: listening on eth0, link-type EN10MB (Ethernet), snapshot length 262144 bytes
172.25.0.2.44876 > 192.168.103.111.1502: Flags [S], cksum 0xd461 (incorrect -> 0x45c4), seq 2850470513, win 64240, options [mss 1460,sackOK,TS val 445251339 ecr 0,nop,wscale 7], length 0
172.25.0.2.44876 > 192.168.103.111.1502: Flags [S], cksum 0xd461 (incorrect -> 0x41bd), seq 2850470513, win 64240, options [mss 1460,sackOK,TS val 445252370 ecr 0,nop,wscale 7], length 0
172.25.0.2.44876 > 192.168.103.111.1502: Flags [S], cksum 0xd461 (incorrect -> 0x39dc), seq 2850470513, win 64240, options [mss 1460,sackOK,TS val 445254387 ecr 0,nop,wscale 7], length 0
And this I get on the NAS, on which the container is running:
tcpdump -n -v -i br-121504b50146 | grep 192.168.103.111
tcpdump: listening on br-121504b50146, link-type EN10MB (Ethernet), snapshot length 262144 bytes
172.25.0.2.34830 > 192.168.103.111.1502: Flags [S], cksum 0xd461 (incorrect -> 0xaecf), seq 518352184, win 64240, options [mss 1460,sackOK,TS val 445551988 ecr 0,nop,wscale 7], length 0
172.25.0.2.34830 > 192.168.103.111.1502: Flags [S], cksum 0xd461 (incorrect -> 0xaad0), seq 518352184, win 64240, options [mss 1460,sackOK,TS val 445553011 ecr 0,nop,wscale 7], length 0
172.25.0.2.34830 > 192.168.103.111.1502: Flags [S], cksum 0xd461 (incorrect -> 0xa2f1), seq 518352184, win 64240, options [mss 1460,sackOK,TS val 445555026 ecr 0,nop,wscale 7], length 0
The traffic seems to disapper between the NAS and openwrt. In the main router (Fritzbox 7590ax) I have a static route
network = 192.168.103.0
subnetmask = 255.255.255.0
gateway = 192.168.178.73 (which is the DHCP-address of the openwrt-router)
In general, the route is working perfect. I can access devices in VLAN IOT from other devices in wan (192.168.178.x), but not from the container.
Any ideas?
Matthias