Created
September 21, 2021 04:32
-
-
Save dapize/65b928cc6c5f2023abd2d61f0ec5e620 to your computer and use it in GitHub Desktop.
my Interfaces
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
| # This file describes the network interfaces available on your system | |
| # and how to activate them. For more information, see interfaces(5). | |
| source /etc/network/interfaces.d/* | |
| # The loopback network interface | |
| auto lo | |
| iface lo inet loopback | |
| # my own configuration, PEZETA | |
| auto ens33 | |
| iface ens33 inet static | |
| address 192.168.1.22 | |
| netmask 255.255.255.0 | |
| gateway 192.168.1.1 | |
| dns-nameservers 200.48.255.130 200.48.225.146 | |
| # The primary network interface | |
| # allow-hotplug ens33 | |
| # iface ens33 inet dhcp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment