Created
October 24, 2016 04:43
-
-
Save otwm/2af5b344ed0d65e3ecefa282d72b610e to your computer and use it in GitHub Desktop.
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
ifconfig <interface name> <ip> netmask <netmask> broadcast <broadcast> | |
sudo vi /etc/network/interfaces | |
auto enp5s0 | |
iface enp5s0 inet static | |
address 192.168.0.104 | |
netmask 255.255.255.0 | |
broadcast 192.168.0.255 | |
gateway 192.168.0.1 | |
network 192.168.0.0 | |
sudo shutdown -r now |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment