installing iperf3 and make it start at boot on a ubuntu server.
install iperf3:
sudo apt-get install iperf3
start iperf3 server at startup
| import base64 | |
| import scrypt | |
| import os | |
| import random | |
| # password | |
| password = "hashcat" | |
| # translation table | |
| base64chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/" |
installing iperf3 and make it start at boot on a ubuntu server.
install iperf3:
sudo apt-get install iperf3
start iperf3 server at startup
Requirements:
Can leverage rpcap (remote packet capture) protocol supported by Wireshark to capture raw wireless frames from the WLAN NIC used by the WLAN Pi. This can be leveraged to do a packet capture from a WLAN Pi in a remote location.
ZeroTier (ZT) is open source and free to use for most cases (commercial/proprietary use makes it not free).
It's a network virtualization platform that lets you connect to your devices with automatic end-to-end encryption. Think of it conceptually like a VPN, SDN, and SD-WAN all in one.
Create and verify an account over at https://my.zerotier.com/
Create a network https://my.zerotier.com/network
A few fonts for coding or your terminal to consider using:
Fonts:
Resources:
I hereby claim:
To claim this, I am signing this object:
Prep:
Create a symlink to the AirPort command in Terminal:
ln -s /System/Library/PrivateFrameworks/Apple80211.framework/
Versions/Current/Resources/airport /Usr/bin/airport
# test utility
airport -I
it's a terminal multiplexer that allows access to multiple terminal sessions in a single window. so, you can split terminals into panes. you can move, resize, and switch between them.
it's also useful for detaching processes from the controlling terminal. so, a SSH session can remain active without actually being visible. i recommend using tmux if you're doing remote work via ssh.
install tmux with sudo apt install tmux.
| " global yanking with the OS clipboard | |
| set clipboard=unnamed | |
| " make the arrow keys do something useful, resize the viewports accordingly. | |
| nnoremap <Left> :vertical resize +2<CR> | |
| nnoremap <Right> :vertical resize -2<CR> | |
| nnoremap <Up> :resize -2<CR> | |
| nnoremap <Down> :resize +2<CR> | |
| syntax on " enable syntax highlighting |