mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-06 09:35:20 +00:00
16 lines
657 B
Plaintext
16 lines
657 B
Plaintext
table_name("routes")
|
|
description("The active route table for the host system.")
|
|
schema([
|
|
Column("destination", TEXT, "Destination IP address"),
|
|
Column("netmask", TEXT, "Netmask length"),
|
|
Column("gateway", TEXT, "Route gateway"),
|
|
Column("source", TEXT, "Route source"),
|
|
Column("flags", INTEGER, "Flags to describe route"),
|
|
Column("interface", TEXT, "Route local interface"),
|
|
Column("mtu", INTEGER, "Maximum Transmission Unit for the route"),
|
|
Column("metric", INTEGER, "Cost of route. Lowest is preferred"),
|
|
Column("type", TEXT, "Type of route"),
|
|
])
|
|
attributes(cacheable=True)
|
|
implementation("networking/routes@genRoutes")
|