I have just installed Webmin on a Ubuntu server. According to the docs you need to open up port 10000 (which is what Webmin runs on), with this:
iptables -A INPUT -p tcp -m tcp --dport 10000 -j ACCEPT
It then says you need to apply the firewall configuration with:
/etc/init.d/iptables restart
However, this command doesn't work for me. Is there a different command that saves the changes on Ubuntu?
there is a package that contains a system service to restore
put rules in /etc/iptables/rules.
one way to do this is:
Your iptables rule is active once you execute it. Issuing a restart merely restores your iptables config to however it was last saved. There is no need to do the restart.
On many Linux distributions, you can save changes made to iptables config by:
or alternately
But this doesn't activate changes, it merely makes them permanent. The moment you executed the
iptables
command, the change was active. This command makes changes in real time.will save rules in a plain text file, and usually restored on system sturup by the init.d script. see iptables.conf e iptables man for details