Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
Timur Aitov committed Oct 23, 2023
1 parent c250cf1 commit 6cb1164
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ one corporation may be contributing. The revision history in source control give

The project was started by Timur Aitov <[email protected]>, first commit was made on 2018-05-29.

It's hard to imagine YANET project without these people even if they didn't contribute to the code much:
Alexey Esin <[email protected]>
Alexander Leonov <[email protected]>
It's hard to imagine YANET project without this person:
Dmitry Ershov <[email protected]>

List of most significant contributors:
Alexey Esin <[email protected]>
Alexander Leonov <[email protected]>
Aleksei Belov <[email protected]>
Boris Litvinenko <[email protected]>
Andrey Elsukov <[email protected]>
Expand All @@ -21,6 +21,7 @@ List of most significant contributors:
Eugene Mamchits <[email protected]>
Kirill Smorodinnikov <[email protected]>
Sergey Kacheev <[email protected]>
Stepan Balayan <[email protected]>
Aleksandr Kostrikov <[email protected]>
Vladislav Krivolapov <[email protected]>
Vyacheslav Saushev <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ docker pull yanetplatform/builder

Add alias for run commands on docker:
```
alias yanet-builder="docker run --rm -it -v /run/yanet:/run/yanet -v $PWD:/project yanetplatform/builder"
alias yanet-builder="docker run --rm -it -v /run/yanet:/run/yanet -v \$PWD:/project yanetplatform/builder"
```

Once setup `build_autotest` directory:
Expand Down
8 changes: 4 additions & 4 deletions demo/qemu/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ docker pull linkacloud/d2vm:v0.2.0-1934915

Add alias for run commands on docker:
```
alias d2vm="docker run --rm -i -t --privileged -v /var/run/docker.sock:/var/run/docker.sock -v $PWD:/build -w /build linkacloud/d2vm:v0.2.0-1934915"
alias d2vm="docker run --rm -i -t --privileged -v /var/run/docker.sock:/var/run/docker.sock -v \$PWD:/build -w /build linkacloud/d2vm:v0.2.0-1934915"
```

Make build directory:
Expand Down Expand Up @@ -72,23 +72,23 @@ d2vm build -p root -f demo/qemu/yanet/Dockerfile -o build_vm/yanet.qcow2 --force
## Run virtual machines
Run `Host A` with one interface:
```
sudo qemu-system-x86_64 -name "Host A" \
sudo qemu-system-x86_64 -name "Host A" -serial mon:stdio -display none \
-enable-kvm -cpu host -m 256 \
-drive file=build_vm/host_a.qcow2,format=qcow2,if=virtio \
-nic tap,ifname=tap_host_a,model=virtio-net-pci,mac=00:00:00:00:11:02
```
Run `Host B` with one interface:
```
sudo qemu-system-x86_64 -name "Host B" \
sudo qemu-system-x86_64 -name "Host B" -serial mon:stdio -display none \
-enable-kvm -cpu host -m 256 \
-drive file=build_vm/host_b.qcow2,format=qcow2,if=virtio \
-nic tap,ifname=tap_host_b,model=virtio-net-pci,mac=00:00:00:00:22:02
```
Run `YANET` with two interfaces with multiqueue enabled:
```
sudo qemu-system-x86_64 -name "YANET" \
sudo qemu-system-x86_64 -name "YANET" -serial mon:stdio -display none \
-enable-kvm -cpu host -m 4096 -smp 4 \
-drive file=build_vm/yanet.qcow2,format=qcow2,if=virtio \
-device virtio-net-pci,netdev=dev0,mac=00:00:00:00:33:01,id=net0,vectors=17,mq=on -netdev tap,ifname=tap_yanet_ki0,id=dev0,vhost=on,queues=8 \
Expand Down

0 comments on commit 6cb1164

Please sign in to comment.