Created
March 23, 2021 04:20
-
-
Save danmcd/98759ac90995de8cac8316b7ea547e74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[root@moe (kebecloud) ~]# netstat -rn -f inet6 | |
Routing Table: IPv6 | |
Destination/Mask Gateway Flags Ref Use If | |
--------------------------- --------------------------- ----- --- ------- ----- | |
::1 ::1 UH 2 0 lo0 | |
fe80::/10 fe80::ec4:7aff:fe07:f6ef U 2 0 igb3 | |
fe80::/10 fe80::8:20ff:fe91:ad54 U 2 0 external0 | |
[root@moe (kebeclod) ~]# route add -inet6 default -ifp external0 fe80::1 | |
add net default: gateway fe80::1 | |
[root@moe (kebecloud) ~]# netstat -rn -f inet6 | |
Routing Table: IPv6 | |
Destination/Mask Gateway Flags Ref Use If | |
--------------------------- --------------------------- ----- --- ------- ----- | |
::1 ::1 UH 2 0 lo0 | |
fe80::/10 fe80::ec4:7aff:fe07:f6ef U 2 0 igb3 | |
fe80::/10 fe80::8:20ff:fe91:ad54 U 2 0 external0 | |
default fe80::1 UG 1 0 external0 | |
[root@moe (kebecloud) ~]# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment