Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 1 | nfdc-route |
| 2 | ========== |
| 3 | |
| 4 | SYNOPSIS |
| 5 | -------- |
Junxiao Shi | 1d62e62 | 2017-03-08 22:39:28 +0000 | [diff] [blame] | 6 | | nfdc route [list [[nexthop] <FACEID|FACEURI>] [origin <ORIGIN>]] |
| 7 | | nfdc route show [prefix] <PREFIX> |
Junxiao Shi | 918e5d4 | 2017-02-25 03:58:21 +0000 | [diff] [blame] | 8 | | nfdc route add [prefix] <PREFIX> [nexthop] <FACEID|FACEURI> [origin <ORIGIN>] [cost <COST>] |
| 9 | | [no-inherit] [capture] [expires <EXPIRATION-MILLIS>] |
Junxiao Shi | 1d62e62 | 2017-03-08 22:39:28 +0000 | [diff] [blame] | 10 | | nfdc route remove [prefix] <PREFIX> [nexthop] <FACEID|FACEURI> [origin <ORIGIN>] |
| 11 | | nfdc fib [list] |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 12 | |
| 13 | DESCRIPTION |
| 14 | ----------- |
| 15 | In NFD, the routing information base (RIB) stores static or dynamic routing information |
| 16 | registered by applications, operators, and NFD itself. |
| 17 | Each *route* in the RIB indicates that contents under a name prefix may be available via a nexthop. |
| 18 | A route contains a name prefix, a nexthop face, the origin, a cost, and a set of route inheritance flags; |
| 19 | refer to NFD Management protocol for more information. |
| 20 | |
Junxiao Shi | 1d62e62 | 2017-03-08 22:39:28 +0000 | [diff] [blame] | 21 | The **nfdc route list** command lists RIB routes, optionally filtered by nexthop and origin. |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 22 | |
Junxiao Shi | 1d62e62 | 2017-03-08 22:39:28 +0000 | [diff] [blame] | 23 | The **nfdc route show** command shows RIB routes at a specified name prefix. |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 24 | |
Junxiao Shi | 918e5d4 | 2017-02-25 03:58:21 +0000 | [diff] [blame] | 25 | The **nfdc route add** command requests to add a route. |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 26 | If a route with the same prefix, nexthop, and origin already exists, |
Junxiao Shi | 918e5d4 | 2017-02-25 03:58:21 +0000 | [diff] [blame] | 27 | it is updated with the specified cost, route inheritance flags, and expiration period. |
| 28 | This command returns when the request has been accepted, but does not wait for RIB update completion. |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 29 | |
Junxiao Shi | 084b795 | 2017-02-26 22:00:53 +0000 | [diff] [blame] | 30 | The **nfdc route remove** command removes a route with matching prefix, nexthop, and origin. |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 31 | |
Junxiao Shi | 1d62e62 | 2017-03-08 22:39:28 +0000 | [diff] [blame] | 32 | The **nfdc fib list** command shows the forwarding information base (FIB), |
| 33 | which is calculated from RIB routes and used directly by NFD forwarding. |
| 34 | |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 35 | OPTIONS |
| 36 | ------- |
Junxiao Shi | 918e5d4 | 2017-02-25 03:58:21 +0000 | [diff] [blame] | 37 | <PREFIX> |
| 38 | Name prefix of the route. |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 39 | |
Junxiao Shi | 918e5d4 | 2017-02-25 03:58:21 +0000 | [diff] [blame] | 40 | <FACEID> |
| 41 | Numerical identifier of the face. |
| 42 | It is displayed in the output of **nfdc face list** and **nfdc face create** commands. |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 43 | |
Junxiao Shi | 918e5d4 | 2017-02-25 03:58:21 +0000 | [diff] [blame] | 44 | <FACEURI> |
| 45 | An URI representing the remote endpoint of a face. |
Junxiao Shi | 084b795 | 2017-02-26 22:00:53 +0000 | [diff] [blame] | 46 | In **nfdc route add** command, it must uniquely match an existing face. |
| 47 | In **nfdc route remove** command, it must match one or more existing faces. |
Junxiao Shi | 918e5d4 | 2017-02-25 03:58:21 +0000 | [diff] [blame] | 48 | |
| 49 | <ORIGIN> |
| 50 | Origin of the route, i.e. who is announcing the route. |
| 51 | The default is 255, indicating a static route. |
| 52 | |
| 53 | <COST> |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 54 | The administrative cost of the route. |
| 55 | The default is 0. |
| 56 | |
Junxiao Shi | 918e5d4 | 2017-02-25 03:58:21 +0000 | [diff] [blame] | 57 | no-inherit |
| 58 | Unset CHILD_INHERIT flag in the route. |
| 59 | |
| 60 | capture |
| 61 | Set CAPTURE flag in the route. |
| 62 | |
| 63 | <EXPIRATION-MILLIS> |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 64 | Expiration time of the route, in milliseconds. |
| 65 | When the route expires, NFD removes it from the RIB. |
| 66 | The default is infinite, which keeps the route active until the nexthop face is destroyed. |
| 67 | |
Junxiao Shi | 918e5d4 | 2017-02-25 03:58:21 +0000 | [diff] [blame] | 68 | EXIT CODES |
| 69 | ---------- |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 70 | |
Junxiao Shi | 918e5d4 | 2017-02-25 03:58:21 +0000 | [diff] [blame] | 71 | 0: Success |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 72 | |
Junxiao Shi | 918e5d4 | 2017-02-25 03:58:21 +0000 | [diff] [blame] | 73 | 1: An unspecified error occurred |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 74 | |
Junxiao Shi | 918e5d4 | 2017-02-25 03:58:21 +0000 | [diff] [blame] | 75 | 2: Malformed command line |
| 76 | |
Junxiao Shi | 084b795 | 2017-02-26 22:00:53 +0000 | [diff] [blame] | 77 | 3: Face not found |
Junxiao Shi | 918e5d4 | 2017-02-25 03:58:21 +0000 | [diff] [blame] | 78 | |
Junxiao Shi | 084b795 | 2017-02-26 22:00:53 +0000 | [diff] [blame] | 79 | 4: FaceUri canonization failed |
Junxiao Shi | 918e5d4 | 2017-02-25 03:58:21 +0000 | [diff] [blame] | 80 | |
| 81 | 5: Ambiguous: multiple matching faces are found (**nfdc route add** only) |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 82 | |
Junxiao Shi | 1d62e62 | 2017-03-08 22:39:28 +0000 | [diff] [blame] | 83 | 6: Route not found (**nfdc route list** and **nfdc route show** only) |
| 84 | |
Junxiao Shi | 6c13562 | 2016-11-21 14:30:33 +0000 | [diff] [blame] | 85 | SEE ALSO |
| 86 | -------- |
| 87 | nfd(1), nfdc(1) |