|  | @@ -158,6 +158,11 @@ function stop {
 | 
	
		
			
			| 158 | 158 |      # SSB/Patchwork
 | 
	
		
			
			| 159 | 159 |      iptables -D INPUT -p udp --dport 8008 -j ACCEPT
 | 
	
		
			
			| 160 | 160 |      iptables -D INPUT -p tcp --dport 8008 -j ACCEPT
 | 
	
		
			
			|  | 161 | +    # Tunnel over the internet
 | 
	
		
			
			|  | 162 | +    iptables -D INPUT -p tcp --dport 53 -j ACCEPT
 | 
	
		
			
			|  | 163 | +    iptables -D INPUT -p udp --dport 53 -j ACCEPT
 | 
	
		
			
			|  | 164 | +    iptables -D INPUT -p tcp --dport 8942 -j ACCEPT
 | 
	
		
			
			|  | 165 | +    iptables -D INPUT -p udp --dport 8942 -j ACCEPT
 | 
	
		
			
			| 161 | 166 |  
 | 
	
		
			
			| 162 | 167 |      systemctl restart network-manager
 | 
	
		
			
			| 163 | 168 |  }
 | 
	
	
		
			
			|  | @@ -313,6 +318,11 @@ function start {
 | 
	
		
			
			| 313 | 318 |      # SSB/Patchwork
 | 
	
		
			
			| 314 | 319 |      iptables -A INPUT -p udp --dport 8008 -j ACCEPT
 | 
	
		
			
			| 315 | 320 |      iptables -A INPUT -p tcp --dport 8008 -j ACCEPT
 | 
	
		
			
			|  | 321 | +    # Tunnel over the internet
 | 
	
		
			
			|  | 322 | +    iptables -A INPUT -p tcp --dport 53 -j ACCEPT
 | 
	
		
			
			|  | 323 | +    iptables -A INPUT -p udp --dport 53 -j ACCEPT
 | 
	
		
			
			|  | 324 | +    iptables -A INPUT -p tcp --dport 8942 -j ACCEPT
 | 
	
		
			
			|  | 325 | +    iptables -A INPUT -p udp --dport 8942 -j ACCEPT
 | 
	
		
			
			| 316 | 326 |  
 | 
	
		
			
			| 317 | 327 |      systemctl restart avahi-daemon
 | 
	
		
			
			| 318 | 328 |  
 |