Changes between Version 25 and Version 26 of Installation/Build


Ignore:
Timestamp:
Feb 11, 2013 6:24:41 PM (11 years ago)
Author:
jhickey
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Installation/Build

    v25 v26  
    6464== Creating a site definitions file ==
    6565
    66 When you have external network access working for your Users machine, you should be able to SSH in now.  In ~/testbed there is a file called defs-example-deter.  Change this file to reflect your site and save it as defs-<yoursite>.  We have slimmed down the defs file so this should be self explanatory.
     66When you have external network access working for your Users machine, you should be able to SSH in now.  In ~/testbed there is a file called defs-example-deter.  Change this file to reflect your site and save it as defs-<yoursite>.  We have slimmed down the defs file so this should be self explanatory.  Here is what defs-example-deter currently contains:
     67
     68{{{
     69#
     70# This is an example definitions file for configure.
     71#
     72# Use the --with-TBDEFS=filename to specify your own file.
     73# If you add a variable, be sure to go and update configure.in.
     74#
     75
     76# The subdomain name of this installation
     77OURDOMAIN=example.deterlab.net
     78THISHOMEBASE=Example.Deterlab.Net
     79SITENAME="USC/ISI"
     80SITECOPYRIGHT="University of Southern California Information Sciences Institute (USC/ISI)"
     81SITEDATES=2013
     82
     83#
     84# SSL Setup
     85#
     86SSLCERT_COUNTRY="US"
     87SSLCERT_STATE="California"
     88SSLCERT_LOCALITY="Los Angeles"
     89SSLCERT_ORGNAME="DETER EXAMPLE Testbed"
     90
     91#
     92# Domain, host names, and external IP addresses
     93#
     94# The network that boss and users sit on
     95EXTERNAL_TESTBED_NETWORK=A.B.C.0
     96EXTERNAL_TESTBED_NETMASK=255.255.255.0
     97
     98# This should be boss.<yoursubdomain as defined in THISHOMEBASE>
     99EXTERNAL_BOSSNODE_IP=A.B.C.D
     100
     101# This should be users.<yoursubdomain as defined in THISHOMEBASE>
     102EXTERNAL_USERNODE_IP=A.B.C.D
     103
     104# Named forwarders, typically your upstream DNS servers.
     105NAMED_FORWARDERS="A.B.C.D W.X.Y.Z"
     106}}}
    67107
    68108== Building the testbed software on Users ==