Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Network Subnet Support #46

Open
iainbrighton opened this issue Jan 12, 2016 · 1 comment
Open

Add Network Subnet Support #46

iainbrighton opened this issue Jan 12, 2016 · 1 comment

Comments

@iainbrighton
Copy link
Contributor

With the impending NAT configuration and to be able to support AWS and Azure (in the future) we will need to start attaching subnet information to the virtual switch definitions. This will be required to add NAT translation address and add routing information in AWS/Azure.

Something like this is what I think is needed:

@{
    AllNodes = @()
    NonNodeData = @{
        VirtualEngineLab = @{
            Network = @(
                @{ Name = 'Private'; Type = 'Internal'; Subnet = '192.168.10.0/24'; }
                @{ Name = 'Internet'; Type = 'NAT'; Subnet = '192.168.11.0/24'; }
            )
        }
    }
}

Unfortunately, I think we will have to make this mandatory for all network/switch defnitions?

@iainbrighton
Copy link
Contributor Author

@janegilring This might have a bearing on thoughts about how we implement #126

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant