OpenWRT Disable IPV6 - How to disable IPV6 for OpenWRT Router

Опубликовано: 11 Октябрь 2024
на канале: STARTUP HAKK
486
6

#CodeYourFuture #OpenWRT #IPV6 #Router

https://StartupHakk.com/?v=_w30ZQ3zkM8

Kit router - $20 with free S/H
https://www.ebay.com/itm/324595429835

Firmware for this kit router:
https://openwrt.org/toh/western_digit...

uci set 'network.lan.ipv6=0'
uci set 'network.wan.ipv6=0'
uci set 'dhcp.lan.dhcpv6=disabled'
uci commit
uci -q delete dhcp.lan.dhcpv6
uci -q delete dhcp.lan.ra
uci commit dhcp

/etc/init.d/odhcpd disable
/etc/init.d/odhcpd stop

uci set network.lan.delegate="0"
uci commit network

#do the following 1 lines or else just reboot
/etc/init.d/network restart