Annotation of embedaddon/strongswan/testing/hosts/default/etc/iptables.drop, revision 1.1

1.1     ! misho       1: *filter
        !             2: 
        !             3: # default policy is DROP
        !             4: -P INPUT DROP
        !             5: -P OUTPUT DROP
        !             6: -P FORWARD DROP
        !             7: 
        !             8: # allow ssh
        !             9: -A INPUT  -p tcp --dport 22 -j ACCEPT
        !            10: -A OUTPUT -p tcp --sport 22 -j ACCEPT
        !            11: 
        !            12: COMMIT

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>