惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
Last Week in AI
Last Week in AI
Blog — PlanetScale
Blog — PlanetScale
V
Visual Studio Blog
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
博客园 - Franky
IT之家
IT之家
博客园 - 叶小钗
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
雷峰网
雷峰网
腾讯CDC
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
人人都是产品经理
人人都是产品经理
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
博客园_首页
G
Google Developers Blog

Kian Bradley’s Blog

Resurrecting a dead torrent tracker and finding 3 million peers Resurrecting a dead torrent tracker and finding 3 million peers Supporting modern https on Windows XP Supporting modern https on Windows XP Running rumprun for Xen in Ubuntu 16.04 Running rumprun for Xen in Ubuntu 16.04 Setting up NAT networking in Xen using virsh Setting up Xen in Ubuntu 16.04 Setting up Xen in Ubuntu 16.04
Setting up NAT networking in Xen using virsh
Kian Bradley · 2016-08-26 · via Kian Bradley’s Blog

There are two main ways to set up networking in Xen. You can use a bridged network, or you can set up NAT. A bridged network means that the guest domains will talk to the router directly to get an IP address. NAT networking creates a subnet local to your machine, and the guest domains will talk to dom0 to get an IP address.

Neither one is better than the other, really. Bridged networking is slightly simpler if you want something that just works. NAT-ing will create an internal network that allows for simpler local (domain-to-domain) communication and greater control over external communication. The downside is that you’ll need to set up a static IP per guest and set iptables rules to allow for external communication.

Installing virsh

Install libvirt:

sudo apt-get install libvirt-bin libvirt0

Check that it’s been installed, and that the default network is in place:

virsh net-list --all

Set static IP, associate each IP with a mac address

Edit the default virsh config:

sudo virsh net-edit default

Under the <dhcp> tag, add a listing for each guest. The name can be whatever you want it to be.

For the MAC address, the first 3 bytes should not be changed, this is the OUI assigned to the Xen project. The last 3 can be whatever you like.

This is my DHCP configuration, with three guest domains configured:

<dhcp>
	<range start='192.168.122.128' end='192.168.122.254'/>
	<host mac='00:16:3e:00:00:02' name='osv' ip='192.168.122.2'/>
	<host mac='00:16:3e:00:00:03' name='ubuntu' ip='192.168.122.3'/>
	<host mac='00:16:3e:00:00:04' name='rumprun' ip='192.168.122.4'/>
</dhcp>

Setting up a guest domain with NAT

standard xen cfg

In your Xen guest configuration file, add the following virtual interface, where mac corrosponds with the virsh configuration:

vif = ['mac=00:16:3e:00:00:03,bridge=virbr0']

rumprun unikernel

The rumprun unikernel is launched with the rumprun script. Here “newnet” is used internally by the script and can be set to whatever you like. rumprun_image.bin represents the baked rumprun binary you are running:

rumprun -S xen -id -I newnet,xenif,'bridge=virbr0,mac=00:16:3e:00:00:04' -W newnet,inet,dhcp rumprun_image.bin0