"Switch"의 두 판 사이의 차이

오픈소스 비즈니스 컨설팅
둘러보기로 가기 검색하러 가기
(새 문서: Switch 장비를 정리 합니다. == CLI == == 참고 문헌 == Category:Network)
 
잔글
 
(같은 사용자의 중간 판 8개는 보이지 않습니다)
1번째 줄: 1번째 줄:
 
Switch 장비를 정리 합니다.
 
Switch 장비를 정리 합니다.
  
== CLI ==
+
== Switch 명령어 ==
 +
 
 +
Tab : 명령어 자동 완성
 +
 
 +
? : 입력 가능한 명령어 표시
 +
 
 +
=== 설정 조회 ===
 +
<pre>show version
 +
show running-config
 +
show history
 +
show clock
 +
show interface trunk
 +
show vtp status
 +
show spanning-tree
 +
 
 +
show arp                            #--- ARP table 조회
 +
show mac-address-table              #--- MAC table 조회
 +
show vlan                            #--- show vlan-switch
 +
show vlan brief                      #--- show vlan-switch brief
 +
</pre>
 +
 
 +
=== 모드&nbsp;전환 ===
 +
<pre>enable                              #--- en, 관리자 모드 (Prompt&nbsp;: Switch> )
 +
disable                              #--- 사용자 모드 (Prompt&nbsp;: Switch# )
 +
 
 +
configure terminal                  #--- conf t, 설정 모드
 +
  interface FastEthenet 0/0          #--- 인터페이스 모드
 +
exit                                #--- 설정 모드에서 빠져 나오기
 +
</pre>
 +
=== 초기화 ===
 +
<pre>enable
 +
del vlan.dat
 +
erase startup-config
 +
reload
 +
</pre>
  
 
== 참고 문헌 ==
 
== 참고 문헌 ==
  
[[Category:Network]]
+
*[http://hoyoung2.tistory.com/52 http://hoyoung2.tistory.com/52]
 +
*[http://blog.kim82536.pe.kr/9 http://blog.kim82536.pe.kr/9]
 +
*http://blog.naver.com/PostView.nhn?blogId=whalsrb100&logNo=220427388025
 +
[[Category:Network|Category:Network]]

2015년 10월 30일 (금) 13:27 기준 최신판

Switch 장비를 정리 합니다.

Switch 명령어

Tab : 명령어 자동 완성

? : 입력 가능한 명령어 표시

설정 조회

show version
show running-config
show history
show clock
show interface trunk
show vtp status
show spanning-tree

show arp                             #--- ARP table 조회
show mac-address-table               #--- MAC table 조회
show vlan                            #--- show vlan-switch
show vlan brief                      #--- show vlan-switch brief

모드 전환

enable                               #--- en, 관리자 모드 (Prompt : Switch> )
disable                              #--- 사용자 모드 (Prompt : Switch# )

configure terminal                   #--- conf t, 설정 모드
  interface FastEthenet 0/0          #--- 인터페이스 모드
exit                                 #--- 설정 모드에서 빠져 나오기

초기화

enable
del vlan.dat
erase startup-config
reload

참고 문헌