2010年6月2日 星期三

6/3 NP -Spanning Tree

  • CISCO WS-C2960-24TC-L  
<1>mac address可放多少?

ANS:8000個

<2>Switch fabric 有多大?

ANS:具備16Gbps以上架構

<3>2960有支援802.1D 、802.1W 、 802.1S嗎?

ANS:
援IEEE 802.1d Spanning-Tree Protocol,支援備援骨幹連線與Loop-free的網路,提升容錯能力。 
支援IEEE 802.1w Rapid Spanning-Tree Protocol,支援快速備援骨幹連線與Loop-free的網路,提升容錯能力。 
支援IEEE 802.1s Multiple Spanning Tree Protocol,可簡化Spanning Tree設定,以便在備援連線上進行Layer 2 load sharing功能。 

<4>VLAN數

ANS:支援255個VLAN 
  • Switching frames according to the Destination MAC address
    而Router則是看目的IP

P.S   Switch 幾乎用在LAN,頻寬大,收到廣播封包會廣播出去;而Router用在WAN,為  
         節省網路的頻寬,會將廣播封包Drop掉。

  • Spanning Tree
Purpose:
  1. to maintain Loop-free topologies
  2. redundant
Steps:
  1. Determine the root switch
  2. Determine the root port on all other switches
  3. Determine the designated port on each LAN
  • VLAN
利用軟體在一個Switch模擬成多個IP子網路

6/2 SQL2008 隨堂練習

隨堂練習--P382

先在sampe按右鍵屬性 加上建立資料表及檢視表的權限







之後再去emp作存取權限




測試:

------OK
select * from emp
go

------OK
insert emp(empno,ename,deptno)
values(999,'HSU',20)
go

------denied
update emp
set sal=5000
where empno='999'
go

------denied
delete emp
where empno='999'
go