Merge branch 'role_common'
This commit is contained in:
		
						commit
						e5ebc2ad5f
					
				
							
								
								
									
										1
									
								
								common/defaults/main.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								common/defaults/main.yml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1 @@
 | 
				
			|||||||
 | 
					ipv6_stable_secret: 1111:2222:3333:4444:5555:6666:7777:8888
 | 
				
			||||||
@ -5,3 +5,5 @@
 | 
				
			|||||||
- import_tasks: ./packages.yml
 | 
					- import_tasks: ./packages.yml
 | 
				
			||||||
 | 
					
 | 
				
			||||||
- import_tasks: ./aliases.yml
 | 
					- import_tasks: ./aliases.yml
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- import_tasks: ./networking.yml
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										22
									
								
								common/tasks/networking.yml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								common/tasks/networking.yml
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,22 @@
 | 
				
			|||||||
 | 
					- name: Set sysctl settings for ip-forwarding
 | 
				
			||||||
 | 
					  copy:
 | 
				
			||||||
 | 
					      dest: "/etc/sysctl.d/ip-forwarding.conf"
 | 
				
			||||||
 | 
					      content: |
 | 
				
			||||||
 | 
					          net.ipv4.ip_forward           = 1
 | 
				
			||||||
 | 
					          net.ipv6.conf.all.forwarding  = 1
 | 
				
			||||||
 | 
					  notify: reload_sysctl
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- name: Set sysctl settings for ipv6-address-generation
 | 
				
			||||||
 | 
					  copy:
 | 
				
			||||||
 | 
					      dest: "/etc/sysctl.d/ipv6-slaac-address-generation.conf"
 | 
				
			||||||
 | 
					      content: |
 | 
				
			||||||
 | 
					          net.ipv6.conf.default.addr_gen_mode = 2
 | 
				
			||||||
 | 
					          net.ipv6.conf.default.stable_secret = {{ ipv6_stable_secret }}
 | 
				
			||||||
 | 
					  notify: reload_sysctl
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					- name: Set sysctl settings to override ipv6-slaac with enabled forwarding
 | 
				
			||||||
 | 
					  copy:
 | 
				
			||||||
 | 
					      dest: "/etc/sysctl.d/ipv6-slaac-override.conf"
 | 
				
			||||||
 | 
					      content: |
 | 
				
			||||||
 | 
					          net.ipv6.conf.all.accept_ra = 2
 | 
				
			||||||
 | 
					  notify: reload_sysctl
 | 
				
			||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user