Changes between Version 4 and Version 5 of PluggingIn


Ignore:
Timestamp:
Mar 20, 2012 1:43:34 PM (12 years ago)
Author:
mikeryan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PluggingIn

    v4 v5  
    99Networking configuration can be found in the following places:
    1010 * TopDL: IP address, netmask, MAC address, VDE switch/port
    11  * {{{/var/benito/config/routes/$HOSTNAME}}}: routes
     11 * {{{/var/benito/config/route/$HOSTNAME}}}: routes
    1212
    1313Each interface on the experimental network will be assigned a VDE switch and port number. If your platform supports VDE natively, then you're done!
     
    4040 * {{{benito:vde_port}}} (switch port)
    4141
     42=== Routes ===
     43
     44Route information is in {{{/var/benito/config/route/$HOSTNAME}}}. Benito provides a script for automatically setting up routes:
     45
     46{{{
     47/var/benito/launch/routes.py /var/benito/config [$HOSTNAME]
     48}}}
     49
     50The hostname parameter is optional and will be auto-detected if it is not provided.
     51
    4252=== Control Net ===
    4353
    44 TODO: info about requesting controlnet interfaces; bridging
     54FOREWORD: Control net bridging is currently a hack. It makes a lot of assumptions about the underlying platform (i.e., qemu) and many aspects of this are baked into the code. Best of luck..
     55
     56You'll probably want to bridge onto the control net if that makes sense for your platform. If you see yourself wanting to SSH to a VM running on your platform, this is for you.
     57
     58Due to DETER's controlnet separation, you must explicitly request IPs/MACs from boss. The setup script {{{setup/15_control_net.py}}} handles these requisitions. You'll need to hack this file a bit. Sorry!
     59
     60On pnodes which host vnodes, the controlnet interface is bridged with TAP controlnet interfaces of its children. The bridge is brought up by {{{launch/qemu/control_bridge.py}}}. This script is currently tailored to QEMU. To support new VM infrastructure this will need to be hacked on.
    4561
    4662== File Systems ==