一些Cisco 路由器命令配置
·技術原理
·單臂路由:是為實現VLAN間通信的三層網絡設備路由器,它只需要一個以太接口,通過創建子接口可以承擔所有VLAN的網關,而在不同的VLAN間轉發數據。
·實驗步驟
·新建packet tracer拓撲圖(如圖)
·當交換機設置成兩個VLAN時,邏輯上已經成為兩個網絡,廣播被隔離了。兩個VLAN的網絡要通信,必須通過路由器,如果接入路由器的一個物理端口,則必須有兩個子接口分別與兩個vlan對應,同時還要求與路由器相聯的交換機的端口f0/1要設置為trunk,因為這個口要通過兩個vlan的數據包。
·檢查設置情況,應該能正確的看到vlan和trunk信息。
·計算機的網關分別指向路由器的子接口。
·配置子接口,開啟路由器物理接口。
·默認封裝為dot1q協議;
·配置路由器子接口ip地址。
CLI
交換機
Switch(config)#vlan 2
Switch(config-vlan)#exit
Switch(config)#vlan 3
Switch(config-vlan)#exit
Switch(config)#int f0/2
Switch(config-if)#switchport access vlan 2Switch(config-if)#int f0/3
Switch(config-if)#switchport access vlan 3Switch(config-if)#switchport mode trunk
路由器:
Router(config)#int f0/0
Router(config-if)#no sh
Router(config-if)#int f0/0.1
Router(config-subif)#encapsulation dot1Q 2Router(config-subif)#ip add 192.168.1.1 255.255.255.0
Router(config-subif)#no sh
Router(config-subif)#exit
Router(config)#int f0/0.2
Router(config-subif)#encapsulation dot1Q 3
Router(config-subif)#ip add 192.168.2.1 255.255.255.0
Router(config-subif)#no shutdown
Router(config-subif)#exit
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.1.0/24 is directly connected, FastEthernet0/0.1
C 192.168.2.0/24 is directly connected, FastEthernet0/0.2
一些Cisco 路由器命令配置