Skip to content

Commit

Permalink
docs: update vmware OVA static IP configuration instructions for v1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mssalvatore committed Mar 26, 2021
1 parent e197008 commit 5d68bc6
Showing 1 changed file with 12 additions and 19 deletions.
31 changes: 12 additions & 19 deletions docs/content/setup/vmware.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,30 +32,23 @@ You can use the OVA in one of two modes:
prompt:

```sh
sudo nano /etc/netplan/50-cloud-init.yaml
sudo nano /etc/netplan/00-installer-config.yaml
```

Make the following changes:

```diff
# This file is generated from information provided by
# the datasource. Changes to it will not persist across an instance.
# To disable cloud-init's network configuration capabilities, write a file
# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:
# network: {config: disabled}
network:
version: 2
ethernets:
ens192:
- dhcp4: true
- dhcp-identifier: mac
+ dhcp4: false
+ addresses: [XXX.XXX.XXX.XXX/24]
+ gateway4: YYY.YYY.YYY.YYY
nameservers:
search: [gc.guardicore.com]
- addresses: [10.0.0.8, 10.0.0.5]
+ addresses: [1.1.1.1]
# This is the network config written by 'subiquity'
network:
ethernets:
ens160:
- dhcp4: true
+ dhcp4: false
+ addresses: [XXX.XXX.XXX.XXX/24]
+ gateway4: YYY.YYY.YYY.YYY
+ nameservers:
+ addresses: [1.1.1.1]
version: 2
```

Replace `XXX.XXX.XXX.XXX` with the desired IP addess of the VM. Replace
Expand Down

0 comments on commit 5d68bc6

Please sign in to comment.