Sandbox

From Xen
Revision as of 21:53, 6 October 2018 by Davehill (talk | contribs)

Edit this page

This "sandbox" page is to allow you to carry out experiments. Please feel free to try your skills at formatting here. If you want to learn more about how to edit a wiki, please read this introduction.

To edit, click here or "edit" at the top of the page, make your changes in the dialog box, and click the "Save page" button when you are finished. Please refrain from adding material that is any way offensive, that is copyrighted, or that is at all libelous.


Content added here will not stay permanently; this page is cleared regularly.

Testing Area

Here is a headline, which describes something


{{project=Test Name Pictogram voting comment 15px.png Dslutz 12:48, 1 October 2013 (UTC): Test comment Pictogram vote 15px.png Dslutz 12:48, 1 October 2013 (UTC): Test it out Pictogram vote 15px.png 16:40, 1 October 2013 (UTC)~:foo Pictogram vote 15px.png Harryh 16:47, 1 October 2013 (UTC):bar }}


  1. Start
  2. next
  3. last

Proposed Changes

Pictogram voting comment 15px.png DaveHill (talk) (talk) 21:50, 6 October 2018 (UTC)Checking whether/how html formatting renders because I want to correct an error in the section below on setting up xenbridge in the Xen Project Beginners Guide.

This file is very simple. Each stanza represents a single interface. Breaking it down “auto eth0” means that eth0 will be configured when ifup -a is run (which is run a boot time) what this means is that the interface will automatically be started/stopped for you. “iface eth0” then describes the interface itself, in this case it merely specifies that it should be configured by DHCP - we are going to assume that you have DHCP running on your network for this guide. If you are using static addressing you probably know how to set that up. We are going to edit this file so it resembles such:

    auto lo
    iface lo inet loopback

    auto eth0
    iface eth0 inet dhcp
    
    auto xenbr0
    iface xenbr0 inet dhcp
        bridge_ports eth0


Pictogram voting comment 15px.png DaveHill (talk) (talk) 21:50, 6 October 2018 (UTC):The eth0 lines in the file are

   auto eth0
   iface eth0 inet dhcp

but should be

   auto eth0
   iface eth0 inet manual

(as per the Important Note! here:https://wiki.xenproject.org/wiki/Network_Configuration_Examples_(Xen_4.1%2B) and my own experience).