Mention the need to disable IPV6

This commit is contained in:
Quinten 2024-01-10 09:57:32 +01:00 committed by GitHub
parent 6401cc42bd
commit 5343f11315
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,4 +26,29 @@ Ports required to run the server
You need to get your own AUTH token to run this server generated by an offical client
[YT](https://www.youtube.com/watch?v=9Hvuz12Bfzg)
[Docs](https://moddocs.bannerlord.com/multiplayer/hosting_server/#generating-a-token)
## IPV6
Because something is wrong with there server you will be ubanble to join as there IPV6 logic is broken (even if you dot not have IPV6).
To fix this go to `bin/Linux64_Shipping_Server`, open the `TaleWorlds.Starter.DotNetCore.Linux.runtimeconfig.json` file and add:
```json
"System.Net.DisableIPv6": true
```
Your file should then look something like this:
```json
{
"runtimeOptions": {
"tfm": "net6.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "6.0.0"
},
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
"System.Net.DisableIPv6": true
}
}
}
```