| 40 | |
| 41 | Setup networking as follows on the console host |
| 42 | |
| 43 | {{{ |
| 44 | # This file describes the network interfaces available on your system |
| 45 | # and how to activate them. For more information, see interfaces(5). |
| 46 | |
| 47 | # The loopback network interface |
| 48 | auto lo |
| 49 | iface lo inet loopback |
| 50 | |
| 51 | # The CM network interface |
| 52 | auto eth1 |
| 53 | iface eth1 inet static |
| 54 | address 10.1.0.254 |
| 55 | netmask 255.255.255.0 |
| 56 | broadcast 10.1.0.255 |
| 57 | |
| 58 | # The Control network interface |
| 59 | auto eth3 |
| 60 | iface eth3 inet static |
| 61 | address 10.10.0.254 |
| 62 | netmask 255.255.255.0 |
| 63 | broadcast 10.10.0.255 |
| 64 | |
| 65 | # The Data network interface |
| 66 | auto eth0 |
| 67 | iface eth0 inet static |
| 68 | address 10.20.0.254 |
| 69 | netmask 255.255.255.0 |
| 70 | broadcast 10.20.0.255 |
| 71 | |
| 72 | # The primary network interface |
| 73 | auto eth2 |
| 74 | iface eth2 inet dhcp |
| 75 | }}} |