-
라우터 설정하기 -1네트워크 2023. 12. 12. 15:30
% 라우터에서 정보 확인하는 방법
1. Router> en( enable ) : 사용자 모드에서 관리자 모드로 전환
2. 정보 확인(여기서 확인하고 싶은 것들은 치면 된다.)
-show interface : 인터페이스 정보 확인-show user : 접속한 사용자 정보확인
-show ip route : 라우팅 테이블 정보 확인-show flash : 플래쉬 정보 확인
-show process : process 정보를 확인
-show version : 소프트웨어 버전과 IOS버전 등을 확인
3. Router#copy r s( copy running-config startup-config) : 저장 명령어
% 라우터의 전역설정 명령어
-기본게이트웨이 설정 (ex. 기본 게이트웨이를 192.168.0.10으로 설정)
1. Router> en( enable ) : 사용자 모드에서 관리자 모드로 전환
2. Router#conf t( conf terminal ) : 전역설정모드로 진입
3. Router(config)#ip default-gateway 192.168.0.10 (게이트웨이 주소를 192.168.0.10으로 설정)
4. Router(config)#exit (전역설정모드 나가기)
5. Router#copy r s( copy running-config startup-config) : 저장 명령어
- hostname (ex. hostname을 ICQA로 변경)
1. Router> en( enable ) : 사용자 모드에서 관리자 모드로 전환
2. Router#conf t( conf terminal ) : 전역설정모드로 진입3. Router(config)#hostname ICQA (hostname을 ICQA로 변경하였다)
4. Router(config)#exit (전역설정모드 나가기)
5. Router#copy r s( copy running-config startup-config) : 저장 명령어-default-network(ex. default-network를 192.168.0.10으로 설정)
1. Router> en( enable ) : 사용자 모드에서 관리자 모드로 전환
2. Router#conf t( conf terminal ) : 전역설정모드로 진입3. Router(config)# ip default-network 192.168.0.10 (default-network을 192.168.0.10 로 변경하였다)
4. Router(config)#exit (전역설정모드 나가기)
5. Router#copy r s( copy running-config startup-config) : 저장 명령어-domain-name( ex. domain-name을 ICQA로 변경)
1. Router> en( enable ) : 사용자 모드에서 관리자 모드로 전환
2. Router#conf t( conf terminal ) : 전역설정모드로 진입3. Router(config)# ip domain-name ICQA (domain-name을 ICQA로 변경하였다)
4. Router(config)#exit (전역설정모드 나가기)
5. Router#copy r s( copy running-config startup-config) : 저장 명령어-DHCP (ex. DHCP 네트워크를 192.168.100.0/24로 설정하고 서버이름은 ICQA로 설정하시오)
1. Router> en( enable ) : 사용자 모드에서 관리자 모드로 전환
2. Router#conf t( conf terminal ) : 전역설정모드로 진입3. Router(config)# ip dhcp pool ICQA (dhcp 서버이름을 ICQA로 변경하였다)
4. Router(dhcp-config)#network 192.168.100.0 255.255.255.0 (DHCP을 192.168.100.0과 서브넷마스크 255.255.255.0 으로 변경하였다)5. Router(dhcp-config)#exit (dhcp에서 나가기)
6. Router(config)#exit (전역설정모드 나가기)
7. Router#copy r s( copy running-config startup-config) : 저장 명령어'네트워크' 카테고리의 다른 글
OSI 7계층과 TCP/IP 4계층 (1) 2024.01.09 라우터 (1) 2024.01.03 네트워크 정리 (1) 2024.01.03 라우터 설정하기-2 (0) 2023.12.14