328 lines · yaml
1# SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)2 3name: rt-route4protocol: netlink-raw5protonum: 06 7doc:8 Route configuration over rtnetlink.9 10definitions:11 -12 name: rtm-type13 name-prefix: rtn-14 type: enum15 entries:16 - unspec17 - unicast18 - local19 - broadcast20 - anycast21 - multicast22 - blackhole23 - unreachable24 - prohibit25 - throw26 - nat27 - xresolve28 -29 name: rtmsg30 type: struct31 members:32 -33 name: rtm-family34 type: u835 -36 name: rtm-dst-len37 type: u838 -39 name: rtm-src-len40 type: u841 -42 name: rtm-tos43 type: u844 -45 name: rtm-table46 type: u847 -48 name: rtm-protocol49 type: u850 -51 name: rtm-scope52 type: u853 -54 name: rtm-type55 type: u856 enum: rtm-type57 -58 name: rtm-flags59 type: u3260 -61 name: rta-cacheinfo62 type: struct63 members:64 -65 name: rta-clntref66 type: u3267 -68 name: rta-lastuse69 type: u3270 -71 name: rta-expires72 type: u3273 -74 name: rta-error75 type: u3276 -77 name: rta-used78 type: u3279 80attribute-sets:81 -82 name: route-attrs83 attributes:84 -85 name: rta-dst86 type: binary87 display-hint: ipv488 -89 name: rta-src90 type: binary91 display-hint: ipv492 -93 name: rta-iif94 type: u3295 -96 name: rta-oif97 type: u3298 -99 name: rta-gateway100 type: binary101 display-hint: ipv4102 -103 name: rta-priority104 type: u32105 -106 name: rta-prefsrc107 type: binary108 display-hint: ipv4109 -110 name: rta-metrics111 type: nest112 nested-attributes: rta-metrics113 -114 name: rta-multipath115 type: binary116 -117 name: rta-protoinfo # not used118 type: binary119 -120 name: rta-flow121 type: u32122 -123 name: rta-cacheinfo124 type: binary125 struct: rta-cacheinfo126 -127 name: rta-session # not used128 type: binary129 -130 name: rta-mp-algo # not used131 type: binary132 -133 name: rta-table134 type: u32135 -136 name: rta-mark137 type: u32138 -139 name: rta-mfc-stats140 type: binary141 -142 name: rta-via143 type: binary144 -145 name: rta-newdst146 type: binary147 -148 name: rta-pref149 type: u8150 -151 name: rta-encap-type152 type: u16153 -154 name: rta-encap155 type: binary # tunnel specific nest156 -157 name: rta-expires158 type: u32159 -160 name: rta-pad161 type: binary162 -163 name: rta-uid164 type: u32165 -166 name: rta-ttl-propagate167 type: u8168 -169 name: rta-ip-proto170 type: u8171 -172 name: rta-sport173 type: u16174 -175 name: rta-dport176 type: u16177 -178 name: rta-nh-id179 type: u32180 -181 name: rta-metrics182 attributes:183 -184 name: rtax-unspec185 type: unused186 value: 0187 -188 name: rtax-lock189 type: u32190 -191 name: rtax-mtu192 type: u32193 -194 name: rtax-window195 type: u32196 -197 name: rtax-rtt198 type: u32199 -200 name: rtax-rttvar201 type: u32202 -203 name: rtax-ssthresh204 type: u32205 -206 name: rtax-cwnd207 type: u32208 -209 name: rtax-advmss210 type: u32211 -212 name: rtax-reordering213 type: u32214 -215 name: rtax-hoplimit216 type: u32217 -218 name: rtax-initcwnd219 type: u32220 -221 name: rtax-features222 type: u32223 -224 name: rtax-rto-min225 type: u32226 -227 name: rtax-initrwnd228 type: u32229 -230 name: rtax-quickack231 type: u32232 -233 name: rtax-cc-algo234 type: string235 -236 name: rtax-fastopen-no-cookie237 type: u32238 239operations:240 enum-model: directional241 list:242 -243 name: getroute244 doc: Dump route information.245 attribute-set: route-attrs246 fixed-header: rtmsg247 do:248 request:249 value: 26250 attributes:251 - rtm-family252 - rta-src253 - rtm-src-len254 - rta-dst255 - rtm-dst-len256 - rta-iif257 - rta-oif258 - rta-ip-proto259 - rta-sport260 - rta-dport261 - rta-mark262 - rta-uid263 reply:264 value: 24265 attributes: &all-route-attrs266 - rtm-family267 - rtm-dst-len268 - rtm-src-len269 - rtm-tos270 - rtm-table271 - rtm-protocol272 - rtm-scope273 - rtm-type274 - rtm-flags275 - rta-dst276 - rta-src277 - rta-iif278 - rta-oif279 - rta-gateway280 - rta-priority281 - rta-prefsrc282 - rta-metrics283 - rta-multipath284 - rta-flow285 - rta-cacheinfo286 - rta-table287 - rta-mark288 - rta-mfc-stats289 - rta-via290 - rta-newdst291 - rta-pref292 - rta-encap-type293 - rta-encap294 - rta-expires295 - rta-pad296 - rta-uid297 - rta-ttl-propagate298 - rta-ip-proto299 - rta-sport300 - rta-dport301 - rta-nh-id302 dump:303 request:304 value: 26305 attributes:306 - rtm-family307 reply:308 value: 24309 attributes: *all-route-attrs310 -311 name: newroute312 doc: Create a new route313 attribute-set: route-attrs314 fixed-header: rtmsg315 do:316 request:317 value: 24318 attributes: *all-route-attrs319 -320 name: delroute321 doc: Delete an existing route322 attribute-set: route-attrs323 fixed-header: rtmsg324 do:325 request:326 value: 25327 attributes: *all-route-attrs328