Created
December 4, 2012 19:07
-
-
Save Gronghon/4207584 to your computer and use it in GitHub Desktop.
Config static ip on debian 6
This file contains 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
vim /etc/network/interfaces | |
auto eth0 | |
iface eth0 inet static | |
address 192.168.0.200 | |
gateway 192.168.0.1 | |
netmask 255.255.255.0 | |
broatcast 192.168.0.255 | |
network 192.168.0.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment