This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OSX (that I run) it’s: | |
ping -D -s 8184 [destinationIP] | |
On Linux it’s: | |
ping -M do -s 8972 [destinationIP] | |
On Windows it’s: | |
ping -f -l 9000 [destinationIP] | |
If you’ve forgotten to enable jumbo frames/9k MTU on your client device you’re sending the ping from you’ll see: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Red Hat Enterprise Linux Server release 7.2 (Maipo) - Linux 3.10.0-327.el7.x86_64 | |
# StorNext File System Client: | |
## Client Revision 5.3.2.1 Build 64849 Branch branches_5.3.2.1 BuildId A | Built for Linux 3.10.0-121.el7.x86_64 x86_64 | |
## File: snfs_client_RedHat7_x86_64.bin | MD5: 74a80625170e85089b39c351fb4fe246 | |
# Troubleshooting: StorNext File System Client 5.3.2.1 - Kernel PANIC | |
# kdump | vmcore-dmesg.txt: | |
[ 675.569471] CVFS: Linux Interface Verification | |
[ 675.569476] CVFS: Build kernel level = "3.10.0-121.el7.x86_64" | |
[ 675.569477] CVFS: Install kernel level = "3.10.0-327.el7.x86_64" | |
[ 675.569479] CVFS: Linux Interface Verification Complete, 12 items. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CentOS Linux release 7.2.1511 (Core) | |
# Python 2.7.5 | |
# Ansible Version | |
# 1.9.4 | |
# Ansible Installation Method | |
# yum | |
# Tower Version | |
# 2.4.3 | |
# Troubleshooting: Ansible Tower - Project - External SCM vs HTTP_PROXY | |
# Error messages: "unable to access 'https://github.com/ansible/tower-example.git/': Failed connect to github.com:443; Connection timed out" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CentOS Linux release 7.2.1511 (Core) | |
# Python 2.7.5 | |
# Ansible Version | |
# 1.9.4 | |
# Ansible Installation Method | |
# yum | |
# Tower Version | |
# 2.4.3 | |
# Troubleshooting: Ansible Tower - Cross-Origin Request Blocked (CentOS 7.2.1511 - Python 2.7.5) | |
# Error messages: "Live events: error connecting to the Tower server." OR "Socket error: connection refused by host" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# ^^^ YAML documents must begin with the document separator "---" | |
# | |
#### Example docblock, I like to put a descriptive comment at the top of my | |
#### playbooks. | |
# | |
# Overview: Playbook to bootstrap a new host for configuration management. | |
# Applies to: production | |
# Description: | |
# Ensures that a host is configured for management with Ansible. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
##################################################################### | |
## IMPORTANT ## | |
# Run this script with root (sudo su -), wont work if run as sudo. | |
# Change the variables as needed. | |
###################################################################### | |
USER=youruser # User that will have ownership (chown) to /usr/local/bin and /usr/local/lib | |
USERHOME=/home/${USER} # The path to the users home, in this case /home/youruser | |
PYSHORT=3.6 # The Python short version, e.g. easy_install-${PYSHORT} = easy_install-3.6 | |
PYTHONVER=3.6.1 # The actual version of python that you want to download from python.org |
NewerOlder