Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc/tutorial: permanently disable all IP addresses on microbr0's parent #399

Merged
merged 1 commit into from
Sep 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions doc/tutorial/get_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,15 +209,25 @@ Complete the following steps on each VM (`micro1`, `micro2`, `micro3`, and `micr
```
1. Configure the network interface connected to `microbr0` to not accept any IP addresses (because MicroCloud requires a network interface that doesn't have an IP address assigned):

echo 0 > /proc/sys/net/ipv6/conf/enp6s0/accept_ra
cat << EOF > /etc/netplan/99-microcloud.yaml
# microbr0's parent interface should not have any IP address
network:
version: 2
ethernets:
enp6s0:
accept-ra: false
dhcp4: false
link-local: []
EOF
chmod 0600 /etc/netplan/99-microcloud.yaml

```{note}
`enp6s0` is the name that the VM assigns to the network interface that we previously added as `eth1`.
```

1. Bring the network interface up:

ip link set enp6s0 up
netplan apply

1. Install the required snaps:

Expand Down
Loading