1. 比賽跑時對教練說:「我怕他跑太慢跟不上!」
2. 吃飯時看到碗裡有飯卻沒人動筷的位子,會哭喊:「安心上路!」
3. 進別人家門前,先吼幾句:「搶糧!搶餉!搶娘們!」
4. 有人吵架,會插到他們中間冷靜的說:「大哥是對的!」
5. 在街上看到丟閃光彈的情侶,會衝上去推開那女的:
「外人亂我兄弟者,視投名狀,必殺之!」
6.踩死小強前,不帶任何感情的對它說:「記住我這張臉,下輩子投胎找我報仇。」
7.腳抬起來發現小強還沒死,驚喊:「這麼能打,我帶你去見大哥。」
8.炫耀女友時:「漂亮吧,死人身上撿的。」
9.老師徵求比賽人選自願時,亂喊:「去的有安家費 死的兩份 活下的 三份。」
10.學生:兵不厭詐,這是戰爭!
老師:人無信就是畜牲!
11.要去當兵的前一天:
男的對他女朋友說:如果我活著回來..(走近)娶你
12.跟同學說:
"如果我微積分沒過,跟我媽說我是條漢子"
§大考§
學生A:吃完,陪我去幹玩命的活!
學生A:我們一起作弊去,死也要拖個墊背的!
學生B:你這是在拿學分在賭!
學生A:考試本身就是賭!
學生A:B班的那班畜牲,在後面一動也不動的,眼睜睜的看著我四個月的學分,就這樣,沒了。
學生B:他說,從考場裡爬出來,他就已經死了...
學生A:我這ㄧ生如履薄冰,你說我能考到及格嗎?
教授:當人!我們要當最多的!
學生A:你不會當我的,你從大一就開始教我的,你不會當我的,我不准妳當我!
助教:我答應他們要讓他們活著!
教授:這是大考!
助教:我ㄧ直以為考試不唸書才會當人,現在缺學費也要當人。
上網罵教授
路人A:罵的好,她當你兩科仇好報,心中恨難消!
路人B:安心上路!!!
路人C:為什麼不重考,重考過了,有分數,有了分數就能拿學分!
路人D:教授是對的!
發成績單
學生:你要怎麼跟我娘說?
教授:眼睛閉上,我會很快。
學生:別告訴我娘~!
教授:記住我這張臉,下輩子投胎找我報仇。
助教:教授!你不用當學生了!學費已經收齊了!
教授:每年的今天,我都會找你泡茶,告訴你我這一年又當了哪些人....
2007年6月16日 星期六
cisco IOS 基本觀念&指令
---++CLI 的四種操作模式
1.User EXEC Mode (使用者執行模式)- 只能觀看Router 的基本狀態與資訊, 無法對Router 的設定做任何修改。
2.Privileged EXEC Mode (特權執行模式)- 可以使用所有的指令,進入特權執行模式通常需要輸入密碼。
3.Global Configuration Mode (整體組態模式)-對Router做整體的設定。
4.Interface Configuration Mode (介面組態模式)-可針對某一張介面卡做設定。
-------
switch1> → user mode
switch1> enable → 進到 privileged mode
switch1# configure terminal → 進入 global
switch1(config)# hostname lab-a → 設定switch的hostname
lab-a(config)# enable secret → 設定進入privileged mode的密碼(加密)
lab-a(config)# enable password cisco → 設定進入privileged mode的密碼(無加密),同時設定有加密和無加密時,會以有加密的為主
-------退出
switch1# exit
-------從各種配置模式退到特權模式
switch1# end
Ctrl + z
Ctrl + c
-------強制停止執行
‧Ctrl+Shift+6 , x
-------cisco 基本設定
1.在switch上設定HN:
switch(config)# hostname hostname
switch(config-if)# description [描述]
4.設定interface的速度:
switch(config-if)# speed {101001000auto}
5 設定全雙工/半雙工/auto:
switch(config)# duplex module/number {fullhalf}
6 Show(查看的指令)
show version :System hardware and software status,開機時間,有何種類型的port等等
show boot :看開機路徑、設定
show protocols :Active network routing protocols
show ip route :IP routing table
# show interfaces status module 1
# show ip interfaces brief
# show interfaces status
# sh spanning-tree root
# sh cdp neighbors
# sh cdp neighbors detail
# sh run include tac
!-----秀出running config裡 , 包含tac字元的每一行指令
7.1 如何disable interface:
switch(config-if)# shutdown
!關閉
ex:disable vlan1
switch(config)# interface vlan 1
switch(config-if)# shutdown
7.2 如何enable interface:
switch(config-if)# no shutdown
!開啟
8 switch(config)# no ip domain-lookup :
!--disable IP Domain Name System hostname translation 關閉動態網域名稱解析
9 !--將設定存檔
switch# write memory
switch# copy running-config startup-config
10
switch(config-line)# exec-timeout 0 0
!---禁止因為一段時間沒有輸入而跳出
1.User EXEC Mode (使用者執行模式)- 只能觀看Router 的基本狀態與資訊, 無法對Router 的設定做任何修改。
2.Privileged EXEC Mode (特權執行模式)- 可以使用所有的指令,進入特權執行模式通常需要輸入密碼。
3.Global Configuration Mode (整體組態模式)-對Router做整體的設定。
4.Interface Configuration Mode (介面組態模式)-可針對某一張介面卡做設定。
-------
switch1> → user mode
switch1> enable → 進到 privileged mode
switch1# configure terminal → 進入 global
switch1(config)# hostname lab-a → 設定switch的hostname
lab-a(config)# enable secret → 設定進入privileged mode的密碼(加密)
lab-a(config)# enable password cisco → 設定進入privileged mode的密碼(無加密),同時設定有加密和無加密時,會以有加密的為主
-------退出
switch1# exit
-------從各種配置模式退到特權模式
switch1# end
Ctrl + z
Ctrl + c
-------強制停止執行
‧Ctrl+Shift+6 , x
-------cisco 基本設定
1.在switch上設定HN:
switch(config)# hostname hostname
2.在switch上啟用和瀏覽CDP訊息:
switch(config-if)# cdp enable
switch(config-if)# no cdp enable
switch(config-if)# description [描述]
4.設定interface的速度:
switch(config-if)# speed {101001000auto}
5 設定全雙工/半雙工/auto:
switch(config)# duplex module/number {fullhalf}
6 Show(查看的指令)
show version :System hardware and software status,開機時間,有何種類型的port等等
show boot :看開機路徑、設定
show protocols :Active network routing protocols
show ip route :IP routing table
# show interfaces status module 1
# show ip interfaces brief
# show interfaces status
# sh spanning-tree root
# sh cdp neighbors
# sh cdp neighbors detail
# sh run include tac
!-----秀出running config裡 , 包含tac字元的每一行指令
7.1 如何disable interface:
switch(config-if)# shutdown
!關閉
ex:disable vlan1
switch(config)# interface vlan 1
switch(config-if)# shutdown
7.2 如何enable interface:
switch(config-if)# no shutdown
!開啟
8 switch(config)# no ip domain-lookup :
!--disable IP Domain Name System hostname translation 關閉動態網域名稱解析
9 !--將設定存檔
switch# write memory
switch# copy running-config startup-config
10
switch(config-line)# exec-timeout 0 0
!---禁止因為一段時間沒有輸入而跳出
訂閱:
文章 (Atom)