forked from uncloud/uncloud
26 lines
513 B
Text
26 lines
513 B
Text
id=100
|
|
rawdev=eth0
|
|
|
|
# create vxlan
|
|
ip -6 link add vxlan${id} type vxlan \
|
|
id ${id} \
|
|
dstport 4789 \
|
|
group ff05::${id} \
|
|
dev ${rawdev} \
|
|
ttl 5
|
|
|
|
ip link set vxlan${id} up
|
|
|
|
# create bridge
|
|
ip link set vxlan${id} up
|
|
ip link set br${id} up
|
|
|
|
# Add vxlan into bridge
|
|
ip link set vxlan${id} master br${id}
|
|
|
|
|
|
# useradd -m uncloud
|
|
# [18:05] tablett.place10:~# id uncloud
|
|
# uid=1000(uncloud) gid=1000(uncloud) groups=1000(uncloud),34(kvm),36(qemu)
|
|
# apk add qemu-system-x86_64
|
|
# also needs group netdev
|