8 lines
		
	
	
		
			102 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			102 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| BR=$1
 | |
| DEV=$2
 | |
| MTU=$3
 | |
| /sbin/ifconfig $DEV mtu $MTU promisc up
 | |
| /usr/sbin/brctl addif $BR $DEV
 | 
