본문 바로가기

전체 글198

10. RIPv2 (추가 설정값 지정) RIPv2 (Routing Internet Protocol version2, 인접 라우터) : 기본 설정 ; 각 라우터의 enable 암호는 'cisco'로 한다. ; bandwidth는 1024kbps로 한다. bandwidth 1024 (interface serial에서) ; encapsulation은 HDLC로 한다. encapsulation HDLC (interface serial에서) 0. bandwidth(대역폭) -> DCE에서 설정한다. -> Serial 구간(라우터와 외부망 연결)의 대역폭을 지정한다. -> 입력은 다음과 같이 하면 된다. (기본 단위는 kbps) # conf t # interface serial 0/0 # bandwidth 1024 # no shutdown # exit .. 2022. 5. 21.
9. Dynamic Routing (RIPv2) 0. Dynamic Routing - 개요 : Routing 3단계 중 3단계인 '라우팅 프로토콜'에 해당 : 라우터에 의해 '자동적으로 학습'한 원격 네트워크로 향하는 경로 : 네트워크 정보를 교환하여 '최적의 경로를 결정'하고 라우팅 테이블을 지속적으로 유지 : 하나의 경로가 결정되면 라우터는 'Routed Protocol'들을 라우팅 할 수 있다 - 프로토콜 종류 : Routed Protocol ; 라우팅이 되는 동안 (라우터끼리 학습한 내용을 교환하는 동안) 변화가 없는 프로토콜 ; 종류로는 IP, IPX 등이 있다. (공인 IP - Static, 유동 IP - DHCP, 사설 IP - NAT) 유동IP여도 Switch가 End Device의 MAC 주소를 학습하여 동일한 IP를 할당함 : Rou.. 2022. 5. 21.
8. 원격 서비스를 이용한 Router 관리(Telnet, SSH) 0. Telnet : 개요 ; 패킷 전송 시 평문 형태로 전송이 되기 때문에 보안에 매우 취약 ; 도청(sniffing)에 매우 취약 : 라우터 설정 R1>enable R1#configure terminal R1(config)#enable password cisco1 : 관리자 모드 비번 R1(config)#line vty 0 4 : 원격접속기능 활성 가상터미널 설정 R1(config-line)#password cisco2 : telnet 접속을 위한 비번 R1(config-line)#login : 명령어 활성화 R1(config-line)#exit R1(config)#exit R1# : PC 접속 PC1의 command prompt에서 라우터의 외부망에 접속 테스트 : ping 201.100.10.1 .. 2022. 5. 21.
7. Static Routing (실습 1) 1단계 - 기본설정 Router>enable Router#configure terminal Router(config)#no ip domain lookup Router(config)#line console 0 Router(config-line)#exec-timeout 0 0 Router(config-line)#logging synchronous Router(config-line)#exit Router(config)#hostname R1 2단계 - 라우팅 테이블 설정 R1(config)#interface loopback 0 R1(config-if)#ip address 100.1.1.1 255.255.255.0 R1(config-if)#exit R1(config)#interface serial 0/0 R1(c.. 2022. 5. 21.
4. 기본 자료형 (Boolean, 문자, 문자열) 0. Boolean 자료형 package variable; import java.lang.*; public class Test04 { public static void main(String[] args) { boolean a = true; System.out.println(a); // true System.out.println(10 == 5); // false a = 10 > 5; System.out.println(a); // true System.out.println("======================================================"); System.out.println(10 > 0 || 10 < 50); //true System.out.println(10 < 0 ||.. 2022. 5. 20.