This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
linux/.config/bash/module/fix.sh

19 lines
539 B
Bash
Raw Normal View History

2023-08-08 16:24:15 +03:00
# fix when ethernet mistakenly detects 100 Mb instead of 1000 Mb.
2023-10-30 03:49:10 +03:00
# usage: fix_ethernet_speed <DEVICE> <SPEED>
# SPEED is one of 10/100/1000 etc.
2023-12-05 23:56:04 +03:00
fix_ethernet_speed() {
2023-12-05 21:50:45 +03:00
local device="${1}"
local speed="${2}"
2023-08-08 16:24:15 +03:00
2023-12-05 21:50:45 +03:00
if [[ "${device}" = "" || "${speed}" = "" ]]; then
echo "usage: fix_ethernet_speed <DEVICE> <SPEED>"
return 2
fi
2023-08-08 16:24:15 +03:00
2023-12-05 21:50:45 +03:00
ethtool -s "${device}" speed "${speed}"
2023-08-08 16:24:15 +03:00
}
# fix files wrong sftp password.
# alias fix_files_sftp="secret-tool clear protocol sftp server 192.168.1.2"
alias fix_files_sftp="secret-tool clear protocol sftp"