Linux Fedora 19 - iptables falhou ao iniciar

2

Estou tentando iniciar o serviço de firewall iptables , mas ele continua falhando. O que está errado?

# systemctl status iptables.service
iptables.service - IPv4 firewall with iptables
  Loaded: loaded (/usr/lib/systemd/system/iptables.service; enabled)
  Active: failed (Result: exit-code) since Sat 2013-10-26 11:01:54 CDT; 41s ago
 Process: 2114 ExecStart=/usr/libexec/iptables/iptables.init start (code=exited, status=1/FAILURE)

Oct 26 11:01:54 localhost.localdomain iptables.init[2114]: iptables: Applying firewall rules: iptables-restore: line 1 failed
Oct 26 11:01:54 localhost.localdomain systemd[1]: iptables.service: main process exited, code=exited, status=1/FAILURE
Oct 26 11:01:54 localhost.localdomain systemd[1]: Failed to start IPv4 firewall with iptables.
Oct 26 11:01:54 localhost.localdomain systemd[1]: Unit iptables.service entered failed state.
    
por user50045 27.10.2013 / 15:22

1 resposta

2

Experimente (como root):

iptables-restore < /etc/sysconfig/iptables

Se falhar, isso deve dar um erro mais informativo. Se funcionar, algo está errado com os arquivos de serviço do systemd.

    
por 27.10.2013 / 16:09