Commit d8f5b8ff authored by James Ramsay's avatar James Ramsay

Prefer 255.255.255.255 to 1

parent 5151804a
......@@ -157,7 +157,7 @@ will not be able to perform all necessary configuration steps. Refer to
```bash
# Primary interface IP address
ip route get 1 | awk '{print $NF; exit}'
ip route get 255.255.255.255 | awk '{print $NF; exit}'
```
Depending on your network configuration, the primary and secondary may
......@@ -170,7 +170,7 @@ will not be able to perform all necessary configuration steps. Refer to
```bash
# Secondary interface IP address
ip route get 1 | awk '{print $NF; exit}'
ip route get 255.255.255.255 | awk '{print $NF; exit}'
# Secondary public IP address
curl ipinfo.io/ip
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment