Last active
December 11, 2015 06:09
-
-
Save theikkila/4557529 to your computer and use it in GitHub Desktop.
Adding virtual interface for installing Openstack Folsom for single node with only one NIC
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
# Create the virtual interface, it could be anything from br10 to eth1 | |
# Don't cry nerds it's suitable to use eth1 with QuickDeploy script 'cause otherwise you have to edit those scripts. Maybe in future the author of the script will add support for otherwise named NICs | |
brctl addbr eth1 | |
ifconfig eth1 10.0.0.1 netmask 255.255.255.0 | |
#then just run the script! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment