본문 바로가기
728x90
반응형

Network/Router5

Router RIP 설정 방법 Router RIP 설정 방법 입니다. 1. 라우팅 설정모드 진입 R1(config)# router rip 2. RIPv2 설정 R1(config-router)# version 2 3. 광고할 네트워크 설정(인접 네트워크) R1(config-router)# network [광고할 네트워크 주소] ex) network 62.62.12.0 ex) network 10.10.10.0 4. Classless Routing 설정(Network, Subnetmask, Hop Count) R1(config-router)# no auto-summary 5. [Option] 패시브 인터페이스(광고하지 않을 인터페이스) 설정 R1(config-router)# passive-interface fa 0/0 default-inf.. 2021. 11. 11.
Router DHCP 설정 ###DHCP 서버 설정#### 1. DHCP 서버용 IP 지정 Router(config)# ip dhcp-server [서버용 IP] 2. DHCP pool 생성 Router(config)# ip dhcp pool [pool이름] Router(config)# -> network(할당 범위) : 네트워크 단위로만 설정 가능 -> default-router(기본 경로) : Gateway 설정 -> dns-server(DNS 서버 주소) : DNS Server의 IP 주소 Router(config)# ip dhcp excluded-address [초기][끝] : 네트워크 할당 대상 제외 ip dhcp excluded-address 명령어로 게이트웨이 주소와 브로드캐스트 주소를 할당 제외 시킴(IP충돌남)} .. 2021. 11. 1.
Router Static 설정 Router Staitc 설정 예시와 예시를 수행하기 위한 설정값입니다. ip route 명령을 이용하여 설정하였고, PC1과 PC2만 통신 / PC1과 PC3만 통신 / PC2와 PC만 통신 / 모두 통신 4가지 환경을 구현했습니다. PC1 PC2 PC1 ip 1.1.1.1/24 1.1.1.254 PC2 ip 2.2.2.2/24 2.2.2.254 R1 en conf t int f0/0 ip addr 1.1.1.254 255.255.255.0 no sh int f0/1 ip addr 192.168.0.1 255.255.255.252 no sh exit ip route 2.2.2.0 255.255.255.252 192.168.0.2 R2 en conf t int f0/0 ip addr 192.168.0.2.. 2021. 11. 1.
시스코 라우터 초기화 router>enable router#>show running-config //config 설정 확인 -> 필요 config 백업 router#>erase startup-config //초기 설정파일 삭제 Erasing the nvram filesystem will remove all configuration files! Continue?[confirm] // Enter로 진행 [OK] Erase of nvram : complete router#>write erase //config 설정 초기화 Erasing the nvram filesystem will remove all configuration files! Continue?[confirm] // Enter로 진행 [OK] Erase of nvram .. 2021. 10. 5.
시스코 라우터 초기 설정 명령어 약어 설명 Router> enable Router# configure terminal Router(config)# hostname R1 R1(config)# enable secret qwer12#$ R1(config)# no ip domain-lookup R1(config)# line console 0 R1(config-line)# password qwer12#$ R1(config-line)# login R1(config-line)# exec-timeout 0 R1(config-line)# logging synchronous R1(config-line)# exit R1(config)# line vty 0 4 R1(config-line)# password qwer12#$ R1(config-line).. 2021. 10. 1.
반응형