chore(conf): Fractured defaults — auth 47497, realmlist hsrwow.net:8085

- authserver.conf.dist: RealmServerPort 47497; document hsrwow.net client realmlist
- base realmlist: Fractured WoW / hsrwow.net; clarify world port vs auth port
- BUILD-NATIVE.md: Fractured network defaults section
This commit is contained in:
Dawnforger
2026-05-09 00:07:31 -05:00
parent 63ab74b4fb
commit 579574acb3
3 changed files with 27 additions and 4 deletions
+16
View File
@@ -15,6 +15,22 @@ prerequisites; everything here is just the deltas you need on top of it.
--- ---
## Fractured client + network defaults
Production Fractured uses a non-default **auth** port so the client realmlist can be:
```text
set realmlist hsrwow.net:47497
```
(Patched 3.3.5 clients that support `host:port`; otherwise use port forwarding to **3724**.)
- **`authserver.conf``RealmServerPort`** must be **`47497`** (matches `authserver.conf.dist` in this repo).
- **`realmlist` table → `port`** is the **world** port (default **8085**, same as `WorldServerPort` in `worldserver.conf.dist`), **not** 47497.
- **`realmlist``address`** defaults to **`hsrwow.net`** in base SQL; change if your public hostname differs.
---
## What you get when you build this fork ## What you get when you build this fork
- Worldserver with `CLASS_PARAGON` and Paragon-aware DK rune / sticky - Worldserver with `CLASS_PARAGON` and Paragon-aware DK rune / sticky
+5 -1
View File
@@ -42,11 +42,15 @@ CREATE TABLE `realmlist` (
-- --
-- Dumping data for table `realmlist` -- Dumping data for table `realmlist`
-- --
-- Fractured defaults: `address` / `port` are the WORLD server (must match
-- WorldServerPort in worldserver.conf). Client auth uses RealmServerPort from
-- authserver.conf (Fractured dist: 47497), e.g. set realmlist hsrwow.net:47497
-- Adjust `localAddress` if your LAN/internal routing differs.
LOCK TABLES `realmlist` WRITE; LOCK TABLES `realmlist` WRITE;
/*!40000 ALTER TABLE `realmlist` DISABLE KEYS */; /*!40000 ALTER TABLE `realmlist` DISABLE KEYS */;
INSERT INTO `realmlist` VALUES INSERT INTO `realmlist` VALUES
(1,'AzerothCore','127.0.0.1','127.0.0.1','255.255.255.0',8085,0,0,1,0,0,12340); (1,'Fractured WoW','hsrwow.net','127.0.0.1','255.255.255.0',8085,0,0,1,0,0,12340);
/*!40000 ALTER TABLE `realmlist` ENABLE KEYS */; /*!40000 ALTER TABLE `realmlist` ENABLE KEYS */;
UNLOCK TABLES; UNLOCK TABLES;
@@ -52,10 +52,13 @@ MaxPingTime = 30
# #
# RealmServerPort # RealmServerPort
# Description: TCP port to reach the auth server. # Description: TCP port the auth server listens on (login handshake).
# Default: 3724 # Fractured production: match your client realmlist host:port, e.g.
# set realmlist hsrwow.net:47497
# requires RealmServerPort = 47497 and firewall/NAT to this process.
# Default: 3724 (stock WoW); Fractured dist default: 47497
RealmServerPort = 3724 RealmServerPort = 47497
# #
# #