Socket.connect in the Windows binary of Julia V1.0.1

Should this work in the windows binary
julia> using Sockets

julia> ip=“169.254.4.10”
“169.254.4.10”

julia> port = 5025
5025

julia> instr = connect(ip, port)
ERROR: IOError: connect: connection timed out (ETIMEDOUT)
Stacktrace:
[1] try_yieldto(::typeof(Base.ensure_rescheduled), ::Base.RefValue{Task}) at .\event.jl:196
[2] wait() at .\event.jl:255
[3] wait(::Condition) at .\event.jl:46
[4] stream_wait(::TCPSocket, ::Condition) at .\stream.jl:47
[5] wait_connected(::TCPSocket) at .\stream.jl:263
[6] connect at C:\cygwin\home\Administrator\buildbot\worker\package_win64\build\usr\share\julia\stdlib\v1.0\Sockets\src\Sockets.j
l:444 [inlined]
[7] connect(::String, ::Int64) at C:\cygwin\home\Administrator\buildbot\worker\package_win64\build\usr\share\julia\stdlib\v1.0\So
ckets\src\Sockets.jl:427
[8] top-level scope at none:0

It works correctly in Fedora 28 Julia V 0.6.3

It’s not a local port on the linux machine that windows doesn’t have open?

I can connect to the remote IP from the Fedora 28 VM that is running on
the Windows machine
Turning off the windows firewall has no effect on the connections from
Julia in windows.

Can you ping and/or telnet to that combination from a terminal?

Yes, I can ping the IP from both the host windows Julia 1.0.1 and Julia 0.6 on the guest.
The first couple of pings from Windows fails, then it starts as expected.
Is there anyway to increase the timeout of the Sockets.connect?