В последних версиях Fedora (19) вместо iptables по умолчанию используется динамический фаервол firewalld. Чтобы вернуть всё как было нужно остановить и запретить автозапуск firewalld.
# systemctl disable firewalld # systemctl stop firewalld
Затем нужно установить iptables-services (если он не установлен):
# yum install iptables-services
Потом запустить сервис iptables
# touch /etc/sysconfig/iptables # systemctl start iptables # systemctl enable iptables
И если используете IPv6
# touch /etc/sysconfig/ip6tables # systemctl start ip6tables # systemctl enable ip6tables
И наконец как обычно настраивайте файлы конфигурации /etc/sysconfig/iptables и /etc/sysconfig/ip6tables.