[router] 라우터 기초 설정
● 라우터 기초 설정
1. 특권 모드로 이동 명령
Router> enable (en)
Router#
2. 사용자 모드로 이동 명령
Router# disable (dis)
Router>
3. 전역설정 (global configuration mode)
Router# configure terminal (conf t)
Router(Config)#
설정 모드에서 빠져나오기
Router(Config)# end
4. 패스트 이더넷 포트에 IP 주소 설정하기
Router(Config)# int fa0/1 //설정 할 포트
Router(Config-if)# ip addr 192.168.1.1 255.255.255.0 //아이피 주소 서브넷마스크
Router(Config-if)# end
Router#
5. Ping 테스트
Router> ping 192.168.1.100
!!!!!
6. 라우팅 테이블 확인
Router# show ip route
--------------------------------------------------------------------
Router#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, ia - IS-IS inter area
* - candidate default, U - per-user static route, o - ODR
P - periodic downloaded static route
Gateway of last resort is not set
C 192.168.0.0/24 is directly connected, FastEthernet0/0
C 192.168.1.0/24 is directly connected, FastEthernet0/1
S 192.168.2.0/24 [1/0] via 192.168.3.1
C 192.168.3.0/24 is directly connected, Serial0/0
--------------------------------------------------------------------
Static 라우터
Router#
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#ip route 192.168.2.0 255.255.255.0 192.168.3.1
//network(PC 네트워크주소),submask(서브마스크),nexthop(다음 라우터 IP ADDRESS)
Router(config)#
'네트워크' 카테고리의 다른 글
[router] Secret 패스워드 (0) | 2013.09.06 |
---|---|
[router] console 모드 패스워드 설정 (0) | 2013.09.06 |
[switch] 아이피 셋팅 (0) | 2013.09.04 |
L3 기능 요약 정리 (0) | 2013.09.01 |
[네트워크] L2 기능 요약 정리 (0) | 2013.08.14 |