close Warning: Can't synchronize with repository "(default)" (/common/SVN/wimax does not appear to be a Subversion repository.). Look in the Trac log for more information.

Changes between Version 14 and Version 15 of dSite/b0OS


Ignore:
Timestamp:
Aug 19, 2015, 6:06:23 PM (9 years ago)
Author:
seskar
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • dSite/b0OS

    v14 v15  
    6363 * Outside - External access for the console. Mostly for remote control and package updates.
    6464
    65 To establish the proper address spaces, we put appropriate rules in the ''/etc/network/interfaces'' file. We assume the following mapping of interfaces to subnets:
     65The addresses for GENI networks have to confirm to the [wiki:/aaOperations#IPaddressassignment global address assignment].
     66
     67To establish access to proper address spaces, we put appropriate rules in the ''/etc/network/interfaces'' file. We assume the following mapping of interfaces to subnets:
     68
     69==== Single Basestation Site (all services on the console) ====
     70
     71In this confgiuration, the console needs access to all 6 subnets and needs at least one interface to be configured as a trunk with multiple VLANs. In this example configuration file, VLAN 4004 is used for local Data subnet, VLAN 4002 is used for GENI Control and VLAN 4000 is used for GENI Data (note that this interface really doesn't need to have an IP address since it is used mainly for bridging outside world to the internal OVS/Click datapath ''switch'').
    6672
    6773{{{
     
    7682auto eth3
    7783iface eth3 inet static
     84      address 10.10.0.254
     85      netmask 255.255.255.0
     86      broadcast 10.10.0.255
     87
     88# The  Data network interface
     89auto eth0.4004
     90iface eth0.12 inet static
     91      address 10.20.0.254
     92      netmask 255.255.255.0
     93      broadcast 10.20.0.255
     94
     95# The GENI-Control network interface
     96# The address assignment is given in
     97# http://wimax.orbit-lab.org/wiki/aaOperations#IPaddressassignment
     98auto eth0.4002
     99iface eth0.4000 inet static
     100      address 10.3.0.254
     101      netmask 255.255.255.0
     102      broadcast 10.3.0.255
     103
     104# The GENI-Data network interface
     105# The address assignment is given in
     106# http://wimax.orbit-lab.org/wiki/aaOperations#IPaddressassignment
     107auto eth0.4000
     108iface eth0.4000 inet manual
     109      pre-up ifconfig $IFACE up
     110      post-down ifconfig $IFACE down
     111
     112# The CM network interface
     113auto eth1
     114iface eth1 inet static
    78115      address 10.1.0.254
    79116      netmask 255.255.255.0
    80117      broadcast 10.1.0.255
    81118
     119# The primary outside access network interface
     120#(assumes NAT-ed and firewall-ed configuration)
     121auto eth2
     122iface eth2 inet static
     123      address 10.50.0.249
     124      netmask 255.255.0.0
     125      gateway 10.50.0.1
     126      dns-nameservers 8.8.8.8
     127}}}
     128
     129
     130==== Multiple Basestations Site (separate BS controller server) ====
     131{{{
     132# This file describes the network interfaces available on your system
     133# and how to activate them. For more information, see interfaces(5).
     134
     135# The loopback network interface
     136auto lo
     137iface lo inet loopback
     138
     139# The Control network interface
     140auto eth3
     141iface eth3 inet static
     142      address 10.10.0.254
     143      netmask 255.255.255.0
     144      broadcast 10.10.0.255
     145
    82146# The  Data network interface
    83147auto eth0
    84148iface eth0 inet static
    85       address 10.2.0.254
     149      address 10.20.0.254
    86150      netmask 255.255.255.0
    87       broadcast 10.2.0.255
     151      broadcast 10.20.0.255
    88152
    89153# The CM network interface
    90154auto eth1
    91155iface eth1 inet static
    92       address 10.3.0.254
     156      address 10.1.0.254
    93157      netmask 255.255.255.0
    94       broadcast 10.3.0.255
     158      broadcast 10.1.0.255
    95159
    96 # The primary network interface
     160# The primary outside access network interface
     161#(assumes NAT-ed and firewall-ed configuration)
    97162auto eth2
    98163iface eth2 inet static