Sandbox: Difference between revisions
No edit summary |
No edit summary |
||
Line 15: | Line 15: | ||
# next |
# next |
||
# last |
# last |
||
== Proposed Changes == |
|||
{{Comment|[[User:Davehill|DaveHill (talk)]] ([[User talk:Davehill|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. |
{{Comment|[[User:Davehill|DaveHill (talk)]] ([[User talk:Davehill|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. |
||
Revision as of 21:53, 6 October 2018
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
{{project=Test Name
Dslutz 12:48, 1 October 2013 (UTC): Test comment
Dslutz 12:48, 1 October 2013 (UTC): Test it out
16:40, 1 October 2013 (UTC)~:foo
Harryh 16:47, 1 October 2013 (UTC):bar
}}
- Start
- next
- last
Proposed Changes
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
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).