Accessing local network from Docker container

Host is Debian 9 and in the same network with IP 192.168.254.100. There is no any special configuration, I installed Docker as written in documentation (also didn’t add any volume/network/…) . Same for router - host can normally access 192.168.254.49 and other computers.

I tried with …

docker run --rm busybox wget -O- http://192.168.254.49/

… but I get …

wget: can't connect to remote host (192.168.254.49): Connection timed out

… after some time.

I’ve tried the same with some other images and the problem persists. However on the other machine with Windows 10 the local network is normally accessible from any container. Will try to establish Docker on other distribution and check if there is something wrong with my current installation.