Skip to content

Commit

Permalink
Added iperf3 to misc rpm install
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsimcall committed Aug 16, 2017
1 parent 3d414df commit 61e68b6
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 0 deletions.
1 change: 1 addition & 0 deletions gluster-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,5 +203,6 @@
- sg3_utils
- nfs-utils
- ipmitool
- iperf3
tags:
- misc
4 changes: 4 additions & 0 deletions ipmitool-tricks.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

# Check power status (on, off, cycle, soft, status)
ipmitool -I lanplus -H $IPMI_ADDR -U $IPMI_USER -P $IPMI_PASS chassis power status

79 changes: 79 additions & 0 deletions nmcli_make_bond.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
######### psosd1 #########
nmcli con add type bond ifname bond0 mode 802.3ad \
connection.id lacp-bond \
connection.autoconnect no \
connection.autoconnect-slaves 1 \
+bond.options "xmit_hash_policy=layer3+4" \
ipv4.method static \
ipv4.addresses 10.10.10.10/24 \
ipv6.method ignore

nmcli con add type ethernet ifname enp2s0f0 master bond0 \
connection.id lacp-enp2s0f0 \
connection.autoconnect no \
802-3-ethernet.mtu 9000

nmcli con add type ethernet ifname enp2s0f1 master bond0 \
connection.id lacp-enp2s0f1 \
connection.autoconnect no \
802-3-ethernet.mtu 9000

######### psosd2 #########
nmcli con add type bond ifname bond0 mode 802.3ad \
connection.id lacp-bond \
connection.autoconnect no \
connection.autoconnect-slaves 1 \
+bond.options "xmit_hash_policy=layer3+4" \
ipv4.method static \
ipv4.addresses 10.10.10.11/24 \
ipv6.method ignore

nmcli con add type ethernet ifname ens2f0 master bond0 \
connection.id lacp-ens2f0 \
connection.autoconnect no \
802-3-ethernet.mtu 9000

nmcli con add type ethernet ifname enp2s0f1 master bond0 \
connection.id lacp-enp2s0f1 \
connection.autoconnect no \
802-3-ethernet.mtu 9000

######### psosd3 #########
nmcli con add type bond ifname bond0 mode 802.3ad \
connection.id lacp-bond \
connection.autoconnect no \
connection.autoconnect-slaves 1 \
+bond.options "xmit_hash_policy=layer3+4" \
ipv4.method static \
ipv4.addresses 10.10.10.12/24 \
ipv6.method ignore

nmcli con add type ethernet ifname enp2s0f0 master bond0 \
connection.id lacp-enp2s0f0 \
connection.autoconnect no \
802-3-ethernet.mtu 9000

nmcli con add type ethernet ifname enp2s0f1 master bond0 \
connection.id lacp-enp2s0f1 \
connection.autoconnect no \
802-3-ethernet.mtu 9000

########## ps6 #########
nmcli con add type bond ifname bond0 mode 802.3ad \
connection.id lacp-bond \
connection.autoconnect no \
connection.autoconnect-slaves 1 \
+bond.options "xmit_hash_policy=layer3+4" \
ipv4.method static \
ipv4.addresses 10.10.10.51/24 \
ipv6.method ignore

nmcli con add type ethernet ifname enp2s0f0 master bond0 \
connection.id lacp-enp2s0f0 \
connection.autoconnect no \
802-3-ethernet.mtu 9000

nmcli con add type ethernet ifname enp2s0f1 master bond0 \
connection.id lacp-enp2s0f1 \
connection.autoconnect no \
802-3-ethernet.mtu 9000

0 comments on commit 61e68b6

Please sign in to comment.