분류 전체보기(313)
-
칼리 리눅스 설치
apt-get update error 1. rm -rf /var/lib/dpkg/lock 2. rm -rf /var/cache/apt/archives/lock 3. apt-get update error vi /etc/apt/sources.list deb http://httpredir.debian.org/debian jessie main non-free contrib 추가 1. rm -rf /var/lib/apt/lists/lock 2. rm -rf /var/cache/apt/archives/lock 3. rm -rf /var/lib/dpkg/lock* 4. dpkg --configure -a 5. apt-get update apt-get upgrade apt-get dist-upgrade 추가설치 한글설..
2020.05.19 -
Centos 7 DHCP SERVER
Centos 7 DHCP SERVER 1. 패키지 설치 2. 환경설정 3.데몬실행 4.동작확인 cd /etc/dhcp ls cat dhcp.conf gedit dhcp.conf cp /usr/share/doc/dhcp*/dhcp.conf.example ./dhcpd.conf y gedit dhcp.conf cd /var/lib/dhcpd/ ls systemctl status dhcpd systemctl start dhcpd gedit dhcpd.leases ~(덤프파일 원본 파일 백업->rm -f dhcpd.leases~) cat dhcpd.leases yum install -y dhcp ------- 환경설정 cd /etc/dhcp ls gedit dhcpd.conf default-lease-time ..
2020.05.19 -
EIGRP rip 연결
[R1] conf t int f0/0 ip add 172.16.1.254 255.255.255.0 no shutdown int s2/0 ip add 172.16.12.1 255.255.255.0 no shutdown int s2/1 ip add 172.16.13.1 255.255.255.0 no shutdown int s2/2 ip add 192.168.12.1 255.255.255.0 no shutdown router eigrp 1 no auto-summary network 172.16.1.0 0.0.0.255 network 172.16.12.0 0.0.0.255 network 172.16.13.0 0.0.0.255 network 192.168.12.0 0.0.0.255 redistribute rip ..
2020.05.17 -
클라우드-02
오른쪽 클라우드 연결 포트 왼쪽 클라우드 포트 연결 클라우드 연결 랩 conf t int f0/0 ip add 192.168.19.2 255.255.255.0 no shutdown exit int f1/0 ip add 192.168.29.1 255.255.255.0 no shutdown exit router rip network 192.168.19.0 network 192.168.29.0 exit
2020.05.17 -
RIP-STATIC 재분배-02
위와같이 랩을 짜면 핑이 제대로 통하지 않는다. 그이유는 R1~R3은 RIP 방식으로 라우팅을 하지만 R4는 혼자 정적 라우팅을 하기 때문이다. 이것은 프랑스어와 스페인어를 쓰는사람이 서로 말이 통하지 않아 소통이 불가능한 상황과 같다고 보면 된다. STATIC RIP EIGRP OPSF BGP STATIC - O O O O RIP O - O O O EIGRP O O - O O OSPF O O O - O BGP O O O O - 이것이 재분배(번역)이 필요한 표이다. -는 같은 언어니까 번역할 필요가 업고, 서로 다른 프로토콜끼리는 번역이 필요하기 때문에 O를 표시해 놓은 것이다. 무튼 위의 랩에서 이러한 것을 해결하기 위해서는 Redistribute static 명령어를 사용하여 디폴트 루트를 인접한 ..
2020.05.17 -
수동 서머리-02
[RIP Version 2] RIP version 1과 RIP version 2의 차이점은 다음과 같다. RIP version 2는 멀티캐스트 주소 224.0.0.9를 사용한다. RIP version 2는 auto-summary를 중지 시킬 수가 있다.(classless 방식) RIP version 2는 클래스리스를 지원하기 때문에 VLSM 방식을 사용할 수가 있다. RIP version 2는 수동 서머리를 하여 라우팅 테이블을 줄일 수가 있다. RIP version 2는 인증을 사용하여 보다 강화된 네트워크를 구성할 수가 있다. 네트워크 관리자가 직접 ip를 축약해서 정보를 보내주는 것을 수동 서머리라고 한다. [R1] conf t int loopback 0 ip add 172.16...
2020.05.17