Merge branch 'iproute2' into 'newinfra'
[iproute2] name table 26 See merge request nounous/ansible!44certbot_on_virtu
commit
b9b93eba2f
|
@ -1,5 +1,10 @@
|
||||||
#!/usr/bin/env ansible-playbook
|
#!/usr/bin/env ansible-playbook
|
||||||
---
|
---
|
||||||
|
# Deploy iproute2 config file
|
||||||
|
- hosts: crans_routeurs
|
||||||
|
roles:
|
||||||
|
- iproute2
|
||||||
|
|
||||||
# Deploy firewall
|
# Deploy firewall
|
||||||
- hosts: crans_routeurs
|
- hosts: crans_routeurs
|
||||||
vars:
|
vars:
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
- name: Deploy table names configuration
|
||||||
|
template:
|
||||||
|
src: iproute2/rt_tables.j2
|
||||||
|
dest: /etc/iproute2/rt_tables
|
||||||
|
mode: 0644
|
||||||
|
owner: root
|
||||||
|
group: root
|
|
@ -0,0 +1,13 @@
|
||||||
|
{{ ansible_header | comment }}
|
||||||
|
#
|
||||||
|
# reserved values
|
||||||
|
#
|
||||||
|
255 local
|
||||||
|
254 main
|
||||||
|
253 default
|
||||||
|
0 unspec
|
||||||
|
#
|
||||||
|
# local
|
||||||
|
#
|
||||||
|
#1 inr.ruhep
|
||||||
|
26 zayo
|
Loading…
Reference in New Issue