DDoS공격 방지 iptables

2012년 08월 26일 golgol 0

참조: http://cafe.naver.com/asterisker/1497 DDoS공격으로 의외로 피해를 많이보고있는 현실입니다. 그렇다고 무조건 공격당할수는 없겠죠..그래서 웹민에 디도스공격방어를 할수있는 설정화면을 넣었습니다. 완전한 방어법은 아니지만 어느정도 효과는 있더라구요 리눅스에서도 해주면 되겠지만 […]

SSH 원격이 안될때

2012년 08월 22일 golgol 0

debug 참조 :http://www.thegeekstuff.com/2011/06/iptables-rules-examples/ Ubuntu // ssh 없을시 1. 설치 $ sudo apt-get install ssh 2. 포트 변경 $ sudo vi /etc/ssh/sshd_config # port 22 […]

ssh 포트 변경

2012년 08월 22일 golgol 0

Remark : ssh 접속 포트 22 을 다른 포트 26022 로 변경해 보자 1. /etc/services 파일내용을 아래와 같이 ftp와 ssh 포트를 변경함.

2. /etc/ssh/sshd_config […]

shell 의 종류 및 추가

2012년 08월 21일 golgol 0

cat /etc/shells    —- shells 보기 /bin/sh – 본쉘 /bin/bash – Bourne Again shell /bin/tcsh – TC쉘 /bin/csh – C쉘 /bin/ksh – 콘쉘   1. […]

iptables -L command not found

2012년 08월 20일 golgol 0

iptables -L command not found => su 사용하지 말고 su – 로 root 계정로그인 su 는 root 권한에 포함되어 있는 환경변수는 하나도 가져오지 않습니다. 엄청난 […]

find 명령어

2012년 08월 19일 golgol 0

find /usr/include |xargs grep scoketaddr_in = grep으로 두단어 검색? (1) 자신의 홈 디렉토리에서 확장자가 .txt’인 파일을 찾을 경우 find ~ -name ‘*.txt’ (2) 현재 디렉토리 […]

phpmyadmin 에러들

2012년 08월 19일 golgol 0

The configuration file now needs a secret passphrase (blowfish_secret). vi /usr/share/phpmyadmin/config.inc.php $i++; /* Authentication type */ $cfg[‘blowfish_secret’]=’cookie’; $cfg[‘Servers’][$i][‘auth_type’] = ‘cookie’; /* Server parameters */ $cfg[‘Servers’][$i][‘host’] […]

phpMyadmin 설치

2012년 08월 19일 golgol 0

# yum -y install php* php-* 참조 블로그 http://packages.sw.be/rpmforge-release/ 각 운영체제에 맞는 rpmforge-release 파일이 있습니다.. CentOS 가 아니라면 확인해보시고.. 운영체제에 맞는 걸로 받으시면 됩니다.. 우선 […]