This is an old revision of the document!
chttl
chttl
— Temporarily override the system's default TTL.
Make it a function
This was originally written as a bash function. It was changed early on to sh
for POSIX compliance but it was wrapped in a single thing to make it easy to change it back. Simply remove the first and last lines and add the remaining code to your bash functions file(s).
What does it do?
It's a simple wrapper for the command necessary to change the TTL of network packets, which you might need to do when tethering Internet access from the cellular networks of some carriers.
Wouldn't an alias be shorter to do?
Yes, but the command changes across operative systems.
Is there something else?
- This is the first [intentionaly] POSIX-compliant script we've ever written. - It works on macOS, Linux and FreeBSD. - It can be used to set the value back to where it was as well, simply add it at the end. - It's not a permanent modification.
Depending on the OS, you might need to create a file in a specific location or issue a special command that sets preference files.
Syntax
The script takes one or no arguments; any additional argument(s) after the first one should be ignored. When it's run without arguments, it defaults to setting a TTL of 65. e.g;
chttl
If you add any value other than -h
, –help
or -?
it will attempt to set that value as the TTL. There's no validation of the input, but naturally if it's not a numerical value within bounds, it will fail e.g;
Reset to the common value:
chttl 64
or change it to a TTL of 128:
chttl 128
or to 1:
chttl 1
or just add the value anyway:
chttl 65
If the argument does match -h
, –help
or -?
, it'll show a quick short guide and exit e.g;
chttl -h
If you add both types of arguments, it will only consider the first one, thus:
chttl -h 22
should show the quick guide and:
chttl 22 -h
should set the TTL to 22
.
Code download
- chttl
#!/usr/bin/env sh chttl() { chttlhelp(){ cat <<- _help chttl — Temporarily override the system's default TTL. Copyright (C) 2025 Gustavo Domínguez (GPLv3) # $0 Set TTL to 65. # $0 n Set TTL to n. # $0 -h|--help|-? Print this message. Superuser(root)-level privileges are required. _help } chttldo(){ if [ "$(uname)" = Darwin ]; then sysctl net.inet.ip.ttl="${1:-65}" elif [ "$(uname)" = Linux ] ; then sysctl -w net.ipv4.ip_default_ttl="${1:-65}" elif [ "$(uname)" = FreeBSD ] ; then sysctl net.inet.ip.ttl="${1:-65}" elif uname | grep -i "bsd"; then #sysctl net.inet.ip.ttl=65 echo "Run 'sysctl net.inet.ip.ttl=65' if you think it's safe" echo "for this BSD version (only FreeBSD has been tested.)" fi } case "$1" in -h|--help|-?) chttlhelp ;; *) chttldo "$1" ;; esac } chttl "$1"
On Linux systems, you can drop it in the bin
subdirectory of your home folder (~/bin
or $HOME/bin
) to make it available anywhere on the CLI. Don't forget to make it executable first (e.g; chmod +x $HOME/bin/chttl
).