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 PL underlay_sip field for DASH_ROUTE_TABLE #25

Merged
merged 1 commit into from
Aug 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion proto/route.proto
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ message ServiceTunnel {

message Route {
route_type.RoutingType action_type = 1 [deprecated = true]; // renamed as routing_type
oneof Action {
oneof RoutingTypeData {
// destination vnet name if routing_type is vnet,, a vnet other than eni's vnet means vnet peering
string vnet = 2;
// destination vnet name if routing_type is vnet_direct,, a vnet other than eni's vnet means vnet peering
Expand All @@ -36,6 +36,8 @@ message Route {
string appliance = 4;
// service tunnel if routing_type is {service_tunnel}
route.ServiceTunnel service_tunnel = 5;
// if routing_type is {privatelink}, overrides pl_underlay_sip from ENI table if given
types.IpAddress underlay_sip = 11;
}
// Metering policy lookup enable (optional), default = false
optional bool metering_policy_en = 6 [deprecated = true];
Expand Down