Changes between Version 40 and Version 41 of Old/hNodes/cNodeVer3/dAssembly/e4NodesSetup


Ignore:
Timestamp:
Jun 21, 2013, 4:45:37 PM (11 years ago)
Author:
agosain
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Old/hNodes/cNodeVer3/dAssembly/e4NodesSetup

    v40 v41  
    3838* 3 switches, 1 partitioned switch, or single cable out.
    3939
     40
     41Setup 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
     48auto lo
     49iface lo inet loopback
     50
     51# The CM network interface
     52auto eth1
     53iface 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
     59auto eth3
     60iface 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
     66auto eth0
     67iface 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
     73auto eth2
     74iface eth2 inet dhcp
     75}}}
    4076
    4177====== One unmanaged switch per subnet ======