이 작업은 SEFOS에서 정적 경로 항목을 구성하고 네트워크 전체에서 트래픽이 연결 가능한지 확인합니다.
이 작업에 대한 토폴로지는 Routing Feature Topology를 참조하십시오.
Configure Initial Settings을 참조하십시오.
SEFOS-1# configure terminal SEFOS-1(config)# set gvrp disable SEFOS-1(config)# set gmrp disable SEFOS-1(config)# end SEFOS-1# show vlan device info Vlan device configurations -------------------------- Vlan Status : Enabled Vlan Oper status : Enabled Gvrp status : Disabled Gmrp status : Disabled Gvrp Oper status : Disabled Gmrp Oper status : Disabled
set gvrp disable 및 set gmrp disable 명령이 이러한 프로토콜을 사용 안함으로 설정합니다. show vlan device info 명령은 VLAN 구성 정보를 표시합니다.
Routing Feature Topology를 참조하십시오.
SEFOS-1# configure terminal SEFOS-1(config)# interface vlan 1 SEFOS-1(config-if)# no ip address SEFOS-1(config-if)# exit SEFOS-1(config)# vlan 10 SEFOS-1(config-vlan)# exit SEFOS-1(config)# interface range xl-ethernet 0/25-26 SEFOS-1(config-if-range)# switchport access vlan 10 SEFOS-1(config-if-range)# no shutdown SEFOS-1(config-if-range)# exit SEFOS-1(config)# interface vlan 10 SEFOS-1(config-if)# shut SEFOS-1(config-if)# ip address 10.0.0.201 255.255.255.0 SEFOS-1(config-if)# no shutdown SEFOS-1(config-if)# end
VLAN 1의 기본 IP 주소는 10.0.0.1이고, VLAN 10의 IP 주소는 10.0.0.201입니다. 따라서 먼저 VLAN 1의 IP 주소를 제거해야 VLAN 10에 대한 IP 주소를 추가할 수 있습니다.
SEFOS-1# ping 10.0.0.169
SEFOS-1# ping 10.0.0.152
# ping 10.0.201 10.0.201 is alive # ping 10.0.0.152 10.0.0.152 is alive #
Routing Feature Topology를 참조하십시오.
SEFOS-2# configure terminal SEFOS-2(config)# interface vlan 1 SEFOS-2(config-if)# no ip address SEFOS-2(config-if)# exit SEFOS-2(config)# vlan 40 SEFOS-2(config-vlan)# exit SEFOS-2(config)# interface range xl-ethernet 0/25-26 SEFOS-2(config-if-range)# shutdown SEFOS-2(config-if-range)# switchport access vlan 40 SEFOS-2(config-if-range)# no shutdown SEFOS-2(config-if-range)# exit SEFOS-2(config)# interface vlan 40 SEFOS-2(config-if)# shutdown SEFOS-2(config-if)# ip address 40.0.0.200 255.255.255.0 SEFOS-2(config-if)# no shutdown SEFOS-2(config-if)# end SEFOS-2#
SEFOS-2# ping 40.0.0.110 SEFOS-2# ping 40.0.0.118
두 스위치 모두에서 1 - 2 포트를 사용합니다.
SEFOS-1# configure terminal SEFOS-1(config)# interface range xl-ethernet 0/1-2 SEFOS-1(config-if-range)# switchport access vlan 20 SEFOS-1(config-if-range)# no shutdown SEFOS-1(config-if-range)# exit SEFOS-1(config)# interface vlan 20 SEFOS-1(config-if)# shutdown SEFOS-1(config-if)# ip address 20.0.0.201 255.255.255.0 SEFOS-1(config-if)# no shutdown SEFOS-1(config-if)# end SEFOS-1#
SEFOS-2# configure terminal SEFOS-2(config)# interface range xl-ethernet 0/1-2 SEFOS-2(config-if-range)# switchport access vlan 20 SEFOS-2(config-if-range)# no shutdown SEFOS-2(config-if-range)# exit SEFOS-2(config)# interface vlan 20 SEFOS-2(config-if)# shutdown SEFOS-2(config-if)# ip address 20.0.0.200 255.255.255.0 SEFOS-2(config-if)# no shutdown SEFOS-2(config-if)# end SEFOS-2# ping 20.0.0.201
이제 이 구성을 기반으로 다른 라우터를 구성할 수 있습니다.
SEFOS-1# write startup-config Building configuration _ [OK]
SEFOS-2# write startup-config Building configuration _ [OK]
재부트하면 스위치가 기본 구성을 사용하여 시작됩니다.
SEFOS-1# show ip route Codes: C - connected, S - static, R - rip, B - bgp, O - ospf C 10.0.0.0/24 is directly connected, vlan10 C 20.0.0.0/24 is directly connected, vlan20 SEFOS-1#
SEFOS-2# show ip route Codes: C - connected, S - static, R - rip, B - bgp, O - ospf C 20.0.0.0/24 is directly connected, vlan20 C 40.0.0.0/24 is directly connected, vlan40 SEFOS-2#
SEFOS-1에서 호스트 B로의 알려진 경로가 없는 경우 호스트 A에서 호스트 B로의 ping이 실패합니다.
SEFOS-1# configure terminal SEFOS-1(config)# ip route 40.0.0.0 255.255.255.0 20.0.0.200 SEFOS-1(config)# end
SEFOS-2# configure terminal SEFOS-2(config)# ip route 10.0.0.0 255.255.255.0 20.0.0.201 SEFOS-2(config)# end
SEFOS-1# show ip route Codes: C - connected, S - static, R - rip, B - bgp, O - ospf C 10.0.0.0/24 is directly connected, vlan10 C 20.0.0.0/24 is directly connected, vlan20 S 40.0.0.0/24 [-1] via 20.0.0.200
SEFOS-2# show ip route Codes: C - connected, S - static, R - rip, B - bgp, O - ospf S 10.0.0.0/24 [-1] via 20.0.0.201 C 20.0.0.0/24 is directly connected, vlan20 C 40.0.0.0/24 is directly connected, vlan40