blob: 25f313e4a4b758b57a60f4c38c6bb680246cf20a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
metadata:
format: Lava-Test Test Definition 1.0
name: veth
description: "Virtual network card installation"
run:
steps:
- ip link add veth0 type veth peer name veth1
- sleep 2
- ip addr add 10.1.0.1/24 dev veth0
- ip addr add 10.1.0.2/24 dev veth1
- echo 'DefaultAutoConnectTechnologies=""' >> /etc/connman/main.conf
- systemctl restart connman.service
|