Three commands to get CAcert certificate

On UNIX box (I am doing on Linux, actually), run these commands, fill out appropriate information then keep the files generated. You may change file names as needed. From the following example, you have to keep server.csr to request certificate at CAcert.org and privatekey.txt to put it into server configuration. Upon the issuance of certificate, you can name it as you like (eg. certificate.crt)

  • openssl genrsa -des3 -out ca.pkey.txt 1024
  • openssl rsa -in ca.pkey.txt -out privatekey.txt
  • openssl req -new -key ca.pkey.txt -out server.csr

네트워크 사용량 모니터링 하기 (vnstat)

호스트 내의 네트워크 사용량을 보여 줍니다.

CentOS의 경우 아래 링크를 참조하여 RPMforge를 설치합니다.

http://wiki.centos.org/AdditionalResources/Repositories/RPMForge

YUM을 이용해 vnstat을 설치합니다.

yum install vnstat

설치 후 아래 파일을 열어 nobdy를 root로 바꿉니다.

/etc/cron.d/vnstat

아래 파일을 열어 네트워크 인터페이스를 설정합니다. (ifconfig에 보여지는 인터페이스 이름을 넣으면 됩니다.)

/etc/sysconfig/vnstat

cron을 재시작 합니다.

/etc/init.d/crond restart

위와 같이 설치하면 매 오분 마다 네트워크 트래픽를 수집하고, 명령 창에서 vnstat이라고 치면 위의 화면과 같이 네트워크 트래픽 상태를 보여줍니다.