Tom Isaacson <thomas.isaacson@xxxxxxxxxxxxxxxxxxxxx> wrote: > > Sharing Internet using method: nat > > iptables v1.8.7 (legacy): unknown option "--to-ports" > > Try `iptables -h' or 'iptables --help' for more information. > > Doing cleanup.. done Broken iptables installation. > > The offending iptables commands are: > > iptables -w -t nat -D PREROUTING -s ${GATEWAY%.*}.0/24 -d > > ${GATEWAY} \ > > -p tcp -m tcp --dport 53 -j REDIRECT --to-ports $DNS_PORT > > iptables -w -t nat -D PREROUTING -s ${GATEWAY%.*}.0/24 -d > > ${GATEWAY} \ > > -p udp -m udp --dport 53 -j REDIRECT --to-ports $DNS_PORT > > > > I searched around for a solution and found > > https://community.unix.com/t/iptables-v1-8-7-nf-tables-unknown-option-to-ports/385377/3 This has all diagnostic commands that you'll need to figure out whats happening. > > but this command also fails: > > # iptables -A OUTPUT -m owner --uid 0 > > iptables v1.8.7 (legacy): Couldn't load match `owner':No such file > > or directory > > > > iptables links to xtables-legacy-multi but it seems to have all of the > > necessary files present. iptables says it can't load match 'owner' (libxt_owner.so). So its either missing or iptables is searching the wrong location. strace should tell which directory iptables is searching to fetch extensions. Some embedded distros split packages into subpackages to save space, so it might be missing package too.