티스토리 뷰
유비쿼스(Ubiquoss) 스위치 기본 명령어
- Hostname 설정
Switch# conf t
Switch(config)# hostname XXXXX (한글 , 영문 , 기호 설정 가능 , 최대 63자)
Switch(config)# no hostname
- 로그인 계정 설정
Switch(config)# username admin privilege 15 password
New password : admin123
retype new password : admin123
Switch(config)# enable password
New password : admin123
retype new password : admin123
- VLAN 생성
Switch(config)# vlan database
Switch(config-vlan)# vlan 10
Switch(config-vlan)# vlan 20
Switch# show vlan
- VLAN 적용 (access)
Switch(config)# interface gi0/1
Switch(config-if-giga0/1)# switchport mode access
Switch(config-if-giga0/1)# switchport access vlan 10
- VLAN 적용 (trunk)
Switch(config)# interface gi0/1
Switch(config-if-giga0/1)# switchport mode trunk
Switch(config-if-giga0/1)# switchport trunk allowed vlan add 10
Switch(config-if-giga0/1)# switchport trunk allowed vlan add 20
- IP Address 설정
Switch(config)# interface vlan10
Switch(config-if-vlan10)# ip address 10.1.1.1/24
Switch(config-if-vlan10)# ip address 10.2.1.1/24 secondary
- 라우팅 테이블 설정
Switch(config)# ip route 0.0.0.0/0 10.1.1.254
- 배너 설정
Switch(config)# banner login ^C
!!!!!!!!!!!!!! WARNING !!!!!!!!!
배너 내용
- SNMP 설정
Switch(config)# snmp-server community ro
New password : public
retype new password : public
Switch(config)# snmp-server enable traps
Switch(config)# snmp-server host 1.1.1.1 version 2c
3. 유비쿼스 명령어 모음 2 (상위 명령어)
- session logout 설정
Switch(config)# line vty 0 7
Switch(config-line)# exec-timeout 5 0
Switch(config)# line console 0
Switch(config-line)# exec-timeout 5 0
- 허용된 IP만 접속되는 ACL 설정
Switch(config)# access-list 23 permit 1.1.1.1 0.0.0.0
Switch(config)# access-list 23 deny any
Switch(config)# ip option telnet-acl access-group 23
- ACL 설정
Switch(config)# access-list 102 deny tcpany anyeq445
Switch(config)# access-list 102 deny udpany anyeq3702
Switch(config)# access-list 102 deny ip10.4.11.246 0.0.0.0 any
Switch(config)# interface range GigabitEthernet1/1/1-1/1/12
Switch(config-if-range)# ipaccess-group 102 in
- STP 설정
Switch(config)# spanning-tree mode stp
Switch(config)# spanning-tree priority 4096
Switch(config)# spanning-tree enable
Switch(config)# interface range gi0/1-0/24
Switch(config-if-range)# spanning-tree portfast
Switch(config)# interface gi0/25
Switch(config-if-Giga0/25)# spanning-tree path-cost 20000
→ RSTP 설정시
Switch(config)# spanning-tree mode rstp
Switch(config)# spanning-tree priority 4096
Switch(config)# spanning-tree enable
Switch(config)# interface range gi0/1-0/24
Switch(config-if-range)# spanning-tree portfast
Switch(config)# interface gi0/25
Switch(config-if-Giga0/25)# spanning-tree path-cost 20000
- VRRP 설정 (이중화)
→ MASTER설정
Switch(config)# router vrrp10 vlan10
Switch(config-router)# virtual-ip10.1.1.254 backup
Switch(config-router)# circuit-failover gi0/25 60
Switch(config-router)# priority 105
Switch(config-router)# preempt-mode true
Switch(config-router)# enable
→ BACKUP설정
Switch(config)# router vrrp10 vlan10
Switch(config-router)# virtual-ip10.1.1.254 backup
Switch(config-router)# enable
- Voice VLAN 설정
Switch(config)# interface gi0/1
Switch(config-if-Giga0/1)# switchportaccess vlan100
Switch(config-if-Giga0/1)# switchportvoice vlan200
Switch(config-if-Giga0/1)# mlsqostrust dscp
- 서비스 활성화
Switch(config)# service ssh
Switch(config)#ipsshport 5000
Switch(config)# no service telnet
'네트워크 > LAB실습 및 이론' 카테고리의 다른 글
| SNMP(Simple Network Managemnet Protocol) 개념 정리 (0) | 2023.08.24 |
|---|---|
| VRRP(Virtual Router Router Protocol) 실습 (0) | 2023.08.21 |
| [CISCO] router PW-recovery (0) | 2023.08.11 |
| STP 이론&경로설정 (0) | 2023.08.08 |
| {IP, TCP, UDP} 프로토콜, 포트번호, 세그먼트 구조 (0) | 2023.03.30 |