mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-10-30 02:12:38 +00:00
py-json: defines flags for add_sta, set_port
This commit is contained in:
53
py-json/LANforge/add_sta.py
Normal file
53
py-json/LANforge/add_sta.py
Normal file
@@ -0,0 +1,53 @@
|
||||
# Flags for the add_sta command
|
||||
add_sta_flags = {
|
||||
"wpa_enable" : 0x10, # Enable WPA
|
||||
"custom_conf" : 0x20, # Use Custom wpa_supplicant config file.
|
||||
"wep_enable" : 0x200, # Use wpa_supplicant configured for WEP encryption.
|
||||
"wpa2_enable" : 0x400, # Use wpa_supplicant configured for WPA2 encryption.
|
||||
"ht40_disable" : 0x800, # Disable HT-40 even if hardware and AP support it.
|
||||
"scan_ssid" : 0x1000, # Enable SCAN-SSID flag in wpa_supplicant.
|
||||
"passive_scan" : 0x2000, # Use passive scanning (don't send probe requests).
|
||||
"disable_sgi" : 0x4000, # Disable SGI (Short Guard Interval).
|
||||
"lf_sta_migrate" : 0x8000, # OK-To-Migrate (Allow station migration between LANforge radios)
|
||||
"verbose" : 0x10000, # Verbose-Debug: Increase debug info in wpa-supplicant and hostapd logs.
|
||||
"80211u_enable" : 0x20000, # Enable 802.11u (Interworking) feature.
|
||||
"80211u_auto" : 0x40000, # Enable 802.11u (Interworking) Auto-internetworking feature. Always enabled currently.
|
||||
"80211u_gw" : 0x80000, # AP Provides access to internet (802.11u Interworking)
|
||||
"80211u_additional" : 0x100000, # AP requires additional step for access (802.11u Interworking)
|
||||
"80211u_e911" : 0x200000, # AP claims emergency services reachable (802.11u Interworking)
|
||||
"80211u_e911_unauth" : 0x400000, # AP provides Unauthenticated emergency services (802.11u Interworking)
|
||||
"hs20_enable" : 0x800000, # Enable Hotspot 2.0 (HS20) feature. Requires WPA-2.
|
||||
"disable_gdaf" : 0x1000000, # AP: Disable DGAF (used by HotSpot 2.0).
|
||||
"8021x_radius" : 0x2000000, # Use 802.1x (RADIUS for AP).
|
||||
"80211r_pmska_cache" : 0x4000000, # Enable oportunistic PMSKA caching for WPA2 (Related to 802.11r).
|
||||
"disable_ht80" : 0x8000000, # Disable HT80 (for AC chipset NICs only)
|
||||
"ibss_mode" : 0x20000000, # Station should be in IBSS mode.
|
||||
"osen_enable" : 0x40000000, # Enable OSEN protocol (OSU Server-only Authentication)
|
||||
"disable_roam" : 0x80000000, # Disable automatic station roaming based on scan results.
|
||||
"ht160_enable" : 0x100000000, # Enable HT160 mode.
|
||||
"disable_fast_reauth" : 0x200000000, # Disable fast_reauth option for virtual stations.
|
||||
"mesh_mode" : 0x400000000, # Station should be in MESH mode.
|
||||
"power_save_enable" : 0x800000000, # Station should enable power-save. May not work in all drivers/configurations.
|
||||
"create_admin_down" : 0x1000000000, # Station should be created admin-down.
|
||||
"wds-mode" : 0x2000000000, # WDS station (sort of like a lame mesh), not supported on ath10k
|
||||
"no-supp-op-class-ie" : 0x4000000000, # Do not include supported-oper-class-IE in assoc requests. May work around AP bugs.
|
||||
"txo-enable" : 0x8000000000, # Enable/disable tx-offloads, typically managed by set_wifi_txo command
|
||||
"use-wpa3" : 0x10000000000, # Enable WPA-3 (SAE Personal) mode.
|
||||
}
|
||||
add_sta_modes = {
|
||||
"AUTO" : 0, # 802.11g
|
||||
"802.11a" : 1, # 802.11a
|
||||
"b" : 2, # 802.11b
|
||||
"g" : 3, # 802.11g
|
||||
"abg" : 4, # 802.11abg
|
||||
"abgn" : 5, # 802.11abgn
|
||||
"bgn" : 6, # 802.11bgn
|
||||
"bg" : 7, # 802.11bg
|
||||
"abgnAC" : 8, # 802.11abgn-AC
|
||||
"anAC" : 9, # 802.11an-AC
|
||||
"an" : 10, # 802.11an
|
||||
"bgnAC" : 11, # 802.11bgn-AC
|
||||
"abgnAX" : 12, # 802.11abgn-AX, a/b/g/n/AC/AX (dual-band AX) support
|
||||
"bgnAX" : 13, # 802.11bgn-AX
|
||||
"anAX" : 14, # 802.11an-AX
|
||||
}
|
||||
63
py-json/LANforge/set_port.py
Normal file
63
py-json/LANforge/set_port.py
Normal file
@@ -0,0 +1,63 @@
|
||||
set_port_current_flags = {
|
||||
"if_down": 0x1, # Interface Down
|
||||
"fixed_10bt_hd": 0x2, # Fixed-10bt-HD (half duplex)
|
||||
"fixed_10bt_fd": 0x4, # Fixed-10bt-FD
|
||||
"fixed_100bt_hd": 0x8, # Fixed-100bt-HD
|
||||
"fixed_100bt_fd": 0x10, # Fixed-100bt-FD
|
||||
"auto_neg": 0x100, # auto-negotiate
|
||||
"adv_10bt_hd": 0x100000, # advert-10bt-HD
|
||||
"adv_10bt_fd": 0x200000, # advert-10bt-FD
|
||||
"adv_100bt_hd": 0x400000, # advert-100bt-HD
|
||||
"adv_100bt_fd": 0x800000, # advert-100bt-FD
|
||||
"adv_flow_ctl": 0x8000000, # advert-flow-control
|
||||
"promisc": 0x10000000, # PROMISC
|
||||
"use_dhcp": 0x80000000, # USE-DHCP
|
||||
"adv_10g_hd": 0x400000000, # advert-10G-HD
|
||||
"adv_10g_fd": 0x800000000, # advert-10G-FD
|
||||
"tso_enabled": 0x1000000000, # TSO-Enabled
|
||||
"lro_enabled": 0x2000000000, # LRO-Enabled
|
||||
"gro_enabled": 0x4000000000, # GRO-Enabled
|
||||
"ufo_enabled": 0x8000000000, # UFO-Enabled
|
||||
"gso_enabled": 0x10000000000, # GSO-Enabled
|
||||
"use_dhcpv6": 0x20000000000, # USE-DHCPv6
|
||||
"rxfcs": 0x40000000000, # RXFCS
|
||||
"no_dhcp_rel": 0x80000000000, # No-DHCP-Release
|
||||
"staged_ifup": 0x100000000000, # Staged-IFUP
|
||||
"http_enabled": 0x200000000000, # Enable HTTP (nginx) service for this port.
|
||||
"ftp_enabled": 0x400000000000, # Enable FTP (vsftpd) service for this port.
|
||||
"aux_mgt": 0x800000000000, # Enable Auxillary-Management flag for this port.
|
||||
"no_dhcp_restart": 0x1000000000000, # Disable restart of DHCP on link connect (ie, wifi).
|
||||
# This should usually be enabled when testing wifi
|
||||
# roaming so that the wifi station can roam
|
||||
# without having to re-acquire a DHCP lease each
|
||||
# time it roams.
|
||||
"ignore_dhcp": 0x2000000000000, # Don't set DHCP acquired IP on interface,
|
||||
# instead print CLI text message. May be useful
|
||||
# in certain wifi-bridging scenarios where external
|
||||
# traffic-generator cannot directly support DHCP.
|
||||
|
||||
"no_ifup_post": 0x4000000000000, # Skip ifup-post script if we can detect that we
|
||||
# have roamed. Roaming is considered true if
|
||||
# the IPv4 address has not changed.
|
||||
|
||||
"radius_enabled": 0x20000000000000, # Enable RADIUS service (using hostapd as radius server)
|
||||
"ipsec_client": 0x40000000000000, # Enable client IPSEC xfrm on this port.
|
||||
"ipsec_concentrator": 0x80000000000000, # Enable concentrator (upstream) IPSEC xfrm on this port.
|
||||
"service_dns": 0x100000000000000, # Enable DNS (dnsmasq) service on this port.
|
||||
}
|
||||
set_port_cmd_flags = {
|
||||
"reset_transceiver": 0x1, # Reset transciever
|
||||
"restart_link_neg": 0x2, # Restart link negotiation
|
||||
"force_MII_probe": 0x4, # Force MII probe
|
||||
"no_hw_probe": 0x8, # Don't probe hardware
|
||||
"probe_wifi": 0x10, # Probe WIFI
|
||||
"new_gw_probe": 0x20, # Force new GW probe
|
||||
"new_gw_probe_dev": 0x40, # Force new GW probe for ONLY this interface
|
||||
"from_user": 0x80, # from_user (Required to change Mgt Port config
|
||||
# (IP, DHCP, etc)
|
||||
"skip_port_bounce": 0x100, # skip-port-bounce (Don't ifdown/up
|
||||
# interface if possible.)
|
||||
"from_dhcp": 0x200, # Settings come from DHCP client.
|
||||
"abort_if_scripts": 0x400, # Forceably abort all ifup/down scripts on this Port.
|
||||
"use_pre_ifdown": 0x800, # Call pre-ifdown script before bringing interface down.
|
||||
}
|
||||
Reference in New Issue
Block a user