Last active
December 17, 2015 19:09
-
-
Save scottslowe/5658227 to your computer and use it in GitHub Desktop.
This snippet of configuration from /etc/network/interfaces will configure a VLAN interface on an Ubuntu system.
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
auto eth0.20 | |
iface eth0.20 inet static | |
vlan-raw-device eth0 | |
address 192.168.20.200 | |
netmask 255.255.255.0 | |
network 192.168.20.0 | |
broadcast 192.168.20.255 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment