1 #ifndef __LINUX_FIB_RULES_H
2 #define __LINUX_FIB_RULES_H
4 #include <linux/types.h>
5 #include <linux/rtnetlink.h>
7 /* rule is permanent, and cannot be deleted */
8 #define FIB_RULE_PERMANENT 1
9 #define FIB_RULE_INVERT 2
19 __u8 res1; /* reserved */
20 __u8 res2; /* reserved */
29 FRA_DST, /* destination address */
30 FRA_SRC, /* source address */
31 FRA_IFNAME, /* interface name */
34 FRA_PRIORITY, /* priority/preference */
38 FRA_FWMARK, /* mark */
39 FRA_FLOW, /* flow/class id */
43 FRA_TABLE, /* Extended table id */
44 FRA_FWMASK, /* mask for netfilter mark */
48 #define FRA_MAX (__FRA_MAX - 1)
53 FR_ACT_TO_TBL, /* Pass to fixed table */
58 FR_ACT_BLACKHOLE, /* Drop without notification */
59 FR_ACT_UNREACHABLE, /* Drop with ENETUNREACH */
60 FR_ACT_PROHIBIT, /* Drop with EACCES */
64 #define FR_ACT_MAX (__FR_ACT_MAX - 1)