It seems that IPv6 does work on an ARM device running 4.2.41
ifconfig reports eth0 as having an IPv6 address.
How do I disable IPv6?
There are no options to do this on networking section in the Control Panel.
How to Disable IPv6
Re: How to Disable IPv6
210series, arm, TOS4 device do not have this option.
Perhaps you can do this by setting the relevant options for your router.
Perhaps you can do this by setting the relevant options for your router.
To contact our team, please send email to following addresses, remember to replace (at) with @:
Technical team: support(at)terra-master.com (for technical support)
Service team: service(at)terra-master.com (for purchasing, return, replacement, RMA service)
Technical team: support(at)terra-master.com (for technical support)
Service team: service(at)terra-master.com (for purchasing, return, replacement, RMA service)
- AlAleksiev
- Posts: 44
- Joined: 19 Feb 2024, 00:15

Re: How to Disable IPv6
Hi guys, just saw that thread - it's kind of old, but I'll put some notes here to serve eventually in the future for a similar question.
You can always stop IPv6 on a linux. The example I'll write is for debian based distributions - that's where TOS v6.X is currently.
PLease mention the prompt '#' - that means root! If you are with that prompt '$', you'll need to add one 'sudo ' in front of those commands or when edditing file with vi!
This will stop IPv6 for the currently running appliance - it's not going to survive reload and that's good approaach as initial testing for side effect with whatever you are running!
If you want to have IPv6 disabled for good, add in /etc/sysctl.conf file those lines:
and apply those changes
To valisate you can always use
if there are no output, you have the IPv6 disabled.
Good luck!
You can always stop IPv6 on a linux. The example I'll write is for debian based distributions - that's where TOS v6.X is currently.
PLease mention the prompt '#' - that means root! If you are with that prompt '$', you'll need to add one 'sudo ' in front of those commands or when edditing file with vi!
This will stop IPv6 for the currently running appliance - it's not going to survive reload and that's good approaach as initial testing for side effect with whatever you are running!
Code: Select all
# sysctl -w net.ipv6.conf.all.disable_ipv6=1
# sysctl -w net.ipv6.conf.default.disable_ipv6=1
# sysctl -w net.ipv6.conf.lo.disable_ipv6=1
#Code: Select all
# Permanently disable IPv6
net.ipv6.conf.all.disable_ipv6=1
net.ipv6.conf.default.disable_ipv6=1
net.ipv6.conf.lo.disable_ipv6=1Code: Select all
# sysctl -pCode: Select all
# ip a | grep v6
Good luck!
______________________
F5-221; 10G RAM; 5 x 4TB TRAID; Riser, Power and/or ASMedia HW failure undetected by TM Support
F6-424; 32G RAM; 2 x 512GB 8Gb/s M.2; 6 x 4TB raidz2; TrueNAS 25.10.1
¯¯¯¯¯¯ Jellyfin, Pi-Hole, Unifi Controller, Zabbix
F5-221; 10G RAM; 5 x 4TB TRAID; Riser, Power and/or ASMedia HW failure undetected by TM Support
F6-424; 32G RAM; 2 x 512GB 8Gb/s M.2; 6 x 4TB raidz2; TrueNAS 25.10.1
¯¯¯¯¯¯ Jellyfin, Pi-Hole, Unifi Controller, Zabbix
