Actions
Bug #11713
closedError when deleting IPv6 link-local routes
Start date:
03/21/2021
Due date:
% Done:
100%
Estimated time:
Plus Target Version:
Release Notes:
Default
Affected Version:
2.5.0
Affected Architecture:
All
Description
/system.php: The command '/sbin/route -q delete -host -inet6 2001:4860:4860::8844 'fe80::4e6d:58ff:fe4a:97d4'' returned exit code '1', the output was 'route: route has not been found'
/system.php: The command '/sbin/route -q delete -host -inet6 2001:4860:4860::8888 'fe80::4e6d:58ff:fe4a:97d4'' returned exit code '1', the output was 'route: route has not been found'
Both commands are in the system logs, but I haven't changed any DNS server entries.
My current Base System is 2.5.1.r.20210321.0300
Updated by yon Liu over 3 years ago
For similar questions
Updated by Viktor Gurov over 3 years ago
route_add_or_change() doesn't add linklocal scope part to the `route` command:
/sbin/route add -host -inet6 fc00::777:7 fe80::ec5:49ff:fed7:8c01
Must be:
/sbin/route add -host -inet6 fc00::777:7 fe80::ec5:49ff:fed7:8c01%vtnet1
fix:
https://gitlab.netgate.com/pfSense/pfSense/-/merge_requests/200
Updated by Renato Botelho over 3 years ago
- Status changed from New to Feedback
- Assignee set to Viktor Gurov
- Target version set to 2.5.1
- % Done changed from 0 to 100
- Affected Version set to 2.5.0
- Affected Architecture All added
PR merged and cherry-picked to 2.5.1
Updated by Jim Pingle over 3 years ago
- Subject changed from Route not deleted to Error when deleting IPv6 link-local routes
Updating subject for release notes.
Actions