diff options
-rwxr-xr-x | scripts/.scripts/ssh.sh | 23 | ||||
-rwxr-xr-x | zsh/.zsh/aliases.zsh | 5 |
2 files changed, 21 insertions, 7 deletions
diff --git a/scripts/.scripts/ssh.sh b/scripts/.scripts/ssh.sh index 8bd7596..7116490 100755 --- a/scripts/.scripts/ssh.sh +++ b/scripts/.scripts/ssh.sh @@ -1,10 +1,23 @@ #!/bin/sh -sudo -if [[ $1 == "enable" ]]; then - sed -i -e 's/#ListenAddress ::\nListenAddress 127.0.0.1/#ListenAddress ::/g' /etc/ssh/sshd_config -elif [[ $1 == "disable" ]]; then - sed -i -e '/ListenAddress 127.0.0.1/d' /etc/ssh/sshd_config +#By default the sshd listen only for local connection. + +if [[ $1 == "disable" ]]; then + if [[ $(cat /etc/ssh/sshd_config | grep -e "^ListenAddress") == "" ]]; then + sudo sed -i -e 's/#ListenAddress ::/#ListenAddress ::\nListenAddress 127.0.0.1/g' /etc/ssh/sshd_config + sudo systemctl restart sshd.service + fi + echo "sshd listen now only for local address 127.0.0.1." +elif [[ $1 == "enable" ]]; then + sudo sed -i -e '/ListenAddress 127.0.0.1/d' /etc/ssh/sshd_config + sudo systemctl restart sshd.service + echo "sshd listen now for all address." +elif [[ $1 == "status" ]]; then + echo $(sudo systemctl status sshd.service) + echo "sshd conf say:" + echo $(cat /etc/ssh/sshd_config | grep -e "^ListenAddress") +elif [[ $1 == "start" || $1 == "stop" || $1 == "restart" ]]; then + sudo systemctl $1 sshd.service fi sudo -k diff --git a/zsh/.zsh/aliases.zsh b/zsh/.zsh/aliases.zsh index 1998493..35faf61 100755 --- a/zsh/.zsh/aliases.zsh +++ b/zsh/.zsh/aliases.zsh @@ -68,7 +68,8 @@ alias lol="base64 </dev/urandom | lolcat" alias pacman="sudo pacman" alias update="yaourt -Syua" #alias :q="poweroff" -alias off="timew stop @1; poweroff" +alias off="sshs disable; timew stop @1; poweroff" +alias sshs="~/.scripts/ssh.sh" alias dldstart="systemctl --user start aria2d.service" alias dldstop="systemctl --user stop aria2d.service" alias dldstatus="systemctl --user status aria2d.service" @@ -127,7 +128,7 @@ alias cal="ikhal" alias cals="vdirsyncer sync linuxmaine && vdirsyncer sync haum && ikhal" alias calsync="vdirsyncer sync perso && vdirsyncer sync pro && vdirsyncer sync imie" alias mm="offlineimap && neomutt" -alias reboot="sudo reboot" +alias reboot="sshs disable; timew stop @1; sudo reboot" alias terminus="~/Apps/terminus-pantheon/vendor/bin/terminus" alias ncmpcpphaum="ncmpcpp -h sulfur" |