This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### NOTE: This is strictly a breakdown of the snippets from the blog article, not an automated script. | |
### For automation, refer to the Ansible role | |
### Setup a Static IP | |
nano /etc/dhcpcd.conf | |
# Add these fields with your desired IP address | |
> interface eth0 | |
> static ip_address=10.10.10.1/24 | |
> static routers=10.10.10.0 |