Metadata-Version: 1.1
Name: iptdump
Version: 1b1.3
Summary: describes firewall rules and dump it out
Home-page: https://gitorious.org/iptdump
Author: Martin Ness
Author-email: m.ness@martin89.de
License: AGPLv3
Description: 
        About
        =====
        
        This package allows you to describes firewall rules and dump it out, there is support for
        iptables and ip6tables.
        
        Example Usage
        =============
        
        ::
        
            >>> import iptdump
            >>> ipt = iptdump.Iptables()
            >>> chain = ipt.table(iptdump.TABLE_FILTER).chain(iptdump.CHAIN_INPUT)
            >>> chain.new().src('192.168.23.0/24').target(iptdump.TARGET_DROP)
            <iptdump.Rule instance at 0x7f922dfb8cb0>
            >>> print ipt.dump()
            # Generated by python-iptdump v1b1 on Mon Dec  3 18:25:27 2012
            *filter
            :INPUT ACCEPT [0:0]
            -A INPUT -s 192.168.23.0/24 -j DROP
            COMMIT
            # Completed on Mon Dec  3 18:25:27 2012
            >>> ipt = iptdump.Ip6tables()
            >>> chain = ipt.table(iptdump.TABLE_FILTER).chain(iptdump.CHAIN_INPUT)
            >>> chain.new().src('fe80::/64').target(iptdump.TARGET_DROP)
            <iptdump.Rule instance at 0x7f7ed18a1b48>
            >>> print ipt.dump()
            # Generated by python-iptdump v1b1 on Mon Dec  3 18:25:32 2012
            *filter
            :INPUT ACCEPT [0:0]
            -A INPUT -s fe80::/64 -j DROP
            COMMIT
            # Completed on Mon Dec  3 18:25:32 2012
        
        
Platform: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Telecommunications Industry
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Communications
Classifier: Topic :: Internet
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Networking
Classifier: Topic :: System :: Networking :: Firewalls
Classifier: Topic :: Utilities
