Skip to content

[fpmsyncd]: Fix uA SID programming for link-local adjacencies#3958

Merged
prsunny merged 16 commits intosonic-net:masterfrom
cscarpitta:fix/fix_ua_link_local_fpmsyncd
Nov 24, 2025
Merged

[fpmsyncd]: Fix uA SID programming for link-local adjacencies#3958
prsunny merged 16 commits intosonic-net:masterfrom
cscarpitta:fix/fix_ua_link_local_fpmsyncd

Conversation

@cscarpitta
Copy link
Copy Markdown
Contributor

What I did

A uA SID performs a shift and cross-connect to a direct neighbor over a specific interface. It is defined by two parameters: an interface and a nexthop IPv6 address.

When FRR sends a uA SID to SONiC's fpmsyncd, it includes both of these parameters. However, fpmsyncd currently only extracts the nexthop IPv6 address. It then creates an entry in the SRV6_MY_SID_TABLE of ApplDB with action=ua and
adj=<nexthop_ipv6_address>. Subsequently, OrchAgent retrieves this entry and attempts to resolve the adjacency to program the SID in the ASIC.

The issue is that fpmsyncd extracts the nexthop IPv6 address from the message but does not extract the interface. In cases where the nexthop IPv6 address is a link-local address, the interface is essential for successful nexthop resolution. Without it, the resolution fails, and the SID is not programmed in the ASIC.

For example, the following syslog messages show OrchAgent failing to resolve a link-local nexthop because the interface is missing:

Oct 27 08:31:19.345821 1cdc490d8ce2 INFO #orchagent: :- doTask: table name : SRV6_MY_SID_TABLE
Oct 27 08:31:19.345895 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: MY SID STRING fcbb:bbbb:1:fe10::
Oct 27 08:31:19.345912 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: MySid: sid fcbb:bbbb:1:fe10::, action ua, vrf , block 32, node 16, func 16, arg 0 dt_vrf , adj fe80::e822:daff:feab:3ee9
Oct 27 08:31:19.345946 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: Adjacency fe80::e822:daff:feab:3ee9
Oct 27 08:31:19.345965 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: Nexthop for adjacency fe80::e822:daff:feab:3ee9 doesn't exist in DB yet
Oct 27 08:31:19.345983 1cdc490d8ce2 ERR #orchagent: :- doTaskMySidTable: Failed to create/update my_sid entry for sid 32:16:16:0:fcbb:bbbb:1:fe10::

This commit fixes the issue by extending fpmsyncd to:

  • Extract the interface from the Netlink message received from FRR.
  • Include the interface in the adj field of the SRV6_MY_SID_TABLE entry, using the format: adj=<ipv6_address>@<interface>.

This ensures that OrchAgent receives the necessary interface information along with the nexthop address, allowing it to
successfully resolve nexthops in all scenarios, including when the nexthop is a link-local IPv6 address.

Why I did it

OrchAgent is unable to resolve the nexthop for uA SIDs when the nexthop IPv6 address is a link-local address.

How I verified it

A new mock test for fpmsyncd has been introduced to validate the handling of SRv6 uA SIDs.

The test simulates a scenario where FRR sends a Netlink message to fpmsyncd containing a uA SID defined with both a nexthop IPv6 address and an associated interface.

It verifies that fpmsyncd correctly:

  1. Parses both the nexthop IPv6 address and the interface from the incoming message.
  2. Constructs an adjacency key in the expected format: <ipv6_address>@<interface>.
  3. Writes the correct entry to the SRV6_MY_SID_TABLE in ApplDB.

This test ensures that the logic for handling link-local nexthops is working as intended and protects against future regressions.

@mssonicbld
Copy link
Copy Markdown
Collaborator

/azp run

@azure-pipelines
Copy link
Copy Markdown

Azure Pipelines successfully started running 1 pipeline(s).

A uA SID performs a shift and cross-connect to a direct neighbor
over a specific interface. It is defined by two parameters: an
interface and a nexthop IPv6 address.

When FRR sends a uA SID to SONiC's fpmsyncd, it includes both of
these parameters. However, fpmsyncd currently only extracts the
nexthop IPv6 address. It then creates an entry in the
SRV6_MY_SID_TABLE of ApplDB with action=ua and
adj=<nexthop_ipv6_address>. Subsequently, OrchAgent retrieves this
entry and attempts to resolve the adjacency to program the SID in
the ASIC.

The issue is that fpmsyncd extracts the nexthop IPv6 address from
the message but does not extract the interface. In cases where the
nexthop IPv6 address is a link-local address, the interface is
essential for successful nexthop resolution. Without it, the
resolution fails, and the SID is not programmed in the ASIC.

For example, the following syslog messages show OrchAgent failing to
resolve a link-local nexthop because the interface is missing:

```
Oct 27 08:31:19.345821 1cdc490d8ce2 INFO #orchagent: :- doTask: table name : SRV6_MY_SID_TABLE
Oct 27 08:31:19.345895 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: MY SID STRING fcbb:bbbb:1:fe10::
Oct 27 08:31:19.345912 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: MySid: sid fcbb:bbbb:1:fe10::, action ua, vrf , block 32, node 16, func 16, arg 0 dt_vrf , adj fe80::e822:daff:feab:3ee9
Oct 27 08:31:19.345946 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: Adjacency fe80::e822:daff:feab:3ee9
Oct 27 08:31:19.345965 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: Nexthop for adjacency fe80::e822:daff:feab:3ee9 doesn't exist in DB yet
Oct 27 08:31:19.345983 1cdc490d8ce2 ERR #orchagent: :- doTaskMySidTable: Failed to create/update my_sid entry for sid 32:16:16:0:fcbb:bbbb:1:fe10::
```

This commit fixes the issue by extending fpmsyncd to:

- Extract the interface from the Netlink message received from FRR.
- Include the interface in the adj field of the SRV6_MY_SID_TABLE
  entry, using the format: adj=<ipv6_address>@<interface>.

This ensures that OrchAgent receives the necessary interface
information along with the nexthop address, allowing it to
successfully resolve nexthops in all scenarios, including when the
nexthop is a link-local IPv6 address.

Signed-off-by: Carmine Scarpitta <[email protected]>
This commit introduces a new mock test for fpmsyncd to validate the
handling of SRv6 uA SIDs.

The test simulates a scenario where FRR sends a Netlink message to
fpmsyncd containing a uA SID defined with both a nexthop IPv6
address and an associated interface.

It verifies that fpmsyncd correctly:
1. Parses both the nexthop IPv6 address and the interface from the
   incoming message.
2. Constructs an adjacency key in the expected format:
   <ipv6_address>@<interface>.
3. Writes the correct entry to the `SRV6_MY_SID_TABLE` in ApplDB.

This test ensures that the logic for handling link-local nexthops
is working as intended and protects against future regressions.

Signed-off-by: Carmine Scarpitta <[email protected]>
@cscarpitta cscarpitta force-pushed the fix/fix_ua_link_local_fpmsyncd branch from 325dd21 to cab1cbf Compare October 28, 2025 20:33
@mssonicbld
Copy link
Copy Markdown
Collaborator

/azp run

@azure-pipelines
Copy link
Copy Markdown

Azure Pipelines will not run the associated pipelines, because the pull request was updated after the run command was issued. Review the pull request again and issue a new run command.

@cscarpitta cscarpitta marked this pull request as ready for review October 28, 2025 20:33
@cscarpitta cscarpitta requested a review from prsunny as a code owner October 28, 2025 20:33
@cscarpitta
Copy link
Copy Markdown
Contributor Author

/azpw run

@mssonicbld
Copy link
Copy Markdown
Collaborator

/AzurePipelines run

@azure-pipelines
Copy link
Copy Markdown

Azure Pipelines successfully started running 1 pipeline(s).

Copy link
Copy Markdown

@ahsalam ahsalam left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@ahsalam
Copy link
Copy Markdown

ahsalam commented Oct 28, 2025

@BYGX-wcr

@mssonicbld
Copy link
Copy Markdown
Collaborator

/azp run

@azure-pipelines
Copy link
Copy Markdown

Azure Pipelines successfully started running 1 pipeline(s).

@mssonicbld
Copy link
Copy Markdown
Collaborator

/azp run

@azure-pipelines
Copy link
Copy Markdown

Azure Pipelines successfully started running 1 pipeline(s).

@mssonicbld
Copy link
Copy Markdown
Collaborator

/azp run

@azure-pipelines
Copy link
Copy Markdown

Azure Pipelines successfully started running 1 pipeline(s).

@mssonicbld
Copy link
Copy Markdown
Collaborator

/azp run

@azure-pipelines
Copy link
Copy Markdown

Azure Pipelines successfully started running 1 pipeline(s).

@mssonicbld
Copy link
Copy Markdown
Collaborator

/azp run

@azure-pipelines
Copy link
Copy Markdown

Azure Pipelines successfully started running 1 pipeline(s).

@mssonicbld
Copy link
Copy Markdown
Collaborator

/azp run

@azure-pipelines
Copy link
Copy Markdown

Azure Pipelines successfully started running 1 pipeline(s).

@mssonicbld
Copy link
Copy Markdown
Collaborator

/azp run

@azure-pipelines
Copy link
Copy Markdown

Azure Pipelines successfully started running 1 pipeline(s).

Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR fixes uA SID programming for link-local adjacencies by enabling fpmsyncd to extract and forward interface information from FRR to OrchAgent. Previously, when a uA SID was configured with a link-local nexthop, fpmsyncd only extracted the IPv6 address but not the associated interface, causing nexthop resolution to fail in OrchAgent.

Key Changes:

  • Adds interface extraction from Netlink messages for SRv6 uA behaviors
  • Formats adjacencies with interface using the pattern <ipv6_address>@<interface> when an interface is provided
  • Includes comprehensive test coverage for the new functionality

Reviewed changes

Copilot reviewed 5 out of 5 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
tests/mock_tests/fpmsyncd/ut_helpers_fpmsyncd.h Adds SRV6_LOCALSID_IFNAME enum constant and updates create_srv6_mysid_nlmsg() signature to include interface parameter
tests/mock_tests/fpmsyncd/ut_helpers_fpmsyncd.cpp Implements interface handling in mock Netlink message creation for UA and END_X actions
tests/mock_tests/fpmsyncd/receive_srv6_mysids_ut.cpp Adds new test case validating uA behavior with interface, updates existing test calls for new function signature
fpmsyncd/routesync.h Updates parseSrv6MySid() signature to include interface output parameter
fpmsyncd/routesync.cpp Implements interface extraction from Netlink messages, formats adjacency with interface suffix when present, adds validation for uA adjacency, updates logging

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Copy link
Copy Markdown
Contributor

@BYGX-wcr BYGX-wcr left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@mssonicbld
Copy link
Copy Markdown
Collaborator

/azp run

@azure-pipelines
Copy link
Copy Markdown

Azure Pipelines successfully started running 1 pipeline(s).

@mssonicbld
Copy link
Copy Markdown
Collaborator

/azp run

@azure-pipelines
Copy link
Copy Markdown

Azure Pipelines successfully started running 1 pipeline(s).

@mssonicbld
Copy link
Copy Markdown
Collaborator

/azp run

@azure-pipelines
Copy link
Copy Markdown

Azure Pipelines successfully started running 1 pipeline(s).


/* Create a Netlink object containing an SRv6 My SID with invalid SID value prefix length */
nl_obj = create_srv6_mysid_nlmsg(RTM_NEWSRV6LOCALSID, &_mysid, 32, 16, 16, 0, SRV6_LOCALSID_ACTION_END, NULL, NULL, 10, 200, AF_INET6);
nl_obj = create_srv6_mysid_nlmsg(RTM_NEWSRV6LOCALSID, &_mysid, 32, 16, 16, 0, SRV6_LOCALSID_ACTION_END, NULL, NULL, NULL, 10, 200, AF_INET6);
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

How can the prefixlen be 200? I think this is also a legacy bug. Same as the other two places below.

@prsunny
Copy link
Copy Markdown
Collaborator

prsunny commented Nov 24, 2025

@dgsudharsan , @abdosi , please review/signoff

@prsunny
Copy link
Copy Markdown
Collaborator

prsunny commented Nov 24, 2025

Merging since i see Changrong approved

@prsunny prsunny merged commit 7d540cb into sonic-net:master Nov 24, 2025
15 checks passed
kalash-nexthop pushed a commit to kalash-nexthop/sonic-swss that referenced this pull request Dec 16, 2025
…net#3958)

* [fpmsyncd]: Fix uA SID programming for link-local adjacencies

A uA SID performs a shift and cross-connect to a direct neighbor
over a specific interface. It is defined by two parameters: an
interface and a nexthop IPv6 address.

When FRR sends a uA SID to SONiC's fpmsyncd, it includes both of
these parameters. However, fpmsyncd currently only extracts the
nexthop IPv6 address. It then creates an entry in the
SRV6_MY_SID_TABLE of ApplDB with action=ua and
adj=<nexthop_ipv6_address>. Subsequently, OrchAgent retrieves this
entry and attempts to resolve the adjacency to program the SID in
the ASIC.

The issue is that fpmsyncd extracts the nexthop IPv6 address from
the message but does not extract the interface. In cases where the
nexthop IPv6 address is a link-local address, the interface is
essential for successful nexthop resolution. Without it, the
resolution fails, and the SID is not programmed in the ASIC.

For example, the following syslog messages show OrchAgent failing to
resolve a link-local nexthop because the interface is missing:

```
Oct 27 08:31:19.345821 1cdc490d8ce2 INFO #orchagent: :- doTask: table name : SRV6_MY_SID_TABLE
Oct 27 08:31:19.345895 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: MY SID STRING fcbb:bbbb:1:fe10::
Oct 27 08:31:19.345912 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: MySid: sid fcbb:bbbb:1:fe10::, action ua, vrf , block 32, node 16, func 16, arg 0 dt_vrf , adj fe80::e822:daff:feab:3ee9
Oct 27 08:31:19.345946 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: Adjacency fe80::e822:daff:feab:3ee9
Oct 27 08:31:19.345965 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: Nexthop for adjacency fe80::e822:daff:feab:3ee9 doesn't exist in DB yet
Oct 27 08:31:19.345983 1cdc490d8ce2 ERR #orchagent: :- doTaskMySidTable: Failed to create/update my_sid entry for sid 32:16:16:0:fcbb:bbbb:1:fe10::
```

Signed-off-by: Kalash Nainwal <[email protected]>
Pterosaur pushed a commit to Janetxxx/sonic-swss that referenced this pull request Jan 6, 2026
…net#3958)

* [fpmsyncd]: Fix uA SID programming for link-local adjacencies

A uA SID performs a shift and cross-connect to a direct neighbor
over a specific interface. It is defined by two parameters: an
interface and a nexthop IPv6 address.

When FRR sends a uA SID to SONiC's fpmsyncd, it includes both of
these parameters. However, fpmsyncd currently only extracts the
nexthop IPv6 address. It then creates an entry in the
SRV6_MY_SID_TABLE of ApplDB with action=ua and
adj=<nexthop_ipv6_address>. Subsequently, OrchAgent retrieves this
entry and attempts to resolve the adjacency to program the SID in
the ASIC.

The issue is that fpmsyncd extracts the nexthop IPv6 address from
the message but does not extract the interface. In cases where the
nexthop IPv6 address is a link-local address, the interface is
essential for successful nexthop resolution. Without it, the
resolution fails, and the SID is not programmed in the ASIC.

For example, the following syslog messages show OrchAgent failing to
resolve a link-local nexthop because the interface is missing:

```
Oct 27 08:31:19.345821 1cdc490d8ce2 INFO #orchagent: :- doTask: table name : SRV6_MY_SID_TABLE
Oct 27 08:31:19.345895 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: MY SID STRING fcbb:bbbb:1:fe10::
Oct 27 08:31:19.345912 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: MySid: sid fcbb:bbbb:1:fe10::, action ua, vrf , block 32, node 16, func 16, arg 0 dt_vrf , adj fe80::e822:daff:feab:3ee9
Oct 27 08:31:19.345946 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: Adjacency fe80::e822:daff:feab:3ee9
Oct 27 08:31:19.345965 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: Nexthop for adjacency fe80::e822:daff:feab:3ee9 doesn't exist in DB yet
Oct 27 08:31:19.345983 1cdc490d8ce2 ERR #orchagent: :- doTaskMySidTable: Failed to create/update my_sid entry for sid 32:16:16:0:fcbb:bbbb:1:fe10::
```
yehjunying pushed a commit to yehjunying/sonic-swss that referenced this pull request Jan 16, 2026
…net#3958)

* [fpmsyncd]: Fix uA SID programming for link-local adjacencies

A uA SID performs a shift and cross-connect to a direct neighbor
over a specific interface. It is defined by two parameters: an
interface and a nexthop IPv6 address.

When FRR sends a uA SID to SONiC's fpmsyncd, it includes both of
these parameters. However, fpmsyncd currently only extracts the
nexthop IPv6 address. It then creates an entry in the
SRV6_MY_SID_TABLE of ApplDB with action=ua and
adj=<nexthop_ipv6_address>. Subsequently, OrchAgent retrieves this
entry and attempts to resolve the adjacency to program the SID in
the ASIC.

The issue is that fpmsyncd extracts the nexthop IPv6 address from
the message but does not extract the interface. In cases where the
nexthop IPv6 address is a link-local address, the interface is
essential for successful nexthop resolution. Without it, the
resolution fails, and the SID is not programmed in the ASIC.

For example, the following syslog messages show OrchAgent failing to
resolve a link-local nexthop because the interface is missing:

```
Oct 27 08:31:19.345821 1cdc490d8ce2 INFO #orchagent: :- doTask: table name : SRV6_MY_SID_TABLE
Oct 27 08:31:19.345895 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: MY SID STRING fcbb:bbbb:1:fe10::
Oct 27 08:31:19.345912 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: MySid: sid fcbb:bbbb:1:fe10::, action ua, vrf , block 32, node 16, func 16, arg 0 dt_vrf , adj fe80::e822:daff:feab:3ee9
Oct 27 08:31:19.345946 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: Adjacency fe80::e822:daff:feab:3ee9
Oct 27 08:31:19.345965 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: Nexthop for adjacency fe80::e822:daff:feab:3ee9 doesn't exist in DB yet
Oct 27 08:31:19.345983 1cdc490d8ce2 ERR #orchagent: :- doTaskMySidTable: Failed to create/update my_sid entry for sid 32:16:16:0:fcbb:bbbb:1:fe10::
```
theasianpianist pushed a commit to theasianpianist/sonic-swss that referenced this pull request Feb 4, 2026
…net#3958)

* [fpmsyncd]: Fix uA SID programming for link-local adjacencies

A uA SID performs a shift and cross-connect to a direct neighbor
over a specific interface. It is defined by two parameters: an
interface and a nexthop IPv6 address.

When FRR sends a uA SID to SONiC's fpmsyncd, it includes both of
these parameters. However, fpmsyncd currently only extracts the
nexthop IPv6 address. It then creates an entry in the
SRV6_MY_SID_TABLE of ApplDB with action=ua and
adj=<nexthop_ipv6_address>. Subsequently, OrchAgent retrieves this
entry and attempts to resolve the adjacency to program the SID in
the ASIC.

The issue is that fpmsyncd extracts the nexthop IPv6 address from
the message but does not extract the interface. In cases where the
nexthop IPv6 address is a link-local address, the interface is
essential for successful nexthop resolution. Without it, the
resolution fails, and the SID is not programmed in the ASIC.

For example, the following syslog messages show OrchAgent failing to
resolve a link-local nexthop because the interface is missing:

```
Oct 27 08:31:19.345821 1cdc490d8ce2 INFO #orchagent: :- doTask: table name : SRV6_MY_SID_TABLE
Oct 27 08:31:19.345895 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: MY SID STRING fcbb:bbbb:1:fe10::
Oct 27 08:31:19.345912 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: MySid: sid fcbb:bbbb:1:fe10::, action ua, vrf , block 32, node 16, func 16, arg 0 dt_vrf , adj fe80::e822:daff:feab:3ee9
Oct 27 08:31:19.345946 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: Adjacency fe80::e822:daff:feab:3ee9
Oct 27 08:31:19.345965 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: Nexthop for adjacency fe80::e822:daff:feab:3ee9 doesn't exist in DB yet
Oct 27 08:31:19.345983 1cdc490d8ce2 ERR #orchagent: :- doTaskMySidTable: Failed to create/update my_sid entry for sid 32:16:16:0:fcbb:bbbb:1:fe10::
```

Signed-off-by: Lawrence Lee <[email protected]>
baorliu pushed a commit to baorliu/sonic-swss that referenced this pull request Feb 23, 2026
…net#3958)

* [fpmsyncd]: Fix uA SID programming for link-local adjacencies

A uA SID performs a shift and cross-connect to a direct neighbor
over a specific interface. It is defined by two parameters: an
interface and a nexthop IPv6 address.

When FRR sends a uA SID to SONiC's fpmsyncd, it includes both of
these parameters. However, fpmsyncd currently only extracts the
nexthop IPv6 address. It then creates an entry in the
SRV6_MY_SID_TABLE of ApplDB with action=ua and
adj=<nexthop_ipv6_address>. Subsequently, OrchAgent retrieves this
entry and attempts to resolve the adjacency to program the SID in
the ASIC.

The issue is that fpmsyncd extracts the nexthop IPv6 address from
the message but does not extract the interface. In cases where the
nexthop IPv6 address is a link-local address, the interface is
essential for successful nexthop resolution. Without it, the
resolution fails, and the SID is not programmed in the ASIC.

For example, the following syslog messages show OrchAgent failing to
resolve a link-local nexthop because the interface is missing:

```
Oct 27 08:31:19.345821 1cdc490d8ce2 INFO #orchagent: :- doTask: table name : SRV6_MY_SID_TABLE
Oct 27 08:31:19.345895 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: MY SID STRING fcbb:bbbb:1:fe10::
Oct 27 08:31:19.345912 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: MySid: sid fcbb:bbbb:1:fe10::, action ua, vrf , block 32, node 16, func 16, arg 0 dt_vrf , adj fe80::e822:daff:feab:3ee9
Oct 27 08:31:19.345946 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: Adjacency fe80::e822:daff:feab:3ee9
Oct 27 08:31:19.345965 1cdc490d8ce2 INFO #orchagent: :- createUpdateMysidEntry: Nexthop for adjacency fe80::e822:daff:feab:3ee9 doesn't exist in DB yet
Oct 27 08:31:19.345983 1cdc490d8ce2 ERR #orchagent: :- doTaskMySidTable: Failed to create/update my_sid entry for sid 32:16:16:0:fcbb:bbbb:1:fe10::
```

Signed-off-by: Baorong Liu <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants