hello - another year has started, and i am running into another bizarre issue.
my webmin/virtualmin has been fine for months, but after running dnf -y upgrade; i can no longer access the browser 10000 page.
dnf -y upgrade;
according to this webpage: https://www.webmin.com/firewall.html
i should fix it by going into the /etc/sysconfig/iptables script and add
/etc/sysconfig/iptables
-A INPUT -p tcp -m tcp --dport 10000 -j ACCEPT
then simply run:
systemctl restart iptables.service ; systemctl status iptables.service ;
but that did not fix it. HOWEVER, when i did:
systemctl stop iptables.service ;
now it is working fine!
any suggestions where i go from here? (and please quit responding: "you go to the unemployment line")
centos-8 OS.
this seemed to fix it:
iptables -I INPUT 1 -p tcp --dport 10000 -j ACCEPT ;
perhaps this needs to be done at reboot...
finally, went into /etc/sysconfig/iptables and added:
-I INPUT 1 -p tcp --dport 10000 -j ACCEPT
this seems to have fixed it.
Log in to post a comment.
hello - another year has started, and i am running into another bizarre issue.
my webmin/virtualmin has been fine for months, but after running
dnf -y upgrade;i can no longer access the browser 10000 page.according to this webpage: https://www.webmin.com/firewall.html
i should fix it by going into the
/etc/sysconfig/iptablesscript and addthen simply run:
but that did not fix it. HOWEVER, when i did:
now it is working fine!
any suggestions where i go from here? (and please quit responding: "you go to the unemployment line")
centos-8 OS.
Last edit: mark edwards 2021-01-03
this seemed to fix it:
perhaps this needs to be done at reboot...
finally, went into
/etc/sysconfig/iptablesand added:this seems to have fixed it.