路由器配置:算法
Interface f0/0.100ide
//由於路由器只有一個以太網口,因此要配置子接口來鏈接不一樣的vlanspa
encapsulation dot1Q 100 <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />xml
//dot1q 後面對應的數字是對應交換機的vlan接口
Ip address 192.168.0.1 255.255.255.0ip
路由器配置:路由
Interface f0/0.200it
encapsulation dot1Q 200io
Ip address 192.168.0.1 255.255.255.0ast
交換機配置
Interface f0/1
switchport mode trunk
interface f0/2
switchport access vlan100
switchport mode access
no ip address
spanning-tree portfast
//把一個port設置了portfast,就是讓那個port再也不使用STP的算法。
在STP中,port有5個狀態:disable、blocking、listening、learning、forwarding。
只有forwarding狀態,port才能發送用戶數據。若是一個port一開始是沒有接pc,一旦pc接上,就會經歷blocking->listening->learing->forwarding,每一個狀態的變化要經歷一段時間,這樣總共會有3個階段時間,缺省的配置要50秒鐘。這樣從pc接上網線,到能發送用戶數據,須要等50秒的時間,但若是設置了portfast,那就不須要等待這50秒了。
注意:這條命令通常在接入層使用,若是你下連的是一臺PC機配置這條命令回解決DHCP的得到地址時間過長問題。若是你鏈接的是一臺交換機,那麼必定不能使用這條命令,不然會形成環路。
interface f0/3
switchport access vlan100
switchport mode access
no ip address
ok!這個技術其實很簡單,使用中的話咱們根據企業不一樣的需求能夠增長項目,好比DHCP、ACL等等。