diff --git a/Networking.md b/Networking.md index 959e06e..a1e6880 100644 --- a/Networking.md +++ b/Networking.md @@ -24,10 +24,22 @@ in the Network configuration window for xemu: Troubleshooting --------------- +### System Link Session Not Joinable + +* Ensure all MAC addresses are unique. If you are using an EEPROM dumped from your real Xbox, xemu and your Xbox will have the same MAC address. You'll need to change one of them. You can blank the EEPROM line in xemu's Settings window to have it generate a new one for you, or you can use the [EEPROM editor](https://github.com/Ernegien/XboxEepromEditor) to change it. +* Ensure the game versions/regions/updates between the people playing are the same. +* If you are on Windows, ensure you're using the new [npcap](https://nmap.org/npcap/), not the older WinPcap. + ### Bridged Adapter Permission Problems **Important:** You should **never** need to run xemu as the `root` user. +#### macOS + +If you get a permission error when attempting to enable Bridged Adapter, +you may need to update the `/dev/bpfX` permissions on your system. You can +work around this by opening a terminal and executing the following command: + #### Linux If you get a permission error when attempting to enable Bridged Adapter, @@ -38,12 +50,6 @@ to your network interface. You can do so with the following command: sudo setcap cap_net_raw,cap_net_admin=eip `which xemu` ``` -#### macOS - -If you get a permission error when attempting to enable Bridged Adapter, -you may need to update the `/dev/bpfX` permissions on your system. You can -work around this by opening a terminal and executing the following command: - ```bash sudo chown $(whoami):admin /dev/bpf* ```