iptables não foi possível carregar a permissão de segmentação

1

Estou usando o comando abaixo para permitir todo o tráfego de hosts na minha rede interna, mas ele diz "iptables v1.4.18: não foi possível carregar o destino 'ALLOW': nenhum arquivo ou diretório". Qual é o problema aqui?

iptables -A input -s 192.168.1.0/24 -j ALLOW
    
por Mr. White 07.12.2013 / 18:54

1 resposta

3

O alvo não é ALLOW , deve ser ACCEPT .

$ iptables -A INPUT -s 192.168.1.0/24 -j ACCEPT

página man do iptables do trecho

TARGETS

A firewall rule specifies criteria for a packet, and a target. If the packet does not match, the next rule in the chain is the examined; if it does match, then the next rule is specified by the value of the target, which can be the name of a user-defined chain or one of the special values ACCEPT, DROP, QUEUE, or RETURN.

ACCEPT means to let the packet through. DROP means to drop the packet on the floor. QUEUE means to pass the packet to userspace (if supported by the kernel). RETURN means stop traversing this chain and resume at the next rule in the previous (calling) chain. If the end of a built-in chain is reached or a rule in a built-in chain with target RETURN is matched, the target specified by the chain policy determines the fate of the packet.

    
por 07.12.2013 / 19:01