Skip to content

Commit

Permalink
changed example config ips to reflect other parts of docs (#29)
Browse files Browse the repository at this point in the history
Co-authored-by: Evgeniy Kozhuhovskiy <[email protected]>
  • Loading branch information
ugenk and Evgeniy Kozhuhovskiy authored Jun 22, 2024
1 parent 7d1809e commit 2e65769
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions content/en/docs/talos/installation/pxe.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Start DHCP-Server:
```bash
sudo docker run --name=dnsmasq -d --cap-add=NET_ADMIN --net=host quay.io/poseidon/dnsmasq:v0.5.0-32-g4327d60-amd64 \
-d -q -p0 \
--dhcp-range=192.168.100.3,192.168.100.254 \
--dhcp-range=192.168.100.3,192.168.100.199 \
--dhcp-option=option:router,192.168.100.1 \
--enable-tftp \
--tftp-root=/var/lib/tftpboot \
Expand All @@ -39,15 +39,15 @@ sudo docker run --name=dnsmasq -d --cap-add=NET_ADMIN --net=host quay.io/poseido
--dhcp-match=set:efi64,option:client-arch,9 \
--dhcp-boot=tag:efi64,ipxe.efi \
--dhcp-userclass=set:ipxe,iPXE \
--dhcp-boot=tag:ipxe,http://192.168.100.250:8080/boot.ipxe \
--dhcp-boot=tag:ipxe,http://192.168.100.254:8080/boot.ipxe \
--log-queries \
--log-dhcp
```

Where:
- `192.168.100.3,192.168.100.254` range to allocate IPs from
- `192.168.100.3,192.168.100.199` range to allocate IPs from
- `192.168.100.1` your gateway
- `192.168.100.250` is address of your management server
- `192.168.100.254` is address of your management server

Check status of containers:

Expand Down

0 comments on commit 2e65769

Please sign in to comment.