schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
ifstate.conf.schema.json | link | Bonding network interface | {"required": ["kind"], "additionalProperties": false, "properties": {"kind": {"const": "bond"}, "address": {}, "group": {}, "state": {}, "master": {}, "mtu": {}, "txqlen": {}, "ifalias": {}, "bond_mode": {"enum": [0, "balance-rr", 1, "active-backup", 2, "balance-xor", 3, "broadcast", 4, "802.3ad", 5, "balance-tlb", 6, "balance-alb"], "default": "balance-rr"}, "bond_miimon": {"type": "integer", "minimum": 0, "default": 0}, "bond_updelay": {"type": "integer", "minimum": 0, "default": 0}, "bond_downdelay": {"type": "integer", "minimum": 0, "default": 0}, "bond_use_carrier": {"enum": [0, 1], "default": 1}, "bond_arp_interval": {"type": "integer", "minimum": 0, "default": 0}, "bond_arp_validate": {"enum": [0, "none", 1, "active", 2, "backup", 3, "all", 4, "filter", 5, "filter_active", 6, "filter_backup"], "default": "none"}, "bond_arp_all_targets": {"enum": [0, "any", 1, "all"], "default": "any"}, "bond_primary_reselect": {"enum": [0, "always", 1, "better", 2, "failure"], "default": "always"}, "bond_fail_over_mac": {"enum": [0, "none", 1, "active", 2, "follow"], "default": "none"}, "bond_xmit_hash_policy": {"enum": [0, "layer2", 1, "layer3+4", 2, "layer2+3", 3, "encap2+3", 4, "encap3+4", 5, "vlan+srcmac"], "default": "layer2"}, "bond_resend_igmp": {"type": "integer", "minimum": 0, "maximum": 255, "default": 1}, "bond_num_peer_notif": {"type": "integer", "minimum": 0, "default": 1}, "bond_all_slaves_active": {"enum": [0, 1], "default": 1}, "bond_min_links": {"type": "integer", "minimum": 0, "default": 0}, "bond_lp_interval": {"type": "integer", "minimum": 0, "maximum": 2147483647, "default": 1}, "bond_packets_per_slave": {"type": "integer", "minimum": 0, "maximum": 65535, "default": 1}, "bond_ad_lacp_rate": {"enum": [0, "slow", 1, "fast"], "default": "slow"}, "bond_ad_select": {"enum": [0, "stable", 1, "bandwidth", 2, "count"], "default": "stable"}, "bond_tlb_dynamic_lb": {"enum": [0, 1], "default": 1}}} |
ifstate.conf.schema.json | kind | link type | {"const": "bond"} |
ifstate.conf.schema.json | bond_mode | the bonding policy | {"enum": [0, "balance-rr", 1, "active-backup", 2, "balance-xor", 3, "broadcast", 4, "802.3ad", 5, "balance-tlb", 6, "balance-alb"], "default": "balance-rr"} |
ifstate.conf.schema.json | bond_miimon | MII link monitoring frequency in milliseconds | {"type": "integer", "minimum": 0, "default": 0} |
ifstate.conf.schema.json | bond_updelay | time, in milliseconds, to wait before enabling a slave after a link recovery has been detected | {"type": "integer", "minimum": 0, "default": 0} |
ifstate.conf.schema.json | bond_downdelay | time, in milliseconds, to wait before disabling a slave after a link failure has been detected | {"type": "integer", "minimum": 0, "default": 0} |
ifstate.conf.schema.json | bond_use_carrier | use MII or ETHTOOL ioctls vs. netif_carrier_ok() to determine the link status | {"enum": [0, 1], "default": 1} |
ifstate.conf.schema.json | bond_arp_interval | ARP link monitoring frequency in milliseconds | {"type": "integer", "minimum": 0, "default": 0} |
ifstate.conf.schema.json | bond_arp_validate | arp validation for arp monitoring | {"enum": [0, "none", 1, "active", 2, "backup", 3, "all", 4, "filter", 5, "filter_active", 6, "filter_backup"], "default": "none"} |
ifstate.conf.schema.json | bond_arp_all_targets | quantity of arp_ip_targets that must be reachable | {"enum": [0, "any", 1, "all"], "default": "any"} |
ifstate.conf.schema.json | bond_primary_reselect | reselection policy for the primary slave | {"enum": [0, "always", 1, "better", 2, "failure"], "default": "always"} |
ifstate.conf.schema.json | bond_fail_over_mac | slave mac address selection | {"enum": [0, "none", 1, "active", 2, "follow"], "default": "none"} |
ifstate.conf.schema.json | bond_xmit_hash_policy | transmit hash policy to use for slave selection | {"enum": [0, "layer2", 1, "layer3+4", 2, "layer2+3", 3, "encap2+3", 4, "encap3+4", 5, "vlan+srcmac"], "default": "layer2"} |
ifstate.conf.schema.json | bond_resend_igmp | number of IGMP membership reports to be issued after a failover event | {"type": "integer", "minimum": 0, "maximum": 255, "default": 1} |
ifstate.conf.schema.json | bond_all_slaves_active | dropped (0) or delivered (1) duplicate frames | {"enum": [0, 1], "default": 1} |
ifstate.conf.schema.json | bond_min_links | number of links that must be active before asserting carrier | {"type": "integer", "minimum": 0, "default": 0} |
ifstate.conf.schema.json | bond_lp_interval | number of seconds between instances where the bonding driver sends learning packets to each slaves peer switch | {"type": "integer", "minimum": 0, "maximum": 2147483647, "default": 1} |
ifstate.conf.schema.json | bond_packets_per_slave | number of packets to transmit through a slave before moving to the next one | {"type": "integer", "minimum": 0, "maximum": 65535, "default": 1} |
ifstate.conf.schema.json | bond_ad_lacp_rate | requested LACPDU packet rate in 802.3ad mode | {"enum": [0, "slow", 1, "fast"], "default": "slow"} |
ifstate.conf.schema.json | bond_ad_select | 802.3ad aggregation selection logic to use | {"enum": [0, "stable", 1, "bandwidth", 2, "count"], "default": "stable"} |
ifstate.conf.schema.json | bond_tlb_dynamic_lb | dynamic shuffling of flows in tlb mode | {"enum": [0, 1], "default": 1} |
ifstate.conf.schema.json | link | Bridge network interface | {"required": ["kind"], "properties": {"kind": {"const": "bridge"}, "address": {}, "group": {}, "state": {}, "master": {}, "mtu": {}, "txqlen": {}, "ifalias": {}, "br_ageing_time": {"type": "integer", "minimum": 0, "default": 30000}, "br_vlan_protocol": {"enum": [33024, "802.1q", 34984, "802.1ad"], "default": "802.1q"}}} |
ifstate.conf.schema.json | kind | link type | {"const": "bridge"} |
ifstate.conf.schema.json | br_ageing_time | FDB entry ageing time in milliseconds | {"type": "integer", "minimum": 0, "default": 30000} |
ifstate.conf.schema.json | br_vlan_protocol | 802.1q or 802.1ad (Q-in-Q) | {"enum": [33024, "802.1q", 34984, "802.1ad"], "default": "802.1q"} |
ifstate.conf.schema.json | link | Physical network interface | {"required": ["kind"], "additionalProperties": false, "properties": {"kind": {"type": "string", "enum": ["physical"]}, "address": {}, "group": {}, "permaddr": {}, "businfo": {"type": "string", "maxLength": 32}, "state": {}, "master": {}, "mtu": {}, "txqlen": {}, "ifalias": {}}} |
ifstate.conf.schema.json | kind | link type | {"type": "string", "enum": ["physical"]} |
ifstate.conf.schema.json | permaddr | select interface by permanent address [ethtool -P] | {} |
ifstate.conf.schema.json | businfo | select interface by bus info [ethtool -i] | {"type": "string", "maxLength": 32} |
ifstate.conf.schema.json | link | Dummy network interface | {"required": ["kind"], "additionalProperties": false, "properties": {"kind": {"type": "string", "enum": ["dummy"]}, "address": {}, "group": {}, "state": {}, "master": {}, "mtu": {}, "txqlen": {}, "ifalias": {}}} |
ifstate.conf.schema.json | kind | link type | {"type": "string", "enum": ["dummy"]} |
ifstate.conf.schema.json | link | VETH/VXCAN interface | {"required": ["kind", "peer"], "additionalProperties": false, "properties": {"kind": {"type": "string", "enum": ["veth", "vxcan"]}, "address": {}, "group": {}, "peer": {}, "state": {}, "master": {}, "mtu": {}, "txqlen": {}, "ifalias": {}}} |
ifstate.conf.schema.json | kind | link type | {"type": "string", "enum": ["veth", "vxcan"]} |
ifstate.conf.schema.json | link | VLAN interface | {"required": ["kind", "link", "vlan_id"], "additionalProperties": false, "properties": {"kind": {"const": "vlan"}, "address": {}, "group": {}, "state": {}, "master": {}, "mtu": {}, "txqlen": {}, "ifalias": {}, "link": {}, "vlan_id": {"type": ["integer"], "minimum": 0, "maximum": 4094}, "vlan_protocol": {"enum": [33024, "802.1q", 34984, "802.1ad"], "default": "802.1q"}}} |
ifstate.conf.schema.json | kind | link type | {"const": "vlan"} |
ifstate.conf.schema.json | vlan_id | specifies the VLAN identifier to use | {"type": ["integer"], "minimum": 0, "maximum": 4094} |
ifstate.conf.schema.json | vlan_protocol | 802.1q or 802.1ad (Q-in-Q) | {"enum": [33024, "802.1q", 34984, "802.1ad"], "default": "802.1q"} |
ifstate.conf.schema.json | link | VXLAN interface | {"required": ["kind", "vxlan_id", "vxlan_link"], "additionalProperties": false, "properties": {"kind": {"const": "vxlan"}, "address": {}, "group": {}, "state": {}, "master": {}, "mtu": {}, "txqlen": {}, "ifalias": {}, "vxlan_id": {"type": ["integer"], "minimum": 0, "maximum": 16777215}, "vxlan_link": {}}} |
ifstate.conf.schema.json | kind | link type | {"const": "vxlan"} |
ifstate.conf.schema.json | vxlan_id | specifies the VNI | {"type": ["integer"], "minimum": 0, "maximum": 16777215} |
ifstate.conf.schema.json | link | IPIP interface | {"required": ["kind", "ipip_remote", "ipip_local"], "additionalProperties": false, "properties": {"kind": {"const": "ipip"}, "address": {}, "group": {}, "state": {}, "master": {}, "mtu": {}, "txqlen": {}, "ifalias": {}, "ipip_remote": {}, "ipip_local": {}}} |
ifstate.conf.schema.json | kind | link type | {"const": "ipip"} |
ifstate.conf.schema.json | link | SIT interface | {"required": ["kind", "sit_remote", "sit_local"], "additionalProperties": false, "properties": {"kind": {"const": "sit"}, "address": {}, "group": {}, "state": {}, "master": {}, "mtu": {}, "txqlen": {}, "ifalias": {}, "sit_remote": {}, "sit_local": {}}} |
ifstate.conf.schema.json | kind | link type | {"const": "sit"} |
ifstate.conf.schema.json | link | GRE, GRETAP interface | {"required": ["kind", "gre_remote", "gre_local"], "additionalProperties": false, "properties": {"kind": {"type": "string", "enum": ["gre", "gretap"]}, "address": {}, "group": {}, "state": {}, "master": {}, "mtu": {}, "txqlen": {}, "ifalias": {}, "gre_remote": {}, "gre_local": {}, "gre_link": {}}} |
ifstate.conf.schema.json | kind | link type | {"type": "string", "enum": ["gre", "gretap"]} |
ifstate.conf.schema.json | link | IP6GRE, IP6GRETAP interface | {"required": ["kind", "ip6gre_remote", "ip6gre_local"], "additionalProperties": false, "properties": {"kind": {"type": "string", "enum": ["ip6gre", "ip6gretap"]}, "address": {}, "group": {}, "state": {}, "master": {}, "mtu": {}, "txqlen": {}, "ifalias": {}, "ip6gre_remote": {}, "ip6gre_local": {}, "ip6gre_link": {}}} |
ifstate.conf.schema.json | kind | link type | {"type": "string", "enum": ["ip6gre", "ip6gretap"]} |
ifstate.conf.schema.json | link | GENEVE interface over IPv4 | {"additionalProperties": false, "required": ["kind", "geneve_id", "geneve_remote"], "properties": {"kind": {"const": "geneve"}, "address": {}, "group": {}, "state": {}, "master": {}, "mtu": {}, "txqlen": {}, "ifalias": {}, "geneve_id": {"type": ["integer"], "minimum": 0, "maximum": 16777215}, "geneve_remote": {}}} |
ifstate.conf.schema.json | kind | link type | {"const": "geneve"} |
ifstate.conf.schema.json | geneve_id | specifies the VNI to use | {"type": ["integer"], "minimum": 0, "maximum": 16777215} |
ifstate.conf.schema.json | link | GENEVE interface over IPv6 | {"additionalProperties": false, "required": ["kind", "geneve_id", "geneve_remote6"], "properties": {"kind": {"const": "geneve"}, "address": {}, "group": {}, "state": {}, "master": {}, "mtu": {}, "txqlen": {}, "ifalias": {}, "geneve_id": {"type": ["integer"], "minimum": 0, "maximum": 16777215}, "geneve_remote6": {}}} |
ifstate.conf.schema.json | kind | link type | {"const": "geneve"} |
ifstate.conf.schema.json | geneve_id | specifies the VNI to use | {"type": ["integer"], "minimum": 0, "maximum": 16777215} |
ifstate.conf.schema.json | link | WireGuard interface; WireGuard settings can be configured using a `wireguard` block | {"required": ["kind"], "additionalProperties": false, "properties": {"kind": {"const": "wireguard"}, "address": {}, "group": {}, "state": {}, "master": {}, "mtu": {}, "txqlen": {}, "ifalias": {}}} |
ifstate.conf.schema.json | kind | link type | {"const": "wireguard"} |
ifstate.conf.schema.json | link | XFRM interface | {"required": ["kind", "xfrm_link"], "additionalProperties": false, "properties": {"kind": {"const": "xfrm"}, "address": {}, "group": {}, "state": {}, "master": {}, "mtu": {}, "txqlen": {}, "ifalias": {}, "xfrm_link": {}, "xfrm_if_id": {"type": ["integer"], "minimum": 0, "maximum": 4294967295, "default": 0}}} |
ifstate.conf.schema.json | kind | link type | {"const": "xfrm"} |
ifstate.conf.schema.json | xfrm_link | underlying interface used to send and receive the transformed traffic | {} |
ifstate.conf.schema.json | xfrm_if_id | lookup key to match xfrm policies | {"type": ["integer"], "minimum": 0, "maximum": 4294967295, "default": 0} |
ifstate.conf.schema.json | neighbours | static ARP or NDISC cache entries | {"type": "array", "items": {"type": "object", "required": ["dst"], "additionalProperties": false, "properties": {"dst": {"type": "string", "format": "ipv4"}, "lladdr": {"default": null}}}} |
ifstate.conf.schema.json | dst | protocol address of the neighbour | {"type": "string", "format": "ipv4"} |
ifstate.conf.schema.json | lladdr | link layer address of the neighbour | {"default": null} |
ifstate.conf.schema.json | sysctl | [interface sysctl settings](https://www.kernel.org/doc/Documentation/networking/ip-sysctl.txt) in `/proc/sys/net/ipv*/conf/{IFACE}/` | {} |
ifstate.conf.schema.json | ethtool | network driver and hardware settings via [ethtool(8)](https://man7.org/linux/man-pages/man8/ethtool.8.html) | {"type": "object", "additionalProperties": false, "properties": {"pause": {"type": "object", "additionalProperties": false, "properties": {"autoneg": {}, "rx": {}, "tx": {}}}, "coalesce": {"type": "object", "additionalProperties": false, "properties": {"adaptive-rx": {}, "adaptive-tx": {}, "rx-usecs": {"type": "integer"}, "rx-frames": {"type": "integer"}, "rx-usecs-irq": {"type": "integer"}, "rx-frames-irq": {"type": "integer"}, "tx-usecs": {"type": "integer"}, "tx-frames": {"type": "integer"}, "tx-usecs-irq": {"type": "integer"}, "tx-frames-irq": {"type": "integer"}, "stats-block-usecs": {"type": "integer"}, "pkt-rate-low": {"type": "integer"}, "rx-usecs-low": {"type": "integer"}, "rx-frames-low": {"type": "integer"}, "tx-usecs-low": {"type": "integer"}, "tx-frames-low": {"type": "integer"}, "pkt-rate-high": {"type": "integer"}, "rx-usecs-high": {"type": "integer"}, "rx-frames-high": {"type": "integer"}, "tx-usecs-high": {"type": "integer"}, "tx-frames-high": {"type": "integer"}, "sample-interval": {"type": "integer"}}}, "ring": {"type": "object", "additionalProperties": false, "properties": {"rx": {"type": "integer"}, "rx-mmini": {"type": "integer"}, "rx-jumbo": {"type": "integer"}, "tx": {"type": "integer"}}}, "features": {"type": "object", "additionalProperties": false, "properties": {"rx": {}, "tx": {}, "sg": {}, "tso": {}, "ufo": {}, "gso": {}, "gro": {}, "lro": {}, "rxvlan": {}, "txvlan": {}, "ntuple": {}, "rxhash": {}}}, "change": {"type": "object", "additionalProperties": false, "properties": {"speed": {"type": "integer"}, "duplex": {"type": "string", "enum": ["half", "full"]}, "port": {"type": "string", "enum": ["tp", "aui", "bnc", "mii"]}, "mdix": {"type": ["boolean", "string"], "enum": ["auto", "on", "off", true, false]}, "autoneg": {}, "advertise": {"type": "integer"}, "phyad": {"type": "integer"}, "xcvr": {"type": "string", "enum": ["internal", "external"]}, "wol": {"type": "string", "pattern": "^[pumbagsfd]+$"}, "sopass": {"type": "string", "pattern": "^[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}$"}, "msglvl": {"oneOf": [{"type": "integer"}, {"type": "array", "items": [{"type": "string", "enum": ["drv", "probe", "link", "timer", "ifdown", "ifup", "rx_err", "tx_err", "tx_queued", "intr", "tx_done", "rx_status", "pktdata", "hw", "wol"]}, {}]}]}}}, "channels": {"type": "object", "additionalProperties": false, "properties": {"rx": {"type": "integer"}, "tx": {"type": "integer"}, "other": {"type": "integer"}, "combined": {"type": "integer"}}}, "eee": {"type": "object", "additionalProperties": false, "properties": {"eee": {}, "tx-lpi": {}, "advertise": {"type": "integer"}, "tx-timer": {"type": "integer"}}}, "phy-tunable": {"type": "object", "additionalProperties": false, "properties": {"downshift": {"oneOf": [{}, {"type": "array", "minItems": 3, "maxItems": 3, "items": [{}, {"type": "string", "enum": ["count"]}, {"type": "integer"}]}]}, "fast-link-down": {"oneOf": [{}, {"type": "array", "minItems": 3, "maxItems": 3, "items": [{}, {"type": "string", "enum": ["msec"]}, {"type": "integer"}]}]}, "energy-detect-power-down": {"oneOf": [{}, {"type": "array", "minItems": 3, "maxItems": 3, "items": [{}, {"type": "string", "enum": ["msec"]}, {"type": "integer"}]}]}}}, "priv-flags": {"type": "object"}, "fec": {"type": "object", "additionalProperties": false, "properties": {"encoding": {"type": ["string", "array"], "enum": ["auto", "off", "RS", "BaseR", "LLRS"], "items": {"type": "string", "enum": ["auto", "RS", "BaseR", "LLRS"]}}}}}} |
ifstate.conf.schema.json | pause | pause parameters | {"type": "object", "additionalProperties": false, "properties": {"autoneg": {}, "rx": {}, "tx": {}}} |
ifstate.conf.schema.json | autoneg | enable pause autonegotiation | {} |
ifstate.conf.schema.json | rx | enable Rx pause | {} |
ifstate.conf.schema.json | tx | enable Tx pause | {} |
ifstate.conf.schema.json | coalesce | interrupt coalescing | {"type": "object", "additionalProperties": false, "properties": {"adaptive-rx": {}, "adaptive-tx": {}, "rx-usecs": {"type": "integer"}, "rx-frames": {"type": "integer"}, "rx-usecs-irq": {"type": "integer"}, "rx-frames-irq": {"type": "integer"}, "tx-usecs": {"type": "integer"}, "tx-frames": {"type": "integer"}, "tx-usecs-irq": {"type": "integer"}, "tx-frames-irq": {"type": "integer"}, "stats-block-usecs": {"type": "integer"}, "pkt-rate-low": {"type": "integer"}, "rx-usecs-low": {"type": "integer"}, "rx-frames-low": {"type": "integer"}, "tx-usecs-low": {"type": "integer"}, "tx-frames-low": {"type": "integer"}, "pkt-rate-high": {"type": "integer"}, "rx-usecs-high": {"type": "integer"}, "rx-frames-high": {"type": "integer"}, "tx-usecs-high": {"type": "integer"}, "tx-frames-high": {"type": "integer"}, "sample-interval": {"type": "integer"}}} |
ifstate.conf.schema.json | ring | rx/tx ring parameters | {"type": "object", "additionalProperties": false, "properties": {"rx": {"type": "integer"}, "rx-mmini": {"type": "integer"}, "rx-jumbo": {"type": "integer"}, "tx": {"type": "integer"}}} |
ifstate.conf.schema.json | rx | number of ring entries for the Rx ring | {"type": "integer"} |
ifstate.conf.schema.json | rx-mmini | number of ring entries for the Rx Mini ring | {"type": "integer"} |
ifstate.conf.schema.json | rx-jumbo | number of ring entries for the Rx Jumbo ring | {"type": "integer"} |
ifstate.conf.schema.json | tx | number of ring entries for the Tx ring | {"type": "integer"} |
ifstate.conf.schema.json | features | offload parameters and other features | {"type": "object", "additionalProperties": false, "properties": {"rx": {}, "tx": {}, "sg": {}, "tso": {}, "ufo": {}, "gso": {}, "gro": {}, "lro": {}, "rxvlan": {}, "txvlan": {}, "ntuple": {}, "rxhash": {}}} |
ifstate.conf.schema.json | rx | enable RX checksumming | {} |
ifstate.conf.schema.json | tx | enable TX checksumming | {} |
ifstate.conf.schema.json | sg | enable scatter-gather | {} |
ifstate.conf.schema.json | tso | enable TCP segmentation offload | {} |
ifstate.conf.schema.json | ufo | enable UDP fragmentation offload | {} |
ifstate.conf.schema.json | gso | enable generic segmentation offload | {} |
ifstate.conf.schema.json | gro | enable generic receive offload | {} |
ifstate.conf.schema.json | lro | enable large receive offload | {} |
ifstate.conf.schema.json | rxvlan | enable RX VLAN acceleration | {} |
ifstate.conf.schema.json | txvlan | enable TX VLAN acceleration | {} |
ifstate.conf.schema.json | ntuple | enable Rx ntuple filters and actions | {} |
ifstate.conf.schema.json | rxhash | enable receive hashing offload | {} |
ifstate.conf.schema.json | change | device settings | {"type": "object", "additionalProperties": false, "properties": {"speed": {"type": "integer"}, "duplex": {"type": "string", "enum": ["half", "full"]}, "port": {"type": "string", "enum": ["tp", "aui", "bnc", "mii"]}, "mdix": {"type": ["boolean", "string"], "enum": ["auto", "on", "off", true, false]}, "autoneg": {}, "advertise": {"type": "integer"}, "phyad": {"type": "integer"}, "xcvr": {"type": "string", "enum": ["internal", "external"]}, "wol": {"type": "string", "pattern": "^[pumbagsfd]+$"}, "sopass": {"type": "string", "pattern": "^[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}$"}, "msglvl": {"oneOf": [{"type": "integer"}, {"type": "array", "items": [{"type": "string", "enum": ["drv", "probe", "link", "timer", "ifdown", "ifup", "rx_err", "tx_err", "tx_queued", "intr", "tx_done", "rx_status", "pktdata", "hw", "wol"]}, {}]}]}}} |
ifstate.conf.schema.json | speed | speed in Mbps | {"type": "integer"} |
ifstate.conf.schema.json | duplex | full or half duplex mode | {"type": "string", "enum": ["half", "full"]} |
ifstate.conf.schema.json | port | device port selection | {"type": "string", "enum": ["tp", "aui", "bnc", "mii"]} |
ifstate.conf.schema.json | mdix | MDI-X mode for port | {"type": ["boolean", "string"], "enum": ["auto", "on", "off", true, false]} |
ifstate.conf.schema.json | autoneg | enable autonegotation | {} |
ifstate.conf.schema.json | advertise | speed and duplex advertised by autonegotation | {"type": "integer"} |
ifstate.conf.schema.json | phyad | PHY address | {"type": "integer"} |
ifstate.conf.schema.json | xcvr | transceiver type | {"type": "string", "enum": ["internal", "external"]} |
ifstate.conf.schema.json | wol | Wake-on-LAN options | {"type": "string", "pattern": "^[pumbagsfd]+$"} |
ifstate.conf.schema.json | sopass | SecureOn™ password | {"type": "string", "pattern": "^[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}:[0-9a-f]{2}$"} |
ifstate.conf.schema.json | msglvl | driver message flags | {"oneOf": [{"type": "integer"}, {"type": "array", "items": [{"type": "string", "enum": ["drv", "probe", "link", "timer", "ifdown", "ifup", "rx_err", "tx_err", "tx_queued", "intr", "tx_done", "rx_status", "pktdata", "hw", "wol"]}, {}]}]} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.