Пример #1
0
def exec_command(ctx, command, fortinet_host_ip):

    ctx.logger.info('Open connection to host {0} '.format(fortinet_host_ip))
    conn = FortiOS(fortinet_host_ip, username=forti_username, password=forti_password)
    conn.open()

    ctx.logger.info("Execute Command >> \n {0}".format(command))

    conn.execute_command(command)
    conn.close()
Пример #2
0
def exec_command(ctx, command, fortinet_host_ip):

    ctx.logger.info('Open connection to host {0} '.format(fortinet_host_ip))
    conn = FortiOS(fortinet_host_ip, username=forti_username, password=forti_password)
    conn.open()

    ctx.logger.info("Execute Command >> \n {0}".format(command))

    conn.execute_command(command)
    conn.close()
Пример #3
0
def set_port(ctx, fortinet_host_ip, target_ip, port_id, port_alias):
    ctx.logger.info('Configure fw port ....')

    ctx.logger.info('Open connection to host {0} '.format(fortinet_host_ip))
    conn = FortiOS(fortinet_host_ip,
                   username=forti_username,
                   password=forti_password)
    conn.open()

    command = \
        'config system interface\n' \
        '   edit port%s\n' \
        '       set mode static\n' \
        '       set allowaccess ping\n' \
        '       set alias %s\n' \
        '       set ip %s  %s\n' \
        '   next\n' \
        'end' % (port_id, port_alias, target_ip, portMask)

    ctx.logger.info(">>:\n {0}".format(command))

    conn.execute_command(command)
    conn.close()
Пример #4
0
def set_policy(ctx, fortinet_host_ip):
    ctx.logger.info('Open connection to host {0} '.format(fortinet_host_ip))
    conn = FortiOS(fortinet_host_ip,
                   username=forti_username,
                   password=forti_password)
    conn.open()

    command = \
        'config firewall policy\n' \
        '  edit 1\n' \
        '    set srcintf \"any\"\n' \
        '    set dstintf \"any\"\n' \
        '    set srcaddr \"all\"\n' \
        '    set dstaddr \"all\"\n' \
        '    set action accept\n' \
        '    set schedule \"always\"\n' \
        '    set service \"ALL\"\n' \
        '  next\n' \
        'end'

    ctx.logger.info(">>:\n {0}".format(command))

    conn.execute_command(command)
    conn.close()
def main():
    argument_spec = dict(
        src=dict(type='str', default=None),
        filter=dict(type='str', default=""),
    )

    argument_spec.update(fortios_argument_spec)

    required_if = fortios_required_if

    module = AnsibleModule(
        argument_spec=argument_spec,
        supports_check_mode=True,
        required_if=required_if,
    )

    result = dict(changed=False)

    # fail if pyFG not present
    if not HAS_PYFG:
        module.fail_json(
            msg=
            'Could not import the python library pyFG required by this module')

    #define device
    f = FortiOS(
        module.params['host'],
        username=module.params['username'],
        password=module.params['password'],
    )

    #connect
    try:
        f.open()
    except:
        module.fail_json(msg='Error connecting device')

    # get info
    facts = dict()

    facts['all_ipv4_addresses'] = list()

    interfaces = f.execute_command('get system interface')
    for interface in interfaces:
        if re.search('name:', interface):
            if re.search('0.0.0.0 0.0.0.0', interface) == None:
                ipv4_address = re.match(
                    '.*ip:\s([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})',
                    interface).group(1)
                facts['all_ipv4_addresses'].append(ipv4_address)

    #facts['all_ipv6_addresses'] = list()
    #facts['apparmor'] = dict()
    #facts['architecture'] = ''
    #facts['bios_date'] =''
    #facts['bios_version'] = ''
    #facts['date_time'] = dict()

    # get interface of default route
    defaultInterface = re.match(
        '.*,\s+(.*)$',
        f.execute_command('get router info routing-table all | grep 0.0.0.0')
        [0].lstrip()).group(1)

    # convert ppp1 to pppoe
    if re.match('ppp', defaultInterface):
        defaultInterface = 'pppoe'

    # get interface's info which is used on default route
    interfaces = f.execute_command('get system interface | grep ' +
                                   defaultInterface)

    for interface in interfaces:
        if re.search('status: up', interface) and re.search(
                defaultInterface, interface):
            default_ipv4_address = re.match(
                '.*ip:\s([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3})',
                interface).group(1)

    facts['default_ipv4'] = dict()
    facts['default_ipv4'].update({'address': default_ipv4_address})
    facts['default_ipv4'].update({'interface': defaultInterface})

    #facts['default_ipv6'] = dict()

    # Version: Fortigate-50B v4.0,build0665,130514 (MR3 Patch 14)
    distribution_major_version = re.match(
        'Version:\s.*\s(.*),build',
        f.execute_command('get system status | grep Version')
        [0].lstrip()).group(1)
    distribution_version = re.match(
        'Version:\s.*\((.*)\)',
        f.execute_command('get system status | grep Version')
        [0].lstrip()).group(1)
    facts['distribution'] = 'FortiOS'
    facts['distribution_major_version'] = distribution_major_version
    facts[
        'distribution_version'] = distribution_major_version + ' ' + distribution_version

    #dns = f.execute_command('get system dns')[]

    #facts['dns'] = dict()
    #facts['domain'] = ''

    hostname = re.match(
        'Hostname:\s(.*)',
        f.execute_command('get system status | grep Hostname')
        [0].lstrip()).group(1)
    facts['fqdn'] = hostname
    facts['hostname'] = hostname

    #facts['interfaces'] = list()
    #facts['ip_addresses'] = list()
    #facts['kernel'] = ''
    #facts['lastboot'] = ''
    #facts['machine'] = ''
    #facts['machine_id'] = ''
    #facts['memfree_mb'] = ''

    memfree_mb = re.match(
        'Mem:\s*([0-9]*)\s*([0-9]*)\s*([0-9]*)',
        f.execute_command('diagnose hardware sysinfo memory | grep Mem:')
        [0].lstrip()).group(3)
    memfree_mb = math.floor(int(memfree_mb) / 1024 / 1024)
    facts['memfree_mb'] = memfree_mb

    memtotal_mb = re.match(
        'Mem:\s*([0-9]*)\s*([0-9]*)\s*([0-9]*)',
        f.execute_command('diagnose hardware sysinfo memory | grep Mem:')
        [0].lstrip()).group(1)
    memtotal_mb = math.floor(int(memtotal_mb) / 1024 / 1024)
    facts['memtotal_mb'] = memtotal_mb

    #facts['mounts'] = list()
    #facts['nodename'] = ''
    facts['os_family'] = 'FortiOS'

    results = f.execute_command('get hardware cpu')
    i = 0
    for result in results:
        if re.match('[pP]rocessor\s*:\s*(.*)', result.lstrip()) != None:
            i = i + 1

    #facts['processor'] = list()
    #facts['processor_cores'] = 0
    #facts['processor_count'] = 0
    #facts['processor_threads_per_core'] = 0
    facts['processor_vcpus'] = i

    product_name = re.match(
        'Version:\s(.*)\sv',
        f.execute_command('get system status | grep Version')
        [0].lstrip()).group(1)
    facts['product_name'] = product_name

    product_serial = re.match(
        'Serial-Number:\s(.*)',
        f.execute_command('get system status | grep Serial')
        [0].lstrip()).group(1)
    facts['product_serial'] = product_serial
    #facts['swapfree_mb'] = 0
    #facts['swaptotal_mb'] =  0
    #facts['system'] = "Win32NT"
    facts['system_vendor'] = "Fortinet"
    #facts['uptime_seconds'] = 767400
    facts['module_setup'] = True

    ansible_facts = dict()
    for key, value in iteritems(facts):
        key = 'ansible_%s' % key
        ansible_facts[key] = value

    module.exit_json(ansible_facts=ansible_facts)