[SSH]접속툴(telnet/SSH/SFTP)
·
Linux
장점 : PUTTY, SecureCRT 세션을 가져와서 사용, 공짜 MobaXterm(Installer/Portable) - http://mobaxterm.mobatek.net/ -> Configuration UTF-8언어셋 파일수정은 깨짐 Putty - http://www.putty.org/
[KT]Ping Bat
·
Network
@title 00 168.126.63.1(KT) @echo off ping 168.126.63.1 -t C:\WINDOWS\system32\cmd.exe
SSH IP / 계정 차단
·
Network
간혹 특정 서버의 Sucure로그를 보면 해외IP로 무수히 많은 SSH접근을 시도한 흔적이 있었다. 그래서 특정 IP또는 특정 계정만 접속이 가능하도록 설정을 하였다. 먼저 특정 IP만 SSH가 가능하도록 설정을 하기 위해선 일단 SSH를 전부 차단하도록 하자. [root@localhost ~]# vi /etc/hosts.deny sshd : ALL 위 설정으로 모든 호스트(IP)는 ssh 사용이 불가능하다. 이후에 [root@localhost ~]# vi /etc/hosts.allow sshd : xxx.xxx.xxx. : ALLOW (C클래스 단위 ssh접속 허용) sshd : xxx.xxx.xxx.xxx : ALLOW (단일 호스트 ssh 접속허용) hosts.deny와 hosts.allow는 de..