Hi guys,
I have been trying to get a packaged version of my game working across the network.
The packaged version of the game does not have any particular MP features programmed, i just want to zip up a packaged build and send it to a friend.
Now i have ensure that port 7777 is open on my router. But when i run the packaged build and use:
open 'mapname'?listen
to create a server clients are unable to connect to me using
open 'myipaddress:7777'
The error log shows:
[2021.01.18-15.29.51:805][787]LogNet: Warning: UNetConnection::Tick: Connection TIMED OUT. Closing connection.. Elapsed: 20.01, Real: 20.01, Good: 20.01, DriverTime: 20.03, Threshold: 20.00, [UNetConnection] RemoteAddr: MYIP:7777, Name: IpConnection_2147482348, Driver: PendingNetDriver IpNetDriver_2147482349, IsServer: NO, PC: NULL, Owner: NULL, UniqueId: INVALID
[2021.01.18-15.29.51:805][787]LogNet: Error: UEngine::BroadcastNetworkFailure: FailureType = ConnectionTimeout, ErrorString = UNetConnection::Tick: Connection TIMED OUT. Closing connection.. Elapsed: 20.01, Real: 20.01, Good: 20.01, DriverTime: 20.03, Threshold: 20.00, [UNetConnection] RemoteAddr: MYIP:7777, Name: IpConnection_2147482348, Driver: PendingNetDriver IpNetDriver_2147482349, IsServer: NO, PC: NULL, Owner: NULL, UniqueId: INVALID, Driver = PendingNetDriver IpNetDriver_2147482349
[2021.01.18-15.29.51:805][787]LogNet: Warning: Network Failure: PendingNetDriver[ConnectionTimeout]: UNetConnection::Tick: Connection TIMED OUT. Closing connection.. Elapsed: 20.01, Real: 20.01, Good: 20.01, DriverTime: 20.03, Threshold: 20.00, [UNetConnection] RemoteAddr: MYIP:7777, Name: IpConnection_2147482348, Driver: PendingNetDriver IpNetDriver_2147482349, IsServer: NO, PC: NULL, Owner: NULL, UniqueId: INVALID
[2021.01.18-15.29.51:805][787]LogNet: NetworkFailure: ConnectionTimeout, Error: 'UNetConnection::Tick: Connection TIMED OUT. Closing connection.. Elapsed: 20.01, Real: 20.01, Good: 20.01, DriverTime: 20.03, Threshold: 20.00, [UNetConnection] RemoteAddr: MYIP:7777, Name: IpConnection_2147482348, Driver: PendingNetDriver IpNetDriver_2147482349, IsServer: NO, PC: NULL, Owner: NULL, UniqueId: INVALID'
When i use various tools and netstat to see if the game is listening on port 7777 it appears nothing is listening on the port. Can anyone help with this as it is driving me mad and i feel like i have exhausted all my options.