major update not sure
[vsorcdistro/.git] / scripts / hostadress.sh
1 #!/bin/bash
2 #:'
3 #Este script es para usarlo junto con el routerflows.sh en la practica de OVS c
4 #como routers
5 #'
6
7 #Setting addreses
8 echo "Setting addresses..."
9 echo "h1 ip addr del 10.0.0.1/8 dev h1-eth0" > fifo
10 echo "h1 ip addr add 172.16.20.10/24 dev h1-eth0" > fifo
11 echo "h2 ip addr del 10.0.0.2/8 dev h2-eth0" > fifo
12 echo "h2 ip addr add 172.16.10.10/24 dev h2-eth0" > fifo 
13 echo "h3 ip addr del 10.0.0.3/8 dev h3-eth0" > fifo
14 echo "h3 ip addr add 192.168.30.10/24 dev h3-eth0" > fifo
15
16 #Setting default route to the hosts
17 echo "Setting default route to the hosts..."
18 echo "h1 ip route add default via 172.16.20.1" > fifo
19 echo "h2 ip route add default via 172.16.10.1" > fifo
20 echo "h3 ip route add default via 192.168.30.1" > fifo
21 echo "Done"