Anons79 Mini Shell

Directory : /lib/python2.7/site-packages/ansible/modules/network/frr/
Upload File :
Current File : //lib/python2.7/site-packages/ansible/modules/network/frr/frr_bgp.pyc

�
�Udac@`s�ddlmZmZmZeZidd6dgd6dd6ZdZd	Zd
Z	ddl
mZddlm
Z
dd
lmZd�Zedkr�e�ndS(i(tabsolute_importtdivisiontprint_functions1.1tmetadata_versiontpreviewtstatustnetworktsupported_bys
---
module: frr_bgp
version_added: "2.8"
author: "Nilashish Chakraborty (@NilashishC)"
short_description: Configure global BGP settings on Free Range Routing(FRR).
description:
  - This module provides configuration management of global BGP parameters
    on devices running Free Range Routing(FRR).
notes:
  - Tested against FRRouting 6.0.
options:
  config:
    description:
      - Specifies the BGP related configuration.
    suboptions:
      bgp_as:
        description:
          - Specifies the BGP Autonomous System (AS) number to configure on the device.
        type: int
        required: true
      router_id:
        description:
          - Configures the BGP routing process router-id value.
        default: null
      log_neighbor_changes:
        description:
          - Enable/disable logging neighbor up/down and reset reason.
        type: bool
      neighbors:
        description:
          - Specifies BGP neighbor related configurations.
        suboptions:
          neighbor:
            description:
              - Neighbor router address.
            required: True
          remote_as:
            description:
              - Remote AS of the BGP neighbor to configure.
            type: int
            required: True
          update_source:
            description:
              - Source of the routing updates.
          password:
            description:
              - Password to authenticate the BGP peer connection.
          enabled:
            description:
              - Administratively shutdown or enable a neighbor.
            type: bool
          description:
            description:
              - Neighbor specific description.
          ebgp_multihop:
            description:
              - Specifies the maximum hop count for EBGP neighbors not on directly connected networks.
              - The range is from 1 to 255.
            type: int
          peer_group:
            description:
              - Name of the peer group that the neighbor is a member of.
          timers:
            description:
              - Specifies BGP neighbor timer related configurations.
            suboptions:
              keepalive:
                description:
                  - Frequency (in seconds) with which the FRR sends keepalive messages to its peer.
                  - The range is from 0 to 65535.
                type: int
                required: True
              holdtime:
                description:
                  - Interval (in seconds) after not receiving a keepalive message that FRR declares a peer dead.
                  - The range is from 0 to 65535.
                type: int
                required: True
          advertisement_interval:
            description:
              - Minimum interval between sending BGP routing updates for this neighbor.
            type: int
          local_as:
            description:
              - The local AS number for the neighbor.
            type: int
          port:
            description:
              - The TCP Port number to use for this neighbor.
              - The range is from 0 to 65535.
            type: int
      networks:
        description:
          - Specify networks to announce via BGP.
          - For operation replace, this option is mutually exclusive with networks option under address_family.
          - For operation replace, if the device already has an address family activated, this option is not allowed.
        suboptions:
          prefix:
            description:
              - Network ID to announce via BGP.
            required: True
          masklen:
            description:
              - Subnet mask length for the network to announce(e.g, 8, 16, 24, etc.).
          route_map:
            description:
              - Route map to modify the attributes.
      address_family:
        description:
          - Specifies BGP address family related configurations.
        suboptions:
          afi:
            description:
              - Type of address family to configure.
            choices:
              - ipv4
              - ipv6
            required: True
          safi:
            description:
              - Specifies the type of cast for the address family.
            choices:
              - flowspec
              - unicast
              - multicast
              - labeled-unicast
            default: unicast
          redistribute:
            description:
              - Specifies the redistribute information from another routing protocol.
            suboptions:
              protocol:
                description:
                  - Specifies the protocol for configuring redistribute information.
                choices: ['ospf','ospf6','eigrp','isis','table','static','connected','sharp','nhrp','kernel','babel','rip']
                required: True
              id:
                description:
                  - Specifies the instance ID/table ID for this protocol
                  - Valid for ospf and table
              metric:
                description:
                  - Specifies the metric for redistributed routes.
              route_map:
                description:
                  - Specifies the route map reference.
          networks:
            description:
              - Specify networks to announce via BGP.
              - For operation replace, this option is mutually exclusive with root level networks option.
            suboptions:
              network:
                description:
                  - Network ID to announce via BGP.
                required: True
              masklen:
                description:
                  - Subnet mask length for the network to announce(e.g, 8, 16, 24, etc.).
              route_map:
                description:
                  - Route map to modify the attributes.
          neighbors:
            description:
              - Specifies BGP neighbor related configurations in Address Family configuration mode.
            suboptions:
              neighbor:
                description:
                  - Neighbor router address.
                required: True
              route_reflector_client:
                description:
                  - Specify a neighbor as a route reflector client.
                type: bool
              route_server_client:
                description:
                  - Specify a neighbor as a route server client.
                type: bool
              activate:
                description:
                  - Enable the address family for this neighbor.
                type: bool
              remove_private_as:
                description:
                  - Remove the private AS number from outbound updates.
                type: bool
              next_hop_self:
                description:
                  - Enable/disable the next hop calculation for this neighbor.
                type: bool
              maximum_prefix:
                description:
                  - Maximum number of prefixes to accept from this peer.
                  - The range is from 1 to 4294967295.
                type: int
  operation:
    description:
      - Specifies the operation to be performed on the BGP process configured on the device.
      - In case of merge, the input configuration will be merged with the existing BGP configuration on the device.
      - In case of replace, if there is a diff between the existing configuration and the input configuration, the
        existing configuration will be replaced by the input configuration for every option that has the diff.
      - In case of override, all the existing BGP configuration will be removed from the device and replaced with
        the input configuration.
      - In case of delete the existing BGP configuration will be removed from the device.
    default: merge
    choices: ['merge', 'replace', 'override', 'delete']
s�
- name: configure global bgp as 64496
  frr_bgp:
    config:
      bgp_as: 64496
      router_id: 192.0.2.1
      log_neighbor_changes: True
      neighbors:
        - neighbor: 192.51.100.1
          remote_as: 64497
          timers:
            keepalive: 120
            holdtime: 360
        - neighbor: 198.51.100.2
          remote_as: 64498
      networks:
        - prefix: 192.0.2.0
          masklen: 24
          route_map: RMAP_1
        - prefix: 198.51.100.0
          masklen: 24
      address_family:
        - afi: ipv4
          safi: unicast
          redistribute:
            - protocol: ospf
              id: 223
              metric: 10
    operation: merge

- name: Configure BGP neighbors
  frr_bgp:
    config:
      bgp_as: 64496
      neighbors:
        - neighbor: 192.0.2.10
          remote_as: 64496
          password: ansible
          description: IBGP_NBR_1
          timers:
            keepalive: 120
            holdtime: 360
        - neighbor: 192.0.2.15
          remote_as: 64496
          description: IBGP_NBR_2
          advertisement_interval: 120
    operation: merge

- name: Configure BGP neighbors under address family mode
  frr_bgp:
    config:
      bgp_as: 64496
      address_family:
        - afi: ipv4
          safi: multicast
          neighbors:
            - neighbor: 203.0.113.10
              activate: yes
              maximum_prefix: 250

            - neighbor: 192.0.2.15
              activate: yes
              route_reflector_client: True
    operation: merge

- name: Configure root-level networks for BGP
  frr_bgp:
    config:
      bgp_as: 64496
      networks:
        - prefix: 203.0.113.0
          masklen: 27
          route_map: RMAP_1
        - prefix: 203.0.113.32
          masklen: 27
          route_map: RMAP_2
    operation: merge

- name: remove bgp as 64496 from config
  frr_bgp:
    config:
      bgp_as: 64496
    operation: delete
s
commands:
  description: The list of configuration mode commands to send to the device
  returned: always
  type: list
  sample:
    - router bgp 64496
    - bgp router-id 192.0.2.1
    - neighbor 192.51.100.1 remote-as 64497
    - neighbor 192.51.100.1 timers 120 360
    - neighbor 198.51.100.2 remote-as 64498
    - address-family ipv4 unicast
    - redistribute ospf 223 metric 10
    - exit-address-family
    - bgp log-neighbor-changes
    - network 192.0.2.0/24 route-map RMAP_1
    - network 198.51.100.0/24
    - exit
(tto_text(t
NetworkModule(tREDISTRIBUTE_PROTOCOLSc	C`s�itdt�d6tdddt�d6t�d6}itdtdt�d6t�d	6tdd�d
6t�d6}itdddt�d6tdddt�d6}itdt�d
6tdddt�d6tdd�d6tdd�d6tdd�d6t�d6tdt�d6tdd�d6t�d6tdd�d6tddd|�d6t�d6}itdt�d
6tdd�d6tdd�d6tdd�d6tdd�d 6tdd�d!6tdd�d"6}itdd#d$gdt�d%6tdd&d'd(d)gd*d)�d+6tdd,d-dd|�d.6tdd,d-dd|�d/6tdd,d-dd|�d06}itdddt�d16t�d26tdd�d36tdd,d-dd|�d06tdd,d-dd|�d46tdd,d-dd|�d.6}itddd|�d56td*d6dd6d7d8d9g�d:6}td;|d<t�}y|jd=d>�}	Wn)tk
r�}
|jd?t|
��nX|j|	�d@S(As+ main entry point for module execution
    trequiredtprefixttypetinttmasklent	route_maptchoicestprotocoltidtmetrict	keepalivetholdtimetneighbort	remote_astadvertisement_intervaltlocal_astportt
update_sourcetno_logtpasswordtbooltenabledtdescriptiont
ebgp_multihoptdicttoptionsttimerst
peer_grouptactivatetremove_private_ast
next_hop_selftroute_reflector_clienttroute_server_clienttmaximum_prefixtipv4tipv6tafitflowspecslabeled-unicastt	multicasttunicasttdefaulttsafitlisttelementstnetworkstredistributet	neighborstbgp_ast	router_idtlog_neighbor_changestaddress_familytconfigtmergetreplacetoverridetdeletet	operationt
argument_spectsupports_check_modet
config_filters bgptmsgN(	R#tTrueR
R	tedit_configt	Exceptiont	fail_jsonRt	exit_json(tnetwork_spectredistribute_spect
timer_spect
neighbor_spectaf_neighbor_spectaddress_family_spectconfig_specRDtmoduletresulttexc((sG/usr/lib/python2.7/site-packages/ansible/modules/network/frr/frr_bgp.pytmainNsp





"
%	t__main__N(t
__future__RRRR
t
__metaclass__tANSIBLE_METADATAt
DOCUMENTATIONtEXAMPLEStRETURNtansible.module_utils._textRt1ansible.module_utils.network.frr.providers.moduleR	tAansible.module_utils.network.frr.providers.cli.config.bgp.processR
RWt__name__(((sG/usr/lib/python2.7/site-packages/ansible/modules/network/frr/frr_bgp.pyt<module>s


�U	O

Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]