본문 바로가기

보안과정/참고12

SAN(Storage Area Network) FS-SAN(Fibre Channel Storage Area Network) SAN - 서버 및 공유 스토리지 디바이스로 구성된 전용 고속 네트워크 > 중앙 집중식 스토리지 및 관리> 블록 레벨의 여러서버 간 스토리지 리소스 공유지원> 더욱 경제적인 확장이 가능하므로 증가하는 스토리지 요구를 능률적으로 충족> 일반적인 SAN 구축>> FS SAN : 통신에 FS 프로토콜 사용>> IP SAN : 통신에 IP 기반 프로토콜 사용 > 요즘 나오는 서버들은 디스크를 많이 붙여야 최대가 8장이다. 그래서 스토리지에서 끌어올 수 밖에 없다.> 가령 클라우드 환경을 쓴다고 가정하면, 컴퓨터들은 물리적인 머신이 있고 운영체제가 없다.> 그래서 큰 스토리지 하나에 운영체제 등 모두 담겨 있어서 컴퓨터들로 쏴주는 것이다.. 2017. 12. 29.
공유 메모리 관련 함수에 대하여 shmget() 함수shmat() 함수shmdt() 함수 ○ shmget() NAME shmget - allocates a shared memory segment SYNOPSIS #include #include int shmget(key_t key, size_t size, int shmflg); DESCRIPTION shmget() returns the identifier of the shared memory segment associated with the value of the argument key. A new shared memory segment, with size equal to the value of size rounded up to a multiple of PAGE_SIZE, is crea.. 2017. 11. 30.
변수의 메모리 배치 확인과 GDB 사용법 사용시스템 : HackMeID : level9PASS : apple ○ 변수의 메모리 배치> 변수의 메모리 배치를 확인하기 위해서 프로그램을 만들어 보자 $ cd tmp $ vi distance.c12345678910111213141516171819202122232425262728#include int main(){ char AA; char strAA[1]; char strBB[2]; char strCC[3]; char strDD[5]; char strEE[9]; char strFF[17]; printf("AA's address: 0x%x, sizeof: 0x%x\n", &AA, sizeof(AA)); printf("strAA[1]'s address: 0x%x, sizeof: 0x%x, distance:.. 2017. 11. 30.
아스키 코드표 2017. 11. 29.