├── .gitattributes ├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── IPA-DN-CommonAnsible_Private └── private_common_vars.yml ├── LICENSE ├── README.md ├── bgp_routers ├── ansible.cfg ├── bird.yml ├── files │ └── bird-2.0.7.tar.gz ├── hosts │ ├── group_vars │ │ ├── preparing_servers.yml │ │ └── running_servers.yml │ ├── host_vars │ │ ├── bgprt1.yml │ │ ├── bgprt1_tasks.yml │ │ ├── bgprt2.yml │ │ └── bgprt2_tasks.yml │ └── hosts.yml ├── install.yml ├── post_tasks │ └── run_additional_tasks │ │ └── run_additional_tasks.yml ├── pre_tasks │ └── hdd_partition │ │ └── none.yml ├── prepare.yml └── roles │ └── config_bird │ ├── files │ └── per_hosts │ │ ├── bgprt1.bird │ │ └── bgprt2.bird │ └── tasks │ └── main.yml ├── cisco.jpg ├── fig1.jpg ├── fig2.jpg ├── juniper.jpg └── logs └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /IPA-DN-CommonAnsible_Private/private_common_vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/IPA-DN-CommonAnsible_Private/private_common_vars.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/README.md -------------------------------------------------------------------------------- /bgp_routers/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/bgp_routers/ansible.cfg -------------------------------------------------------------------------------- /bgp_routers/bird.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/bgp_routers/bird.yml -------------------------------------------------------------------------------- /bgp_routers/files/bird-2.0.7.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/bgp_routers/files/bird-2.0.7.tar.gz -------------------------------------------------------------------------------- /bgp_routers/hosts/group_vars/preparing_servers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/bgp_routers/hosts/group_vars/preparing_servers.yml -------------------------------------------------------------------------------- /bgp_routers/hosts/group_vars/running_servers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/bgp_routers/hosts/group_vars/running_servers.yml -------------------------------------------------------------------------------- /bgp_routers/hosts/host_vars/bgprt1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/bgp_routers/hosts/host_vars/bgprt1.yml -------------------------------------------------------------------------------- /bgp_routers/hosts/host_vars/bgprt1_tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/bgp_routers/hosts/host_vars/bgprt1_tasks.yml -------------------------------------------------------------------------------- /bgp_routers/hosts/host_vars/bgprt2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/bgp_routers/hosts/host_vars/bgprt2.yml -------------------------------------------------------------------------------- /bgp_routers/hosts/host_vars/bgprt2_tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/bgp_routers/hosts/host_vars/bgprt2_tasks.yml -------------------------------------------------------------------------------- /bgp_routers/hosts/hosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/bgp_routers/hosts/hosts.yml -------------------------------------------------------------------------------- /bgp_routers/install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/bgp_routers/install.yml -------------------------------------------------------------------------------- /bgp_routers/post_tasks/run_additional_tasks/run_additional_tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/bgp_routers/post_tasks/run_additional_tasks/run_additional_tasks.yml -------------------------------------------------------------------------------- /bgp_routers/pre_tasks/hdd_partition/none.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bgp_routers/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/bgp_routers/prepare.yml -------------------------------------------------------------------------------- /bgp_routers/roles/config_bird/files/per_hosts/bgprt1.bird: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/bgp_routers/roles/config_bird/files/per_hosts/bgprt1.bird -------------------------------------------------------------------------------- /bgp_routers/roles/config_bird/files/per_hosts/bgprt2.bird: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/bgp_routers/roles/config_bird/files/per_hosts/bgprt2.bird -------------------------------------------------------------------------------- /bgp_routers/roles/config_bird/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/bgp_routers/roles/config_bird/tasks/main.yml -------------------------------------------------------------------------------- /cisco.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/cisco.jpg -------------------------------------------------------------------------------- /fig1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/fig1.jpg -------------------------------------------------------------------------------- /fig2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/fig2.jpg -------------------------------------------------------------------------------- /juniper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IPA-CyberLab/IPA-DN-EasyBgpStarterKit/HEAD/juniper.jpg -------------------------------------------------------------------------------- /logs/readme.md: -------------------------------------------------------------------------------- 1 | log file 2 | --------------------------------------------------------------------------------