faucet.faucet_dot1x module¶
802.1x implementation for FAUCET.
-
class
faucet.faucet_dot1x.
FaucetDot1x
(logger, metrics, send_flow_msgs)[source]¶ Bases:
object
Wrapper for experimental Chewie 802.1x authenticator.
-
create_flow_pair
(dp_id, dot1x_port, nfv_sw_port, acl_manager)[source]¶ Creates the pair of flows that redirects the eapol packets to/from the supplicant and nfv port
Parameters: - dp_id (int) –
- dot1x_port (Port) –
- nfv_sw_port (Port) –
- acl_manager (ValveAclManager) –
Returns: list
-
get_valve_and_port
(port_id)[source]¶ Finds the valve and port that this address corresponds to :param port_id: is a macaddress string
-
nfv_sw_port_up
(dp_id, dot1x_ports, nfv_sw_port, acl_manager)[source]¶ Setup the dot1x forward port acls when the nfv_sw_port comes up. :param dp_id: :type dp_id: int :param dot1x_ports: :type dot1x_ports: Iterable of Port objects :param nfv_sw_port: :type nfv_sw_port: Port :param acl_manager: :type acl_manager: ValveAclManager
Returns: list of flowmods
-
port_down
(dp_id, dot1x_port, nfv_sw_port, acl_manager)[source]¶ Remove the acls added by FaucetDot1x.get_port_acls :param dp_id: :type dp_id: int :param dot1x_port: :type dot1x_port: Port :param nfv_sw_port: :type nfv_sw_port: Port :param acl_manager: :type acl_manager: ValveAclManager
Returns: list of flowmods
-