mirror of
				https://github.com/eworm-de/routeros-scripts.git
				synced 2024-05-11 05:55:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			753 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			753 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#!rsc by RouterOS
 | 
						|
# RouterOS script: ip-addr-bridge
 | 
						|
# Copyright (c) 2018-2023 Christian Hesse <mail@eworm.de>
 | 
						|
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
 | 
						|
#
 | 
						|
# enable or disable ip addresses based on bridge port state
 | 
						|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/ip-addr-bridge.md
 | 
						|
 | 
						|
:foreach Bridge in=[ /interface/bridge/find ] do={
 | 
						|
  :local BrName [ /interface/bridge/get $Bridge name ];
 | 
						|
  :if ([ :len [ /interface/bridge/port/find where bridge=$BrName ] ] > 0) do={
 | 
						|
    :if ([ :len [ /interface/bridge/port/find where bridge=$BrName and inactive=no ] ] = 0) do={
 | 
						|
      /ip/address/disable [ find where !dynamic interface=$BrName ];
 | 
						|
    } else={
 | 
						|
      /ip/address/enable [ find where !dynamic interface=$BrName ];
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |