/[projects]/trafficcontrol/bridge.sh
ViewVC logotype

Annotation of /trafficcontrol/bridge.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 111 - (hide annotations) (download) (as text)
Thu Oct 9 11:04:37 2008 UTC (15 years, 7 months ago) by torben
File MIME type: application/x-sh
File size: 278 byte(s)
Rename bridge interface name to br0

1 torben 110 #!/bin/bash
2    
3     IF0=eth0
4     IF1=eth2
5    
6 torben 111 ip link set down dev br0
7 torben 110 brctl delbr br0
8     ifconfig $IF0 down
9     ifconfig $IF1 down
10    
11     brctl addbr br0
12 torben 111 brctl addif br0 $IF0
13     brctl addif br0 $IF1
14 torben 110
15     ip link set up dev $IF0
16     ip link set up dev $IF1
17     ip link set up dev br0
18    
19     echo "Created bridge:"
20     brctl show

  ViewVC Help
Powered by ViewVC 1.1.20