24 lines
		
	
	
		
			409 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			409 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
 | |
| 
 | |
| # Réseaux
 | |
| NETWORKS=(
 | |
|     ur   # université de la réunion
 | |
|     ksct # ks.jclain.fr
 | |
| )
 | |
| 
 | |
| ur_INCLUDES=(10/8)
 | |
| ur_EXCLUDES=(10.42/16)
 | |
| ur_DOMAINS=(univ.run univ-reunion.fr)
 | |
| 
 | |
| ksct_INCLUDES=(192.168.97/24)
 | |
| ksct_EXCLUDES=()
 | |
| ksct_DOMAINS=(ct)
 | |
| 
 | |
| # Règles de la forme FROM:TO:SSH
 | |
| RULES=(
 | |
|     ksct:ksct:ssh
 | |
|     :ksct:kssh
 | |
|     ur::ssh
 | |
|     :ur:fssh
 | |
| )
 |