-
Couldn't load subscription status.
- Fork 60
Support IPv6 VPC-private addresses for network interfaces #9269
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,6 +15,7 @@ use nexus_db_errors::ErrorHandler; | |
| use nexus_db_errors::public_error_from_diesel; | ||
| use nexus_db_lookup::LookupPath; | ||
| use nexus_db_model::IncompleteNetworkInterface; | ||
| use nexus_db_model::IpConfig; | ||
| use nexus_db_model::Probe; | ||
| use nexus_db_model::VpcSubnet; | ||
| use nexus_db_model::to_db_typed_uuid; | ||
|
|
@@ -294,7 +295,7 @@ impl super::DataStore { | |
| probe.name(), | ||
| ), | ||
| }, | ||
| None, //Request IP address assignment | ||
| IpConfig::auto_ipv4(), | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not for this PR but a general thought on this. I think what we'll want as a default is an There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, that sounds reasonable to me. There's no real reason to prevent VPC-private IPv6 addressing, since the address space is so huge. |
||
| None, //Request MAC address assignment | ||
| )?; | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.