@@ -12,8 +12,8 @@ The following devices are supported by this plugin:
1212* Cisco NX-OS switches (Nexus)
1313* Cumulus Linux (via NCLU)
1414* Cumulus Linux (via NVUE)
15- * Dell Force10
16- * Dell OS10
15+ * Dell Force10 (netmiko_dell_force10)
16+ * Dell OS10 (netmiko_dell_os10)
1717* Dell PowerConnect
1818* HPE 5900 Series switches
1919* Huawei switches
@@ -32,4 +32,49 @@ of any type.
3232
3333These device plugins use `Netmiko <https://github.com/ktbyers/netmiko >`_
3434library, which in turn uses `Paramiko ` library to access and configure
35- the switches via SSH protocol.
35+ the switches via the SSH protocol.
36+
37+ Dell Force10 OS9 (netmiko_dell_force10)
38+ ---------------------------------------
39+
40+ Known working firmware versions: 9.13.0.0
41+
42+ Notes:
43+
44+ * Dell Force10 Simulator for 9.13.0 lacks the ability to set a switchport
45+ mode to trunk, which prevents automated or even semi-automated testing.
46+ That being said, creating VLANs and tagging/untagging works as expected.
47+ * Uplink switchports to the rest of the network fabric must be configured in
48+ advance if the ``ngs_trunk_ports `` switch device level configuration
49+ option is *not * utilized.
50+ * Use of SSH is expected and must be configured on the remote switch.
51+ * Set each port to "switchport" to enable L2 switchport mode.
52+ * Use of an "enable" secret through the switch level configuration option
53+ ``secret `` was the tested path. Depending on precise switch configuration
54+ and access control modeling, it may be possible to use without an enable
55+ secret, but that has not been tested.
56+
57+ Known Issues:
58+
59+ * `bug 2100641 <https://bugs.launchpad.net/ironic/+bug/2100641 >`_ is
60+ alieviated by setting a port to "switchport" *before * attempting to utilize
61+ networking-generic-switch.
62+
63+ Dell Force10 OS10 (netmiko_dell_os10)
64+ -------------------------------------
65+
66+ Known working firmware version: 10.6.0.2.74
67+
68+ Notes:
69+
70+ * Uplink switchports may need to be configured as Trunk ports prior to the
71+ use of networking-generic-switch through a "switchport mode trunk" command.
72+ Further specific trunk configuration may be necessary, however NGS can
73+ leverage the ``ngs_trunk_ports `` configuration option and does appropriately
74+ tag switchports as permitted when creating/deleting attachments.
75+ * Password authentication for networking-generic-switch needs to be setup in
76+ advance, specifically "ip ssh server enable" and
77+ "ip ssh server password-authentication" commands.
78+ * This driver was tested *without * the use of an enable secret to
79+ permit a higher level of configuration access within the Switch.
80+
0 commit comments