How to enable IPv6 support in Transmission?
Published on Aug. 22, 2023, 12:20 p.m.
To enable IPv6 support in Transmission, you can follow these steps:
- Open Transmission.
- Click on the “Edit” menu and select “Preferences”.
- Go to the “Network” tab.
- Under “Incoming TCP Port”, uncheck the “Randomize port on launch” option.
- Set the “Port” value to a specific port number that is open on your firewall.
- Under “Peer Listening Port”, uncheck the “Randomize port on launch” option.
- Set the “Port” value to a specific port number that is open on your firewall.
- Under “IPv6”, check the “Enable IPv6 support” option.
- Click the “Save” button to save your changes.
To enable IPv6 support in Transmission through the config file, you can follow these steps:
- Open your Terminal and navigate to the Transmission-daemon config directory using the command:
cd /etc/transmission-daemon/
- Open the settings.json file using your preferred text editor. For example, using the
nano
text editor:
sudo nano settings.json
- Under the
"rpc-bind-address-ipv4"
line, add"rpc-bind-address-ipv6": "::",
- Save the file and exit the text editor.
- Restart the Transmission-daemon service using the command:
sudo systemctl restart transmission-daemon.service
By doing so, you have enabled IPv6 support in Transmission through the config file.